@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}
/* green brown palette
- #467411 - green
- #76a30c - light green
- #cff69b - smoke green
- #9d8b77 - smoke brown
- #582e22 - brown
*/

/*
red
- 094D1C - Traditional Forest Green
- E8E8E8 - smoke
- 6ACF65 - mantis
- 3DEC55 - ufo green
- 00FF00 - electric green

- 002C2B - sidebar (dark green)
- 00953a - 
- 9ED54C - sidebar (sbH1)
- 11644D - btnnav
red
- 990100 -
- B90504 - top
*/

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;
  /* margin-top: 25px; */
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  background-color: #fff;

  overscroll-behavior: contain;
}

#wrapper {
  /*margin: 25px auto 0; */
  /* [disabled]clear: both; */
  clear: both;
  height: auto;

  width: 1220px;
  max-width: 98vw;
 
  margin: 0.3rem auto;
  padding: 0;
  text-align: left;
  /*position: relative; try transfer to gridcontainer*/
  background-color: #fff;
}

/*grid start*/
:root {
  --main-radius: 5px;
  --main-padding: 5px;
}

.hr1 {
  margin: 5px 0;
  border-top: 1px thin #CCC;
}

#gridContainer {
  position: relative;

  display: grid;
  min-height: 95vh;
  grid-template-columns: 0.5fr 1fr 1fr 1fr;
  grid-template-rows: minmax(auto, 7vh) minmax(auto, 200px) minmax(0, 80px) minmax(64vh, 74vh) minmax(1px, auto) auto;
  grid-template-areas:
    "nav nav nav nav"
    "hdr hdr hdr hdr"
    "ads ads ads ads"
    "sidebar mainContent mainContent mainContent"
    "clients clients clients clients"
    "foot foot foot foot";
  grid-gap: 0.2rem;
  color: #111;
  text-align: center;
}

#gridMainContentNavDiv, #gridMainContentNav {
  display: none;
}

#gridNav {
  grid-area: nav;
  /* causing error
  color: #004d40;
  background: #fff;
  padding-top: var(--main-padding);
  justify-content: space-between;
  align-items: end;
  
  font-size: 1rem;
  margin-bottom: 3em;
 */
}
#gridNav nav {
  width: auto;
  height: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  margin-bottom: 0;
  margin-top: 1em;
}

#gridNav nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#gridNav nav ul li {
  float: left;
  padding-bottom: 0.3em;
}
#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;
  /* #1a512e */
  background-color: #06491d;
  border: 1.5px solid #519548;
  border-radius: 2px;
}
.header-login-a:hover {
  text-decoration: none;
  /*
  background-color: #1a512e;
  border: 1.5px solid #095540;
  */
}

.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: #FF5733;
  border: 1.5px solid #FB6900;
  border-radius: 2px;
}

.header-signup-a:hover {
  text-decoration: none;
  /* 
  background-color: #FB6900;
  border: 1.5px solid #FF8A00;
  */
}


#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 0.6em;
}

#gridNav nav .menu-member {
  display: flex;
  margin: 0;
}
#gridNav nav .menu-member li {
  margin: 0 0.6em;
}

#mainNav nav .push-right {
  margin-left: auto;
}
/*end mainNav*/

/*slider*/
#gridHdr {
  grid-area: hdr;	
  background-color: transparent;
  margin-top: 1rem;
  /*margin-bottom: 0.3rem;*/
  margin-bottom: 0;
  border-radius: 2px;
  overflow: -webkit-sticky; /*for safari*/
  overflow: hidden;
  
  position: relative;
}
/*var slideImg classList*/
#gridHdr img.displaySlide {
  animation-name: imgFadeIn;
  animation-duration: 3.5s;
}
@keyframes imgFadeIn {
   from {opacity: .2}
   to {opacity: 1}
}
#gridHdr .btnPrevSlide {
	position: absolute;
	top: 50%;
	transform: translateY(-50%); /*funtion to button height*/
	left: 0.2em;
	
	padding: 0.9px 10px 1.4px 9px;
	border-radius: 50%;
	background-color: rgba(255,255,255, 0.1);
	font-size: 1.3em;
	color: rgba(211,211,211, 0.4);
	border: 1px solid rgba(211,211,211, 0.1);
	border-width: 2px;
	cursor: pointer;
}
#gridHdr .btnPrevSlide:hover {
	background-color: rgba(6,73,34, 1);
    border: 1px solid rgba(211,211,211, 1);
	color: #FFF;
	border-width: 4px;
}	
#gridHdr .btnNextSlide {
	
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.2em;

	padding: 0.9px 10px 1.4px;
	border-radius: 50%;
	background-color: rgba(255,255,255, 0.1);
	font-size: 1.3em;
	color: rgba(211,211,211, 0.4);
	border: 1px solid rgba(211,211,211, 0.1);
	border-width: 2px;
	cursor: pointer;
}
#gridHdr .btnNextSlide:hover {
	background-color: rgba(6,73,34, 1);
    border: 1px solid rgba(211,211,211, 1);
	color: #FFF;
	border-width: 4px;
}

/*ads start*/
#gridHdrAds {
  grid-area: ads;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  background-color: transparent;
  padding: 4px 1px 4px 1px;
  margin-top: 4px;
  margin-bottom: 0.3rem;
  
  border-radius: 2px;
  overflow: hidden; 
  overflow-x: auto; 
  overflow: -webkit-sticky;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex: 1;
  gap: 0 2.5em;
}

#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 #D3D3D3;
}

#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: 70px; /*100%*/
  margin-top: 0;

  line-height: 1.2;
  cursor: pointer;
}

/*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: rgb(6, 73, 29);
}
/*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 {
  /*background: #fef9f0;*/
  grid-area: sidebar;
  max-height: 75vh !important;
  min-width: 5vw;
  font-size: 1.2em;
  font-weight: normal;
  letter-spacing: 2px;
  background: #00953a;
  
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
  overflow: scroll;
}

#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;
}

/*sidebar desktop search*/
#gridSidebar #divItemGrpSearch {
  padding: 15px 0 5px;
  border: none;
  border-bottom: solid thin #fff;
  width: 90%;
  align-items:left;
}

#gridSidebar #divItemGrpSearch  #txtItemGrpSearch {
  display:block !important;	
  width: 70%; 
  border-color: #c5cfc6;
  border-style: solid;
  border-width: thin;

  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;

  font-size: 1em;
  height: 1.58em;
  text-align: left;
  padding-left: 5px;
  
  outline:none;
}
#gridSidebar #divItemGrpSearch  #btnItemGrpSearch {
  display:block !important;
  width: 20%; 	
  background-color: #fff;
  color: green;
  border-style: solid;
  border-width: thin;
  border-color: #c5cfc6;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;

  font-size: 1em;
  height: auto;
  margin-top: 0;

  text-align: center;
  
}
/*end sidebar desktop search*/

#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;
}

#gridMainContent {
  grid-area: mainContent;
  border-top: 0 solid #C4CEB7;	
  background: #fff;
  padding-top: 3px;
  padding-bottom: var(--main-padding);
  padding-left: 5px;
  padding-right: 5px;
  
  justify-content: space-evenly;

  /*scroll*/
  overflow-y: auto;
  white-space: nowrap;
}

#gridMainContent::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

#gridFoot {	
  grid-area: foot;
  clear: both;
  border-top: 0.3rem solid #C4CEB2;
  background-color: #655643;
  /*
  border-top: 0.3rem solid #72a433;
  background-color: #333;
  */
  padding: 0.3rem;
  padding-bottom: 3rem;
  
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

#gridFoot > .footSubDiv { 
  min-height: 3rem;
  height:auto;
  width: auto;
  padding: 0.3rem;
  
  font-size: 1rem;
  font-weight: normal;
  text-align: center;

  justify-content: flex-start;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#gridFoot > .footSubDiv > .hdrH2 {
  font-family: Arial, sans-serif;
  color: #FFF;
  margin-bottom: 10px;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
}

.multiMedia {
  width: 25px;
  height: 25px;
  max-width: 25px;
  max-height: 25px;
  border-radius: 50%;
  margin-right:8px;
  background-color: #FFF;
  background-repeat: no-repeat;
  cursor: pointer;
}

#gridFoot > .footSubDiv > #gridFootBanks {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex: 1;
  flex-wrap: wrap;

  gap: 6px 6px;
  justify-content: center;
  padding-bottom: 4px;
  height: auto;
  width: auto;
  max-width: 125px;
  margin-top: 1em;

  overflow: hidden; 
  overflow-y: auto; 
  overflow: -webkit-sticky;
}
#gridFootBanks::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}

#gridFoot > .footSubDiv > #gridFootBanks > .banksSubDiv {
  min-height: 31px;
  max-height: 31px;
  min-width: 51px;
  max-width: 51px;
  border: 1px solid #D3D3D3;
  padding: 2px;
  background-color: #fff;
  
}
#gridFoot > .footSubDiv > #gridFootBanks > .banksSubDiv > .banksImg {
  min-height: 30px;
  max-height: 30px;
  min-width: 40px;
  max-width: 50px;  
}

#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-size: 1em;
  text-transform: capitalize;
  color: #F6F7BD;
  /*color: #fff;*/
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}
#gridFoot > .footSubDiv > ul li a:hover{
  color: #FF8A00;
  padding-left: 0.5em;
}
#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-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: #00953a;
	/* 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: #00953a;
	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: #00953a;
}

[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;
}

.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 {	
  /*background-color: #04aa6d; */
  color: white;
  padding: 2px 10px 2px 0;
  position: relative;
  display: inline-block;
  /*border: 1px solid #ddd;*/
  width:80%;
  margin-right: 5px;
}

.cartQty p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;	
  width:6em;
  /*background-color: #04aa6d;*/
  color: white;
  cursor: pointer;
  padding-left:0;
  /*
  font-size: 1em;
  text-align: center;
  margin: 0 5px;
  */
}

.cartQty:hover {
  background: transparent;
}

.cartQty .cartBadge {
  position: absolute;
  top: -10px;
  right: -14px;

  text-align:center;
  width: 25px;
  height: 20px;
  margin: 0 auto;
  border:solid 1px #f5f5f5;
  border-radius: 20px;
   
  background-color: #F63700;
  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 {
  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;
  
}

#gridMainContent > .mainSubDiv:hover {
	/* neon-green #49fb35 */
	border: 1px solid #00C176;
}

#gridMainContent > .mainSubDiv > .smallImg {
  float: right;
  height: 95%;
  width: 35%;
  max-width: 150px;
  /*this will avoid stretching image*/
  object-fit: contain;
   
  background-repeat: no-repeat; 
  cursor: pointer;
  /*border-radius: var(--main-radius);*/
}

#gridMainContent > .mainSubDiv > .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;
}

#gridMainContent > .mainSubDiv > .mainSubDivDetl {
  /*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; 
}

#gridMainContent > .mainSubDiv > .mainSubDivDetl > #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;
}
#gridMainContent > .mainSubDiv > .mainSubDivDetl > #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;
  
}

#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:100%;
  border: 1px solid #EAFDE6;
  background-color: #519548;
  color: #fff; 
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  padding: 0.3em 0;
  margin-top: 0.3rem;
  clear: both;
}

#gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgQtyOrdDiv {
  width:100%;
  height:auto;
  display: inline-block;
  padding:0;
  margin-top: 0.3rem;
  display:flex;
  justify-content: center;
}

#gridMainContent > .mainSubDiv > .mainSubDivDetl > #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;
}
#gridMainContent > .mainSubDiv > .mainSubDivDetl > #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;
}
#gridMainContent > .mainSubDiv > .mainSubDivDetl > #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;	
}

/*price table*/
#tblItemPriceTable {
 width: 98vw;	
}

/*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 > #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 #EAFDE6;
  background-color: #519548;
  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: 51.3px;
  object-fit: contain;
  border-radius: var(--main-radius);
  
  margin: 1px 5px 0 10px;
  float: left;
}

.compName {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 1.2rem; 
	font-weight:700;
	line-height: 8px;
	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: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* 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: #fff;
}
.fullNav .closebtnLeftFullNav {
  position: absolute;
  top: 15px;
  left: 32px;
  font-size: 40px;
  color: #fff;
}

#atcAlert-content {
  background-color: transparent;
}

#atcAlertDetl {
  font-size: 0.9em;
  width: 12em;
  height: 12em;
  background-color: #1a512e; 
  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: 1;
  top: 0;
  right: 0;
  background-color: #818181;
  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 a:hover {
  color: #e8e8e8;
}

.sidenavLeft .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #fff;
}	

/**/

/*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*/


/*smart tv 2ndfloor 1920x1080 (desktop) 1dpr(samsung) 1.5dpr(devant) */
/*and also to msi laptop*/
/* 1920px or less but not lessthan 400px*/
/*@media (max-width: 1920px) and (orientation: landscape) { */

/* 2000px or less but not <= 1000px it will fall to mobile*/
@media (max-width: 2000px) {	
	#downloadApp::after{
		content: " - 1";	
	}
  
	body {
    	background: #F1F1F1;
    }
    
    #gridContainer {
	  position: relative;
	  display: grid;
	  min-height: 95vh;
	  grid-template-columns: 0.5fr 1fr 1fr 1fr;
	  grid-template-rows: minmax(auto, 7vh) minmax(auto, 200px) minmax(0, 80px) minmax(64vh, 74vh) minmax(1px, auto) auto;
	  grid-template-areas:
	    "nav nav nav nav"
	    "hdr hdr hdr hdr"
	    "ads ads ads ads"
	    "sidebar mainContent mainContent mainContent"
	    "clients clients clients clients"
	    "foot foot foot foot";
	  grid-gap: 0.2rem;
	  color: #111;
	  text-align: center;
	}
	
	#gridMainContentNavDiv, #gridMainContentNav {
	  display: none;
	}
	#gridHdrMobile {
	  display:none;
	}
	
	#txtItemGrpSearchNav {
	  display: none;
	}
	#btnItemGrpSearchNav {
	  display: none;
	}
	
	#gridNav {
	  grid-area: nav;
	  padding-right: 12px;
	}
    #gridHdr {
      grid-area: hdr;
    }
    #gridHdrAds {
    grid-area: ads;
    border-top: 1px solid #D3D3D3;
	  border-bottom: 1px solid #D3D3D3;
	  background-color: transparent;
	  padding-left: 1.5em;
	  margin-top: 4px;
	  margin-bottom: 0.3rem;
	  
	  border-radius: 2px;
	  overflow: hidden; 
	  overflow-x: auto; 
	  overflow: -webkit-sticky;
	
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-direction: row;
	  flex: 1;
	  gap: 0 2.5em;
    }
    #gridClients {
      grid-area: clients;
    }
    #gridSidebar {
    	display:block;
      grid-area: sidebar;
    }
    #gridMainContent {
      grid-area: mainContent;
    }
    #gridMainContent > .mainSubDiv {
	  height: 80%;
	  max-height:150px;
	  width: 32%; 
	}
	#gridMainContent > .mainSubDiv > .smallImg {
	  height: 95%;
	  width: 35%;
	  max-width: 150px;
	}
	#gridMainContent > .mainSubDiv > .imgitemtagdiv {
	  width: auto;
	  min-width: 12%;
	  max-width: 20%;
	}
	#gridMainContent > .mainSubDiv > .mainSubDivDetl {
	  font-size: 0.9rem;
	  height: 95%;
	  width: 60%;
	  max-width: 350px;
	}
    #gridFoot {	
	  grid-area: foot;
	  clear: both;
	  border-top: 0.3rem solid #C4CEB2;
	  background-color: #655643;
	  
	  padding: 0.3rem;
	  padding-bottom: 3rem;
	  
	  margin-top: 0.6rem;
	  display: flex;
	  justify-content: space-evenly;
	  flex-direction: row;
    }
    #gridFoot > .footSubDiv { 
	  height:auto;
	  min-height: 3rem;
	  min-width: 22%;
	  max-width: 24%;
	  padding: 0.3rem;
	  
	  font-size: 1rem;
	  font-weight: normal;
	  text-align: center;
	  
	  justify-content: flex-start;
	  border-radius: var(--main-radius);
	  padding-top: var(--main-padding);
	}
   
  	#gridHdrAds .adsSubDiv {
     margin-right: 4px;
    }
    #gridHdrAds:last-child {
     margin-right: 0;
    }
    
    #gridSidebar #divItemGrpSearch  #txtItemGrpSearch {
		max-height: 25px;
	}
	#gridSidebar #divItemGrpSearch  #btnItemGrpSearch {
	    max-height: 27px;
	}
	
	.sidenavLeft #divReqSample {
	  width: 60vw;	
    }
}

/* 1000px or less but not <= 550px it will fall to mobile*/
@media screen and (max-width: 1000px) {	
	#downloadApp::after{
		content: " - 2";	
	}
	
	#gridHdrAds {
	    justify-content: flex-start;
	    align-items: center;
	    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;
	}
	
	#gridMainContent > .mainSubDiv {
      float: left;
      height: 8.5rem;
      width: 47%;
      border-radius: var(--main-radius);
      margin-left: 5px;
      margin-bottom: 5px;
      
      justify-content: space-evenly;
      align-items: center;
    }
}	


/* 550px width or less (mobile) */
@media screen and (max-width: 550px) {
  #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;
   }

 :root {
   --main-radius: 5px;
   --main-padding: 5px;
  }
  
  /*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, 350px) minmax(0, 80px) 2.5rem minmax(35rem, auto) minmax(1px, auto) auto;
    grid-template-areas:
      "nav"
      "hdrmobile"
      "hdr"
      "ads"
      "maincontentnav"
      "maincontent"
      "clients"
      "foot";
    grid-gap: 0.1em;
    font-weight: normal;
    font-size: 1rem;
  }
  
  #gridSidebar {
    display: none;  
  }

  #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;
  }
  
  #gridNav nav .menu-main li {
    margin: 0 1px;
  }
  
  #gridNav nav .menu-main li a {
    font-size: 1em;
    padding: 1px;
  }
  
  #gridNav nav .menu-member li {
    margin: 0 1px;
  }
 #gridNav nav .menu-member li a {
    font-size: 0.8em;
    padding: 1px;
  }
  
  #gridHdr .btnPrevSlide {
	background-color: transparent;
	border: transparent;
  }
  #gridHdr .btnNextSlide {
	background-color: transparent;
	border: transparent;
  }
  
  /*ads start*/
  #gridHdrAds {
    grid-area: ads;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    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: none;
    
    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;
  }

  #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: #058240;
    font-size: 1em;
    font-weight: normal;
    text-align: center;
    padding: 0.19em 1em;
    margin: 0 2px;
    text-transform:capitalize;
    
    border: 1px solid #fff;
    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: 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*/

	.menuIconBar1, .menuIconBar2, .menuIconBar3 {
	  width: 17px;
	  height: 3px;
	  background-color: #fff;
	  margin: 3px 0;
	  transition: 0.4s;
	}
	
  /*end menu icon*/
  
  #gridMainContentNav {
    width: auto;
    height: auto;
    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: auto auto 5px 5px;
    
    display: flex;
    justify-content: center;
  }
  
  #gridHdrMobile > .push-right {
    border: none;
    width: auto;
    margin: auto 5px auto 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");
  }

  #gridMainContent {
    grid-area: maincontent;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    margin: 3px 0 var(--main-padding) 0;
    
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background-color: rgba(241, 241, 241, 0.9);
  }

  #gridMainContent > .mainSubDiv {
    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;
  }
  #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; 
  }
  #gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgUPrice , #btnATCAddToCart , #imgQtyOrdDiv{
  margin-top: 2px;
  font-size: 1em;
  }
  #gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgQtyOrdDiv > #imgQtyOrd , #imgQtyOrdBtnMinus , #imgQtyOrdBtnPlus{
    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*/
  

  #gridFoot {
    grid-area: foot;
    margin-top: 5px;
  	padding-left: 0;
  	padding-right: 0;
  	background-color: #06491d;

    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%;
    padding: 0.5em;
    
    font-size: 1rem;
    font-weight: normal;
    
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
  }
 
  #gridFoot > .footSubDiv > .hdrH2 {
    margin-bottom: 0.8rem;
    font-size: 0.8em;
  }
 
  #gridFoot > .footSubDiv > ul{
    margin-top: 0.3rem;
  }
  
  #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;
  }

  .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;
  }

}