@font-face {
    font-family: "coming-soon";
    src: url("https://rustybits.com.au/fonts/ComingSoon-Regular.ttf?#iefix") format("truetype");
}
@media print {    
    .no-print, .no-print * {
        display: none;
    }
}
@keyframes borderBlink {
    50% {
        border-color: #fff ;
    }
}
/*****************************  GENERAL ELEMENT STYLES ******************************/
	/* Official colours:
	Blues(Buttons = steelblue (#4682B4), form background = #E6FAFF, hyperlinks #3362A3)
	Rust(#704c4c) Greys(#999, #666, #BABABA)
	Yellow background(#ffffe6)
	Orange links (#ffdcb9)
	Red buttons (#9a2929) shadow (#e46d6d)
	Green buttons (#4CAF50) shadow (#6fe074)*/

html {
    font-size: 16px;
}
body {
	-webkit-user-select: none;/* Chrome all / Safari all */
	-moz-user-select: none;   /* Firefox all */
	-ms-user-select: none;    /* IE 10+ */
	-o-user-select: none;
	user-select: none;
  	margin: 0;
  	padding: 0;
    background-color: #fff;
    overflow: scroll;
    overflow-x: hidden;
}
body img {
  	-webkit-user-drag: none;
  	-khtml-user-drag: none;
  	-moz-user-drag: none;
  	-o-user-drag: none;
}
.pageCont {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
  	display: flex;
  	min-height: 100vh;
  	padding-bottom: 21px;
  	background-color: #fff6d8;
}
.mainContentSection {
    display: inline-block;
    vertical-align: top;
  	width:100%;
  	padding: 20px 10px;
  	text-align: center;
  	overflow: auto;
}
.errorMessage {
    display: block;
    position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-family: sans-serif;  	
}
.alertFlag {
    display: inline-block;
    width: fit-content;
    margin-left: 8px;
    padding: 1px 4px;
    background-color: #d05a5a;
    border-radius: 10px;
    font-family: "arial";
    font-size: 0.9rem;
    font-weight: bolder;
    letter-spacing: normal;
    color: #fff;
    text-align: center;
}
.horDivs {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 16px;
    margin: 10px;
    vertical-align: top;
}
.leftNavBar, .mainContentSection, .rightNavBar {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a:link {
    text-decoration: none;
  	color: #3362A3;
}
a:hover {
  	color: #704c4c;
  	cursor: pointer;
}
a:visited {
  	color: #3362A3;
}
label {
	display: inline-block;
	font: 0.9rem sans-serif;
	font-variant: all-small-caps;
	text-align: left;
	color: gray;
}
.divTable {
    display: table;
}
.divTblRow {
    display: table-row;
}
.divTblCell {
    display: table-cell;
}
.divTblCellLeft {
    display: table-cell;
    width: 12%;
    text-align: right;
    font: 0.9rem sans-serif;
    color: gray;
}
.divTblCellRight {
    display: table-cell;
    text-align: left;
    padding: 4px 10px;
}
.tableLabel {
    display: inline-block;
  	margin-right: 3px;
  	text-align: right;
  	color: #666;
  	font-family: serif;
}
.tableValue {
    display: inline-block;
    margin-left: 3px;
  	text-align: left;
  	color: #000;
	font-size: 0.9rem;
  	font-family: sans-serif;
  	font-weight: bold;
}
.tableTotal {
    margin-left: 3px;
  	text-align: left;
  	color: #8C1111;
  	font-family: sans-serif;
  	font-weight: bold;
}
.tableSectionLabel {
    margin: 6px;
    padding: 18px 0 8px 0;
  	text-align: center;
  	color: #999;
  	font-family: sans-serif;
  	font-weight: bold;
  	text-decoration: underline;
}
.horizontalAlign {
  	margin: 12px;
  	display: inline-block;
}
.centerOnPage {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
}
.centerJustify {
  	text-align: center;
  	margin: auto;
}
.leftJustify {
  	text-align: left;
  	padding-left: 18px;
}
#waiting, .waiting, .confirmationDivOuter, #fullScreenPopupCont, .fullScreenPopupCont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  	text-align: center;
  	background-color: #fff;
  	background-color: rgba(255,255,255,0.9);
	cursor: wait;
	z-index: 100;
}
#waitingDiv, #launchSuccessDiv {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	color: steelblue;
}
#launchSuccessDivBtn {
    display: block;
    width: fit-content;
    padding: 6px;
    margin: 30px auto;
    border: 2px solid #666;
    font-family: sans-serif;
    cursor: pointer;
}
#uploadMsg {
    font-size: 1.6rem;
    font-family: cursive;
    letter-spacing: 2px;
}
.borderBlink2 {
    -webkit-animation: borderBlink 2s step-end infinite;    
    -moz-animation: borderBlink 2s step-end infinite;    
    -ms-animation: borderBlink 2s step-end infinite;    
    -o-animation: borderBlink 2s step-end infinite;    
    animation: borderBlink 2s step-end infinite;
}
#currencyDiv {
    margin: 30px 0 10px 0;
    font-style: italic;
}
/*****************************  END GENERAL ELEMENT STYLES ******************************/

/***************************** FORMS *************************/
input[type=checkbox] {
	transform: scale(1.4);
  	margin-left: 14px;
  	margin-right: 14px;
}
input[type=button], input[type=submit]{
  	padding: 4px 14px;
  	color: #ffffff;
    background-color: steelblue;
    border-color: goldenrod;
  	border-radius: 10px;
  	margin: 10px;
  	cursor: pointer;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
input[type=text], input[type=number], input[type=password], input[type=date], select {
  	background-color: #FFF;
    font-family: sans-serif;
  	padding: 2px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
  	color: #704c4c;
  	user-select: none;
    outline: none;
}
input[type=reset] {
    background-color: #e29a56;
    text-align: center;
    padding: 4px 10px;
    border: none;
    color: white;
    text-decoration: none;
    margin: 30px;
    cursor: pointer;
    font-size: inherit;
}
input[type=radio] {
    cursor: pointer;
}
.inputShort {
  	width: 120px;
}
.inlineInput {
    display: inline-block;
    max-width: 180px;
    /*margin-left: 6px;*/
    margin: 5px 0 5px 6px;
}
.siteNavDiv {
    display: block;
    width: fit-content;
    margin: 5px auto 5px auto;
  	text-align: center;
  	font-family: "arial";
  	font-size: 0.9rem;
  	letter-spacing: 0.5px;
}
.siteNavDiv a:hover{
  	cursor: pointer;
  	color: #704c4c;
}
.special {
  	padding: 3px;
  	margin: 0 4px;
  	border: 1px solid #ff4343;
  	border-radius: 10px;
  	background-color: #ffff93;
  	font-family: "arial";
  	font-size: 0.6rem;
  	font-weight: bold;
}
.showTerms {
  	color: steelblue;
  	cursor: pointer;
}
#tAndCCont, #faqCont, #aboutCont {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	display: none;
    background: rgb(0,0,0); /* Fallback colour */
  	background: rgba(0,0,0,0.8);
  	font-family: serif;
    line-height: 20px;
  	z-index: 80;
}
#footerPopupBody {
    display: block;
    width: 94%;
    height: 80%;
    margin: 0 auto 10px auto;
    padding: 20px;
    font-size: initial;
    color: black;
    text-align: left;
    font-family: serif;
    line-height: 1.4rem;
    background-color: #fff;
    overflow: auto;
}
#footerPopupClose {
    width: fit-content;
    margin: 10px auto 20px auto;
    padding: 8px 20px;
    background-color: #fff;
    font-family: serif;
  	font-family: sans-serif;
  	border-radius: 10px;
    cursor: pointer;  
}
.confirmActionDiv {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
}
#submitBtn, .submitBtn {
    display: inline-block;
    margin: 0 20px;  
    height: fit-content;
    color:#fff;
    font-size: 0.9rem;
    font-family: sans-serif;
    border-radius: 4px;
    background-color: #4CAF50;
    border-color: #6fe074;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}
#deleteBtn, .deleteBtn, #closeStallBtn, #btnDeactivate, #closeAndBanBtn {
    display: block;
    margin: auto;
    padding: 4px 14px;
    color: #fff;
    font-family: sans-serif;
    border-radius: 4px;
    background-color: #9a2929;
    border-color: #e46d6d;
    text-align: center;
    letter-spacing: 2px;
}
#deleteBtn:hover, .deleteBtn:hover, #closeStallBtn:hover, #btnDeactivate:hover {
    background-color: #cd4040
}
.cancelBtn {
    margin-left: 20px;
    color: #3362A3;
    border: none;
    background-color: inherit;
    cursor: pointer;
}
.cancelHideDiv {
    color: #3362A3;
    cursor: pointer;
}
.inputCont {
	border-bottom: 1px solid #ccc;
	padding: 10px 12px;
	margin: 0 12px;
}
table {
    border-collapse: collapse;
}
/*****************************  END FORMS ******************************/

/*****************************  PAGINATION ******************************/
.pagination {
    display: block;
    width: fit-content;
    margin: 20px auto 20px auto;
}
.pagination a, .paginateFormBtn {
    padding: 0 12px;
    text-decoration: none;
    color: #666;
    -webkit-box-shadow: -1px 1px 2px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 1px 2px 0 rgba(0,0,0,0.75);
    box-shadow: -1px 1px 2px 0 rgba(0,0,0,0.75);
    letter-spacing: 0.7px;
    border: 2px ridge #ffffff;
    font-family: sans-serif;
    background-color: #eef5f9;
    background: linear-gradient(180.5deg, rgba(255,255,255,1) 29%, rgba(213,215,215,1) 92%, rgba(147,146,146,1) 100%);
}
.pagination a .active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}
.pagination a:hover:not(.active), .paginateFormBtn:hover:not(.active) {
    background-color: #ceedff;
}
.pagination a:first-child, .paginatePrevBtn {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination a:last-child, .paginateNextBtn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#pageBtnActive {
    background: linear-gradient(180.5deg, rgb(199 252 177) 29%, rgb(128 171 93) 92%, rgb(52 102 31) 100%);
    color: #20702d;
}
/*****************************  END PAGINATION ******************************/

/*****************************  HEADER *******************************/
#headerRB {
  	max-height: 90px;
  	padding: 8px 20px 0 20px;
  	background-size: cover;
  	overflow: hidden;
}
#headerRB, #footerRB {
    text-align: center;
    background-color: #a48a7d;
  	background-image: url("https://rustybits.com.au/images/headerBg_rb.jpg");
}

/*  Search bar */
#searchCont {
display: flex;
    max-width: 76%;
    bottom: 0;
    margin: auto auto 0 auto;
    padding: 6px;
    text-align: left;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 4px ridge #f2f9ff;
    border-bottom: none;
    border-left: 4px ridge #ebf9ff;
    border-radius: 24px 24px 0 0;
    -webkit-box-shadow: inset -11px 13px 9px -9px rgb(0 0 0 / 75%);
    -moz-box-shadow: inset -11px 13px 9px -9px rgba(0,0,0,0.75);
    box-shadow: inset -11px 13px 9px -9px rgb(0 0 0 / 75%);
    }
.headerSeparator {
    border-left: groove;
    border-right: groove;
}
#searchDiv {
    display: inline-block;
    width: 100%;
    padding-top: 6px;
    text-align: center;
}
#searchDiv input[type=text]{
  	background-color: #fffcf0;
  	border-top: 1px solid #333;
  	border-right: 1px solid #333;  	
  	border-radius: 6px;
}
#searchImgCont {
    background-image: url(/images/Logo02b-trans.gif);
    display: inline-block;
    width: 210px;
    height: 54px;
    margin: 0 30px 0 5px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    cursor: pointer;
}
#rbHeaderSel {
    padding: 3px 10px;
  	background-color: #eef5f9;
    box-shadow: 0 2px #666;  	
    border-radius: 6px;
    letter-spacing: 0.7px;
    border: 2px ridge #dfeef5;
    font-family: sans-serif;
    background: linear-gradient(0.5deg, rgba(255,255,255,1) 10%, rgb(227 227 227) 90%, rgba(147,146,146,1) 100%);
}
#rbHeaderBtn, .rbHeaderBtn {
    display: inline-block;
    margin-right: 0;
    padding: 3px 10px;
  	background-color: #eef5f9;
    box-shadow: 0 2px #666;  	
    color: black;
    border-radius: 6px;
    letter-spacing: 0.7px;
    border: 2px ridge #dfeef5;
    font-family: sans-serif;
    background: linear-gradient(190.5deg, rgba(255,255,255,1) 29%, rgba(213,215,215,1) 92%, rgba(147,146,146,1) 100%);
}
#headerMenuBar {
    display: block;
    text-align: center;
    letter-spacing: 2.8px;
    background-color: #fffbed;
    border-bottom: 2px solid #9b9991;
    background: linear-gradient(180deg, rgba(255,255,255,1) 12%, #f2ede7 27%, #ffffff 60%,rgb(238 244 249) 82%, rgb(144 141 131) 100%);
}
.headerMenuButton {
    display: inline-block;
    margin: 0;
    padding: 4px 10px;
    width: 23%;
    vertical-align: top;
    border-left: 2px solid #ded8c5;
    border-right: 1px solid #ded8c5;
    font: small-caption;
    font-size: 0.9rem;
    font-weight: bold;
    color: #704c4c;
    letter-spacing: 2px;
    cursor: pointer;
}
.headerMenuButton:hover {
    background-color: #fffcf0;
    color: #5ba561;
}
#leftSearchContChrome {
    width: 12px;
    position: relative;
    top: 14px;
    left: -20px;
    text-align: center;
    color: #6283b6;
    border-left: 2px solid #775d4b;
    border-radius: 24px 0 0 0;
    background-color: #f6f3ef;
    background: linear-gradient(90deg, rgb(255 253 250) 12%, #b1b5b7 79%,rgb(255 255 255) 100%);
}
#rightSearchContChrome {
    width: 12px;
    position: relative;
    top: 14px;
    right: -19px;
    text-align: center;
    color: #6283b6;
    border-right: 2px solid #d1d1d1;
    border-radius: 0 24px 0 0;
    background-color: #f6f3ef;
    background: linear-gradient(270deg, rgb(240 251 255) 42%, #ffffff 27%,rgb(190 190 190) 100%);
}
#popupBack {
    position: absolute;
    width: 100%;
    background-color: #fffae9;
    border-bottom: 2px solid #9b9991;
    border-left: 1px solid #cbcac4;
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
    cursor: default;
    z-index: 1;
}
.dropdownMenuDiv {
    display: none;
    position: absolute;
    width: fit-content;
    margin-top: 6px;
    margin-left: -10px;
    padding-top: 10px;
    cursor: default;
    z-index: 2;
}
.headerDropMenuItem {
    display: block;
    margin: 10px 6px;
    font-weight: normal;
    text-align: left;
    color: #704c4c;
    border-bottom: 1px solid #eae2c7;
}
.headerDropMenuItem:hover {
    color: #5ba561;
    cursor: pointer;
}
#logInOutBtn:hover #dropdownMenuDiv {
    display: block;
}
/*****************************  END HEADER *******************************/


/***************************** SUB-HEADER *******************************/
#subHeader {
	width:100%;
	margin:auto;
}
#subHeaderLeftDiv {
	display:inline-block;
    width: 48%;
    vertical-align:top;
    text-align: left;
}
#subHeaderRightDiv {
	display:inline-block;
    width: 48%;
    vertical-align:top;
    text-align: right;
}
/***************************** END SUB-HEADER *******************************/


/*****************************  MIDDLE COLUMN (Main content) ******************************/
#prodCont {
  	margin-top: 20px;
 	width: 100%;
 	text-align: center;
    justify-content: space-between;
}
#stallInfoDiv {
    display: flex;
    flex: 0 0 100%;
    justify-content: space-evenly;
    padding: 4px 14px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.prodBoxContainer {
    position: relative;
  	display: inline-block;
 	width: 178px;
  	min-height: 246px;
  	margin: 8px;
}
.prodBox {
    position: relative;
  	display: inline-block;
    text-align: center;
  	background-color: #fff;
 	width: 178px;
  	min-height: 262px;
  	cursor: pointer;
  	border: 1px solid #eee;
  	border-radius: 4px;
   	vertical-align: top;
   	word-break: break-word;
   	-webkit-box-shadow: -3px 3px 2px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: -3px 3px 2px -3px rgba(0,0,0,0.75);
    box-shadow: -3px 3px 2px -3px rgba(0,0,0,0.75);
}
.prodBoxImg {
  	max-width: 99%;
 	height: 160px;
 	margin-bottom: 6px;
 	/*margin-bottom: 4px;*/
    /*background-color: #fffbf2;*/
    /*border-bottom: 2px solid #f3f3f3;*/
    overflow: hidden;
}
.prodBoxImg img{
    position: relative;
  	max-width: 100%;
    max-height: 100%;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.prodBox:hover img {
	-webkit-transform: scale(1.4,1.4);
	transform: scale(1.4,1.4);
}
.prodBoxDetails {
    width: 94%;
    min-height: 70px;
    margin: auto;
}
.price {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: bold;
    color: #3366CC;
}
.price:before {
    content: "$ ";
    font-family: sans-serif;
    font-weight: lighter;
    font-stretch: condensed;
}
.each {
    font-size: inherit;
    font-weight: normal;
}
.btnItemEdit {
    padding: 2px;
    background-color: #eaeec1;
    font-family: sans-serif;
    letter-spacing: 1.2px;
    border-radius: 4px;
  	cursor: pointer;
}
.btnItemEdit:hover {
    background-color: #e0f600;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.prodVisits {
    position: absolute;
    bottom: 1px;
    left: 1px;
    font-size: 0.9rem;
    font-family: sans-serif;
    color: #ae4848;
}
#catListCont {
    column-count: 3;
    column-gap: 40px;
    column-rule: 1px solid #ccc;
    text-align: left;
}
.catListSection {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-family: monospace;
    border-bottom: 1px solid #ccc;
    -webkit-column-break-inside: avoid; /* Chrome, Safari */
    page-break-inside: avoid;         /* Theoretically FF 20+ */
    break-inside: avoid-column;       /* IE 11 */
    display: table;                    /* Actually FF 20+ */
}
.catListHeading {
    font-variant-caps: small-caps;
    line-height: 2rem;
}
.catListSection ul {
    list-style-position: outside;
    list-style-type: square;
    padding-left: 26px;
    text-indent: -1em;
}
.stallListBox {
    padding: 10px 0;
    text-align: left;
    color: #56616b;
    border-bottom: 1px solid #ccc;
}
.stallListBox:hover {
    background-color: #e6faff;
    cursor: pointer;
}
.stallListName {
    font-weight: bold;
    color: #5f85cf;;
    font-family: sans-serif;
}
/*****************************  END MIDDLE COLUMN ******************************/

/*****************************  SIDEBARS (L & R) *******************************/
.leftNavBar {
    display: inline-block;
  	vertical-align: top;
  	width: 260px;
  	padding: 20px 6px 20px 20px;
  	text-decoration: none;
}
.leftNavBar hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #bababa;
    margin: 20px 0;
    padding: 0;
}
.leftNavBar input[type=text]{
    width: 152px;
    margin-top: 10px;
  	border: 1px solid #ccc;
}
.rightNavBar, .rightNavBar_rb {
    display: inline-block;
  	float: right;
  	vertical-align: top;
  	width: 220px;
  	text-align: center;
  	padding: 20px 8px;
}
.rightNavBar_rb {
  	background-color: #fffbed;
    border-left: 3px solid #eae2ca;
}
.stallLink {
  	font-family: "coming-soon";
  	font-size: 2rem ;
  	color: #704c4c;
  	font-weight: bold;
}
.socialMediaSet {
  	margin-bottom: 20px;
}
.socialMediaSet img{
  	width: 36px;
  	height: 36px;
  	margin-left: 6px;
  	margin-right: 6px;
}
#sidebarMessage {
  	width: 90%;
  	text-align: center;
  	border: 1px solid #666;
  	border-radius: 24px;
    padding: 10px;
}
#adTitle {
  	text-align: center;
  	font-size: 0.9rem;
  	font-family: "coming-soon";
  	color: #704c4c;
  	letter-spacing: 3px;
}
#otherProdsCont {
    display: block;
    width: 100%;
    margin-top: 60px;
    font-size: 0.9rem;
    font-family: sans-serif;
    letter-spacing: 1px;
}
#otherProdsInner {
    margin: auto;
    padding: 4px;
    text-align: center;
    background: #fff;
}
.otherProd {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 102px;
    vertical-align: top;
    text-align: center;
    border: 1px solid #ccc;
    margin: 6px 10px;
    padding: 9px;
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */  	
}
.otherProd:hover{
  	opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    cursor: pointer;
}
.otherProd img {
  	max-width: 70px;
    max-height: 70px;
}
.opPrice {
    display: block;
}
#adsDiv {
    margin-bottom: 10px;
}
#adsDiv img, #adsDiv source {
    display: block;
    max-width: 160px;
    cursor: pointer;
}
#sellerInfo {
    line-height: 3rem;
}
#leftNavBarColours {
     background-color: #fff; 
     border-right: 2px solid #ccc; 
}
/*****************************  END SIDEBARS *******************************/

/***************************** ADVERTISEMENTS BANNER *******************************/
#adBanner {
    display: none;
}
#adBanner img, #adBanner source {
    display: block;
    cursor: pointer;
}
/***************************** END ADVERTISEMENTS BANNER *******************************/

/*****************************  FOOTER *******************************/
#footerBarDiv, #footerBarDiv a{
  	color: #fff;
}
#footerRB {
  	height:21px;
    position: fixed;
    left: 0;
    bottom: 0;
 	width:100%;
  	background-size: cover;
  	background-position: bottom left;
  	font-family: "arial";
    text-align: center;
  	font-size: 0.8rem;
  	letter-spacing: 3px;
  	text-decoration: none;
}
.footerStar {
    display: inline-block;
    margin: 0 20px;
}
.faqQuestion {
    display: block;
    margin: 4px;
    padding: 8px;
    background-color: #E6FAFF;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}
.faqAnswer {
    display: none;
    margin: 8px 0 0 30px;
    padding: 10px;
    font-weight: normal;
    font-size: 0.9rem;
    background-color: #fff;
}
#sitemapBody {
    line-height: 26px;
}

  /* Smaller devices: (Phones, Ipads etc.) */
@media screen and (max-device-width: 800px){
    #footerRB {
      	height: 40px;
      	letter-spacing: 1.2px;
    }
    #aboutBody, #sitemapBody, #tAndCBody, #faqBody {
        width: 94%;
        margin: 60px auto;
        padding: 8px;
        line-height: 2rem;
        font-size: initial; 
    }
    #sitemapBody a {
        line-height: 50px;
    }
    #footerCopyrightDiv {
        display: none;
    }
}
/*****************************  END FOOTER *******************************/

/*****************************  POPUP STUFF *******************************/
.messagePopup {
    position: fixed;
  	top: 0;
  	left: 0;
  	width: 100vw;
    height: 100vh;
  	background: rgb(0,0,0); /* Backup colour */
  	background: rgba(0,0,0,0.9);
    z-index: 100;
}
.messagePopupInner, #stallSetupPopupInner {
    position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
    width: fit-content;
    padding: 20px;
    background-color: #fff;
    font-family: sans-serif;
    text-align: center;
    line-height: 2rem;
    border: 4px solid #ccc;
}

/* Opaque container backgrounds */
#imgPopupWin, #imgPopupWin_salesTab, #imgPopupWin_purchTab {
  	display: none;
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%; 
  	border: 4px solid #666;
  	cursor: zoom-out;
  	background: rgb(0,0,0); /* Backup colour */
  	background: rgba(0,0,0,0.9);
  	z-index: 100;
}
#imgPopupWin img, #imgPopupWin_salesTab img, #imgPopupWin_purchTab img {
  	position: absolute;
  	top: 52%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    max-width: 94vw;
    max-height: 90vh;
}
#imgPopupWin span, #imgPopupWin_salesTab span, #imgPopupWin_purchTab span {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: bold;
    color: #fbf4b7;
}
/*****************************  ENDPOPUP STUFF *******************************/

/*****************************  STALL SETUP *****************************/
#stallTitleCount, #stallDescCount {
	font: 0.8rem sans-serif;
	color: #999;
}
.sectionTitle {
    width: 96%;
    padding: 10px;
    font-size: 1.2rem ;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1.6px;
    background-color: #fff;
    color: #704c4c;
}
.sectionNote {
    display: inline-block;
    font-style: italic;
}
#businessInfoDiv, #bankInfoDiv, #postalAddressDiv {
    display: block;
    width: fit-content;
    margin: 20px auto;
    text-align: right;
    line-height: 2rem;
}
#pickupSelCont {
    display: none;
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: auto;
  	text-align:center;
  	background: rgb(0,0,0); /* Backup colour */
  	background: rgba(0,0,0,0.9);
  	z-index: 100;
}
#pickupSel {
  	margin: 3%;
    min-width: 90%;
    min-height: 60%;
    padding: 30px;
    background-color: #f9f6ad;
    border: 4px ridge #ccc;
    z-index: 100;
}
#btnPickupAddress {
  	cursor: pointer;
    margin: auto;
    background-color: #6abf0c;
    width: fit-content;
    padding: 6px;
    font-family: sans-serif;
    border-radius: 10px;
    color: #fff;
}

	/* Stall-setup2 page */
.stallAppCont {
  	width: 100%;
  	height: 100%;
}
.attribute{
  	font-size: 0.8rem;
  	font-style: italic;
}
.stallBG {
    max-width: 172px;
    max-height: 172px;
	cursor: pointer;
}
.stallBG:hover {
	border: 1px solid #59BA32;
}
#stallBGPopup {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border: 2px solid #ccc;
}
#stallBGPopup img {
    border: 1px solid #ccc;
}
#stallDispPreviewCont {
  	height: 80px;
    margin: 20px 10px;
    border: 1px solid #ccc;
  	background-color: #fff;
  	background-size: 100px;
}
#stallDispPreview {
  	max-width: fit-content;
    max-height: 100%;
    font-size: 2.2rem;
    text-align: center;
    background-color: #fff;
    padding: 3px 8px;
    border-radius: 8px;
  	margin: auto;
}
.txtStallDesc {
  	width: 400px;
    height: 110px;
    margin: 6px 0;
  	resize: none;
  	overflow: auto;
}
#changeAddressDiv select {
	margin: 6px 0;
}
#pickupSummaryDiv, #postalAddressDiv {
    display: block;
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    line-height: 2.2rem;
}
#changeAddressDiv {
    display: none;
    width: fit-content;
    margin: auto;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
#fontButton {
    display: inline-block;
    width:184px;
    margin: 0 0 10px 8px;
    padding: 2px 6px;
    font-size: 1.2rem;
    font-family: sans-serif;
    color: #704c4c;
    background-color: #fff;
}
#stallAppBgButton {
    display: inline-block;
    width: 100px;
    height: 30px;
    background-size: contain;
    border: 1px solid #ccc;
}
#fontMenuDiv {
    display: none;
    position: absolute;
    columns: 4;
    width: fit-content;
    padding: 6px;
    font-size: 1.2rem;
    background-color: #fff;
    border: 3px solid #914d4d;
}
.stallFontDiv {
    display: block;
    padding: 6px;
    cursor: pointer;
}
#selPackageCont {
    display: block;
    width: 100%;
}
.packSelBtnDur {
    font-size: 2rem;
    font-family: sans-serif;
    font-weight: bold;
}
.packSelBtnDollar {
    font-size: 1.5rem;
    color: #3470cf;
}
.packSelBtnPrice {
    font-size: 2.4rem;
    font-weight: bold;
    color: #3470cf;
}
#newAddressDiv {
    text-align: right;
}
.timeSelectors {
    display: inline-block;
}
/***************************** END STALL SETUP *****************************/


/***************************** UPLOAD / EDIT PRODUCTS ******************************/
.uploadContainer {
	width: 100%;
  	padding: 30px;
  	background-color: #E6FAFF;
}
.uploadContainer input[type=submit] {
    background-color: #4CAF50;
	text-align: center;
    border: none;
    color: white;
    padding: 6px 10px;
    text-decoration: none;
    margin: 10px;
    cursor: pointer;
}
#topTwoDivs {
    display: flex;
    justify-content: space-evenly;
    margin: 30px auto;
}
#uploadDiv1, #uploadDiv2 {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#uploadDiv1 {
    /*width: 380px;*/
    padding-right: 10px;
    line-height: 3rem;
    border-right: 1px solid #ccc;
}
#uploadDiv2 {
    text-align: right;
    line-height: 3rem;
}
#uploadDiv4 {
    text-align: center;
}
#extraAttributes select {
    margin: 10px 0;
}
.uploadContainer ul {
    line-height: 1.6rem;
}
.uploadContainer input[type=text]{
	width: 300px;
	margin: 6px 0;
  	background-color: #FFF;
}
.uploadContainer input[type=number]{
    margin-top: 10px;
  	background-color: #FFF;
	width: 100px;
	border: 1px solid #ccc;
}
#prodTitleDesc {
    display: inline-block;
    width: fit-content;
    padding-right: 30px;
    border-right: 1px solid #ccc;
}
#prodTitleDesc input[type=text] {
    width: 370px;
    color: #000;
    font-weight: normal;
    text-align: left;
    font-family: sans-serif;
    font-size: inherit;
}
#prodTitleInput {
    font-size: initial;
}
#prodDesc {
	font: 0.9rem sans-serif;
    width: 370px;
    height: 167px;
    margin: 6px 0;
	border: none;
	vertical-align: top;
	resize: none;
	overflow: auto;
  	background-color: #fff;
  	padding: 2px 6px;
  	border: 1px solid #ccc;
    border-radius: 4px;
  	color: #704c4c;
}
#txtTitle {
	width: 80%;
	height: 4rem;
}
#uploadTitleCount, #uploadDescCount {
    display: block;
    width: 100%;
    text-align: right;
    font-family: sans-serif;
    color: #999;
    vertical-align: bottom;
}
.titleDescInput {
  	display: inline-block;
  	margin: 0;
}
.uploadPurchCostCont {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
#costCont {
    line-height: 30px;
}
#uploadPostDiv {
    display: block;
    margin-top: 20px;
    padding: 20px;
    padding-top: 10px;
    text-align: center;
    line-height: 4rem;
    border: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Upload button */
.uploadBtnCont {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.uploadBtnWrapper {
	display: inline-block;
  	text-align: center;
	width: 100px;
	height: 100px;
	margin: 10px;
}
.imgSpecs{
  	display: inline-block;
}
.imgSpecs ul, .uploadPurchCostCont ul {
    margin: 8px;
    text-align: left;
    line-height: 1.5rem;
    letter-spacing: 0.4px;
}
.imgSpecs li {
  	text-align: left;
}
#costPriceNotes {
    width: fit-content;
    margin: auto;
}
.btnRemove {
  	cursor: pointer;
}
.btnRemove:hover {
  	color: red;
}
#btnUpload2, #btnUpload3, #btnUpload4, #btnUpload5 {
  	background-color: #E6FAFF;
  	cursor: not-allowed;
}
.upload-button {
  	position: relative;
  	border: 1px solid #999;
    border-radius: 5px;
  	overflow: hidden;
  	background-color: #fff;
	cursor: pointer;
	padding: 4px 6px;
	margin: auto;
	width: 100%;
	height: 100%;
}
.photoNum {
    position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
    font: 1.6rem sans-serif;
    line-height: 2rem;
    color: #999;
}
.file-upload {
    display: none;
}
.imgUploadPrev {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	max-width: 100%;
  	max-height: 100%;
}
.btnRemove {
  	width: 90%;
    margin: 5px auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #704c4c;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/* Upload confirm box*/
#dialogoverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #FFF;
	opacity: 0.8;
	z-index: 10;
}
#dialogbox {
	display: none;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	width: 50%;
    border: 4px solid steelblue;
    border-style: groove;
    border-radius: 10px;
    border-radius: 10px;
    z-index: 10;
}
#dialogboxhead {
    background: #b9b9b9;
    font-size: 19px;
    padding: 5px;
    color: #000;
    text-align: center;
    border-radius: 6px 6px 0 0;
}
#dialogboxbody {
    background: #E6FAFF;
    padding: 20px;
    color: #704c4c;
    text-align: center;
    font-size: 1.4rem;
}
#dialogboxfoot {
    background: #E6FAFF;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 6px 6px;
}
#packSelBtnCont {
    display: flex;
    justify-content: space-evenly;
}
.selPackageDiv{
    display: inline-block;
    width: fit-content;
    min-width: 190px;
    min-height: 190px;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 10px;
    background-color: #fff;
    line-height: 30px;
    vertical-align: top;
}
.stallPackTitle {
    display: block;
    font-variant: small-caps;
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: bold;
}
#selDuration {
    color: #000;
    font-size: 1.2rem;
    padding: 4px;
}
#selPackageCont {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
#sellerInfo {
    width: fit-content;
    margin: auto;
    line-height: 2rem;
}
#stallHoldCont {
    padding: 8px;
    text-align: center;
    border: 1px solid #76c7ff;
}
#stallHoldCont label {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
 }
 .postageOptionDiv {
    margin: 6px 0;
    background: aliceblue;
    border: 1px solid #76c7ff;
 }
 #ausPostCostsDiv {
    width: fit-content;
    margin: auto;
    padding: 10px;
    text-align: center;
    line-height: 1.6rem;
 }
  #ausPostCostsDiv select option {
      line-height: 1.8rem;
  }
/***************************** END UPLOAD / EDIT PRODUCTS ******************************/

/***************************** REGISTRATION FORM ******************************/
#regCont {
	width: 100%;
  	background-color: #E6FAFF;
}

#regForm p {
	font: 0.8rem sans-serif;
  	display: inline-block;
}
#regForm td {
	padding: 8px 0;
  	vertical-align:top;
}
#regForm label {
	padding-left: 20px;
  	font: 0.9rem sans-serif;
    text-align: left;
  	width: 100px;
}
#nonMemberCont {
   	width: 100%;
  	text-align: center;
  	margin: auto;
}
#nonMemberCont img{
  	display: inline-block;
  	max-width: 120px;
  	max-height: 140px;
}
#regActCont {
   	width: 100%;
  	text-align: center;
  	margin: auto;
}
/***************************** END REGISTRATION FORM ******************************/

/***************************** LOGIN FORM ******************************/
.signinCont {
    position: absolute;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	background-color: #E6FAFF;
  	text-align: center;
  	width: 50%;
  	padding: 20px;
  	border: 1px solid #ccc;
    border-radius: 4px;
}
.signinCont img {
    margin-bottom: 40px;
	width: 220px;
}
#inputDiv {
    width: fit-content;
    text-align: right;
    margin: auto;
}
.loginMegssage {
    font-size: 1.2rem ;
    color: red;
}

  /* Larger devices: (Notebooks, laptops) */
@media screen and (min-device-width: 600px) and (max-device-width: 900px) {
    .signinCont {
        width: 100%;
        padding: 60px 20px;
        font-size: 1.2rem;
    }
  	.signinCont input[type=submit] {
  		height: 55px;
  		width: 200px;
      	font-size: 1.2rem;
  	}
  	#loginForm img {
        width: 400px;
        height: auto;
        margin-bottom: 80px;
  	}
}
/***************************** END LOGIN FORM ******************************/

/***************************** STALL DISPLAY ******************************/
#stallContentSection {
  	width:100%;
  	padding: 5px 30px 24px 30px;
   	overflow: auto;
}
#stallCont {
	width: 100%;
	height: 100%;
    background-repeat: repeat;
}
#stallEst {
    width: 100%;
    padding: 4px 0 12px 0;
    text-align: center;
    font-size: 0.9rem;
    font-family: sans-serif;
    color: #bbb;
    letter-spacing: 2px;
}
#headDiv {
    -webkit-box-shadow: -3px 5px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: -3px 5px 5px -3px rgba(0,0,0,0.75);
    box-shadow: -3px 5px 5px -3px rgba(0,0,0,0.75);
}
#stallName {
    position: absolute;
    top: 34px;
    left: 50%;
    width: fit-content;
    display: block;
  	margin: auto;
  	border-radius: 12px;
    transform: translate(-50%, -50%);
	text-align: center;
	font-size: 28px;
  	font-weight: bold;
  	letter-spacing: 3px;
  	padding: 8px 26px 8px 26px;
  	background-color: #fff;
	-moz-box-shadow: inset 0 0 10px #000000;
	-webkit-box-shadow: inset 0 0 10px #000000;
	box-shadow: inset 0 0 10px #000000;
}
#headInnerDiv {
    display: flex;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #bdbdbd;
    border-left: 1px solid #bdbdbd;
}
#stallHeadLeftDiv {
    display: inline-block;
    width: fit-content;
    padding: 6px 30px 6px 10px;
    border-right: 2px solid #ccc;
}
#stallHeadLeftDiv img {
    max-width: 160px;
}
#stallHeadRightDiv {
    flex-grow: 100;
    vertical-align: top;
}
#stallPageTitleCont {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: auto;
    border-radius: 12px 12px 0 0;
    border: 3px solid #bdbdbd;
    padding: 4px;
    background-color: rgb(255 255 255 / 10%);
    -webkit-box-shadow: -3px 4px 5px -4px rgb(0 0 0 / 60%);
    -moz-box-shadow: -3px 4px 5px -4px rgba(0,0,0,0.75);
    box-shadow: -3px 4px 5px -4px rgb(0 0 0 / 75%);
}
#stallPageTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    text-align: center;
    font-size: 5.5vw;
    letter-spacing: 4px;
}
#stallPageSubTitle {
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    background-color: #fff;
    padding: 0 6px;
    border: 1px solid #bdbdbd;
    
    /* Glass effect */
    background: linear-gradient( 
        180deg, rgb(255 253 242 / 98%) 11%, rgb(255 255 255 / 0%) 43%, rgb(211 207 195 / 80%) 73%, rgb(155 155 155 / 72%) 100%);
    }
    #stallInfo {
    margin: 18px 0;
  	padding: 10px;
  	font-family: "arial";
  	font-size: 2rem ;
  	text-align: center;
  	border: 1px solid #666;
  	border-radius: 6px;
  	line-height: 20px;
}
#stallSearchDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#inactiveStallMessage {
    font-size: 1.8rem;
    color: red;
    font-weight: bold;
}
#inactiveStallMessage div {
    font-size: 1rem;
    color: black;
    font-weight: normal;
}
#inactiveStallMessage span {
    font-family: serif;
    font-size: 0.9rem;
    font-style: italic;
}
#itemListFilterDiv, #searchBtn {
    margin: 10px;
}
#searchBtn {
    width: fit-content;
    background-color: #fff;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#stallInfo p{
  	font-family: "courier";
  	font-size: 2rem ;
}
#stallEditBtn, #stallSearchBtn {
    margin-right: 0;
    padding: 3px 10px;
  	background-color: #eef5f9;
    box-shadow: 0 2px #666;  	
    color: black;
    border-radius: 6px;
    letter-spacing: 0.7px;
    border: 2px ridge #dfeef5;
    font-family: sans-serif;
    background: linear-gradient(182deg, rgba(255,255,255,1) 29%, rgba(213,215,215,1) 92%, rgba(147,146,146,1) 100%);
}
#stallEditBtn {
    margin: 0 0 10px 0;
}
#stallEditBtn:hover {
    background-color: #f8ba4a;
}
#stallSearchBtn {
    display: inline-block;
    padding: 0 14px;
    color: #000000;
    background-color: #dfdfdf;
    border-color: steelblue;
    border: 1px solid steelblue;
    border-radius: 4px;
    cursor: pointer;
}
#addItems {
    position: absolute;
  	top: 50%;
  	left: 50%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    font-size: 1.4rem;
    font-family: cursive;
    color: #999;
    line-height: 1.8rem;
    -webkit-transform: 8;
    -moz-transform: translate(-50%, -50%)rotate(-8deg);
    -ms-transform: translate(-50%, -50%)rotate(-8deg);
    -o-transform: translate(-50%, -50%)rotate(-deg);
    transform: translate(-50%, -50%)rotate(-8deg);
}
#launchReadyDiv {
    margin: 40px;
    text-align: center;
    font-size: 1.6rem;
    border: 5px dotted #ff5722;
    background-color: #baffba;
}
#launchReadyBtn {
    display: block;
    padding: 10px;
    margin: 10px 30px;
    font-size: 1.8rem;
    font-family: sans-serif;
    border: 5px solid steelblue;
    border-radius: 14px;
    background-color: beige;
    cursor: pointer;
}
#launchReadyBtn:hover {
    border: 5px solid #5b4cc8;
    background-color: #eeb45e;
}
#launchSuccessDiv {
    display: block;
    width: 100%;
    padding: 10px;
    margin: auto;
    text-align: center;
    font-size: 2.2rem;
    background-color: #fff;
    border: 8px solid #eeab5d;
}
#stallInfoMiddle {
    padding: 0 14px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
/***************************** END STALL DISPLAY ******************************/

/***************************** ITEM/PRODUCT DISPLAY ******************************/
#priceStarCont {
    filter: drop-shadow(0px 1px 1px #000);
}
#priceStar01 {
    width: 80%;
    max-width: 400px;
    height: 208px;
    margin: 22px auto;
    transform: rotate(-9deg);
    clip-path: polygon(39% 0%, 55.05% 13.75%, 68.05% 0.02%, 69.55% 14.77%, 99.55% 1.27%, 83.8% 28.02%, 100% 38.77%, 85.3% 51.27%, 100% 67.48%, 87.55% 73.52%, 100% 100%, 76.75% 84.35%, 68.55% 99.75%, 51.55% 84.52%, 35.55% 99.27%, 30.3% 85.02%, 1.1% 99.55%, 13.4% 79.23%, 0% 72.27%, 16.05% 59.52%, 0% 49.27%, 16.45% 38.77%, 0% 27.02%, 14.8% 22.27%, 0% 0.27%, 34.75% 13.75%);
    background-color: #eeffd1;
    cursor: pointer;
}
#priceStarInner {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%) rotate(-9deg);
  	-ms-transform: translate(-50%, -50%) rotate(-9deg);
    -webkit-transform: translate(-50%, -50%) rotate(-9deg);
  	-moz-transform: translate(-50%, -50%) rotate(-9deg);
    transform: translate(-50%, -50%) rotate(-9deg);
    cursor: pointer;
}
#priceStarTitle {
    display:block;
    font-size: 2rem;
    color: darkgreen;
}
#priceStarPrice {
    display:block;
    margin: 4px 0;
    font-size: 3rem;
}
#priceStarDelivery {
    font-size: 1.4rem;
    color: darkgreen;
}
.productsCont {
  	text-align: center;
}
#prodDetCont {
  	width: 100%;
  	padding: 14px;
  	background-color: #ffffe6;
}
#ProdDetDiv {
	width: 100%;
}
#ProdDetLeftDiv {
  	display: inline-block;
  	width: 42%;
  	height: 500px;
  	vertical-align: top;
}
#prodImgCont {
  	position: relative;
  	width: 100%;
  	margin: auto;
  	padding-top: 12px;
  	text-align: center;
  	align-items: center;
}
#prodImgMain {
  	display: block;
  	margin: auto;
}
#prodImgMain img{
  	max-width: 96%;
    max-height: 500px;
    margin:auto;
  	cursor: zoom-in;
}
#prodTNCont {
  	margin: 20px auto;
    width: fit-content;
}
.prodTN {
  	display: inline-block;
  	margin: 4px;
	width: 86px;
  	height: 86px;
  	cursor: pointer;
  	overflow: hidden;
}
.prodTN img{
  	position: relative;
  	top: 50%;
  	left: 50%;
  	max-width: 100%;
  	max-height: 100%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
}
#ProdDetRightDiv {
  	display: inline-block;
  	width: 54%;
  	border: 1px solid #999;
  	padding: 14px;
  	background-color: #fff;
  	vertical-align: top;
}
#prodTitle {
    margin-top: 20px;
  	color: #6a89c7;
  	font-weight: bold;
  	text-align: center;
  	font-family: "Courier New";
  	font-size: 3rem;
}
#prodID {
    font-size: 0.7em;
    font-style: italic;
    font-family: sans-serif;
}
#prodAltDesc div {
    width: fit-content;
}
#prodDetDesc pre{
  	font-family: serif;
    text-align: center;
    font-style: italic;
    letter-spacing: 1.5px;
  	white-space: pre-wrap;     /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;/* Mozilla, since 1999 */
    white-space: -pre-wrap;    /* Opera 4-6 */
    white-space: -o-pre-wrap;  /** Opera 7 */
}
#prodAltDesc {
    width: fit-content;
    margin: auto;
    line-height: 2rem;
}
.prodDetailsTitle {
  	display: inline-block;
  	font-size: 0.9em;
  	font-family: sans-serif;
  	text-align: left;
  	font-weight: bold;
  	color: #666;
}
.prodDetails {
    margin-left: 12px;
    display: inline-block;
    font-family: serif;
    font-weight: normal;
    color: #000;
}
#detailsItemEdit {
    margin: 20px;
    padding: 10px;
    font-family: sans-serif;
    font-size: 1.4em;
    background-color: #ccc;
    cursor: pointer;
}
#detailsItemEdit:hover{
    background-color: #e6faff;
    border: 1px solid #ccc;
}
#buyItDiv {
  	position: relative;
  	bottom: 10px;
}
#confirmPopupDiv {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: -webkit-fill-available;;
    min-height: 100%;
    padding: 30px;
    background: rgb(0,0,0); /* Backup colour */
    background: rgba(0,0,0,0.8);
    text-align: center;
    z-index: 100;
}
#confirmPopupCont {
    margin: auto;
    width: 90%;
    padding: 30px;
  	line-height: 2rem;
    background-color: #fff;
    border-radius: 40px;
    border: 2px solid #6a89c7;
}
#confirmPopupCont input[type=text] {
    width: 114px;
    padding-left: 0;
    font-weight: bold;
    font-size: 1em;
    border: none;
}
#confirmDetails {
    max-width: fit-content;
    margin: auto;
    text-align: left;
}
#buyThisItemBtn {
    background-color: #28842c;
    padding: 10px 20px;
    font-size: 1.4rem;
}
#cancelPurchBtn {
    width: fit-content;
    border: 1px solid #676767;
    margin: 20px auto;
    padding: 10px;
}
#soldItems {
    font-size: 0.8em;
    font-family: sans-serif;
    font-style: italic;
    letter-spacing: 1px;
}
#attribCont {
    margin-top: 14px;
    line-height: 1.6rem;
}
#attribCont span {
    font-family: sans-serif;
    font-size: 0.9em;
    color: #666;
}
  /* Smaller to medium devices: (Phones, tablets etc.) */
/***************************** END ITEM/PRODUCT DISPLAY ******************************/

/***************************** BUY IT PAGE ******************************/
#buyItContainer {
	width: 100%;
  	padding: 30px;
  	background-color: #E6FAFF;
  	text-align: center;
}
#buyItAccDetails {
    margin: auto;
    margin-bottom: 40px;
    width: 60%;
    padding: 30px;
    line-height: 1.4rem;
    border: 1px solid #666;
    border-radius: 8px;
    background-color: #fff;
}
/***************************** END BUY IT PAGE ******************************/

/***************************** MARK AS PAID ******************************/
#addressCont {
    width: 100vw;
    height: 100vh;
    background: rgb(0,0,0); /* Backup colour */
    background: rgba(0,0,0,0.8);
}
#addressDiv {
    position: relative;
  	top: 50%;
  	left: 50%;
  	-o-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  	-moz-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
    background-color: #fff;
    width: fit-content;
    padding: 30px;
    border: 4px solid #6a89c7;
    border-radius: 14px;
}
#addressDiv img {
    display:inline-block;
}
#addressDivFields {
    width: fit-content;
    margin: auto;
    padding: 20px;
}
/***************************** MARK AS PAID ******************************/

/***************************** BANNERS ******************************/
.bannerTitle {
    padding-top: 8px;
  	text-align: center;
  	font-weight: bold;
  	color: #704c4c;
}
.bannerContanier {
    width: auto;
    margin-top: 50px;
    border-top: 1px solid #ccc;
}
.bannerDiv {
  	width: 650px;
  	height: 100px;
  	margin: auto;
  	padding-top: 4px;
  	border-radius: 6px;
}
#bannerEmpCont {
  	max-width: 650px;
  	text-align: center;
    display: flex;
  	justify-content: space-between;
}
.bannerProdCont {
  	display: inline-block;
  	text-align: center;
  	margin: auto;
  	border: 0;
  	padding: 0 6px;
  	cursor: pointer;
  	font-size: 0.8em;
}
.bannerProdCont img, .bannerProdCont source {
  	text-align: center;
  	margin: auto;
    max-height: 66px;
}
.bannerProdCont img:hover, .bannerProdCont source:hover {
    opacity: 0.3;
}
#bannerInnerLoader {
    padding: 4px;
    background-color: #fff;
    border: 1px solid #d9c9be;
}

/* Smaller devices: (Tablets, Phones, Ipads etc.) */
@media screen and (min-device-width: 500px) and (max-device-width: 799px){
    .bannerTitle {
        font-size: 1.4em;
    }
    .bannerProdCont {
        font-size: 1em;
        letter-spacing: 3px;
    }
}
/***************************** END BANNERS ******************************/

/***************************** GENERAL ATTRIBUTES ******************************/
.memDetailLink {
    display: inline-block;
    font-weight: bold;
    color: #436ec5;
}
.memDetailLink:hover {
    background-color: #ffdcb9;
    cursor: pointer;
}
.contactBtn {
    display: block;
    width: fit-content;
    margin: 4px;
    padding: 0 7px;
    font-family: sans-serif;
    border: 1px solid #aaa;
    border-radius: 9px;
}
#soldTransSectHeaders, #purchTransSectHeaders {
    display: flex;
}
.transSectHeader {
    flex: auto;
    padding: 8px 0;
    background-color: #E8E8E8;
    font-size: 1.3em;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 6px;
    color: #6a89c7;
    text-align: center;
    border-top: 1px solid #ccc;
    border-left: 1px solid #999;
    border-right: 1px solid #E8E8E8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}
#soldPendingDiv, #soldHistoryDiv, #purchPendingDiv, #purchHistoryDiv {
    min-height: 40vh;
    padding-top: 30px;
    border-left: 2px solid #a5a5a5;
    border-right: 2px solid #E8E8E8;
    border-bottom: 2px solid #a5a5a5;
}
.salePurchCount {
    display: inline-block;
    min-width: 10px;
    letter-spacing: normal;
    font-size: initial;
    font-weight: normal;
    padding: 4px;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 16px;
}
.transItemInfoMulti {
    display: inline-block;
}
.transItemImgSingle img {
    max-width: 56px;
    max-height: 56px;
    cursor: zoom-in;
}
.transItemsMulti {
    margin: 4px 0;
}
.transItemImgSingle, .transItemImgMulti {
    display: table-cell;
    width: 80px;
    padding-left: 12px;
    vertical-align: middle;
    text-align: center;
}
.transItemImgMulti img {
    max-width: 56px;
    max-height: 56px;
    cursor: zoom-in;
}
.transItemDetails {
    display: inline-block;
}
.transItemDetailsMulti {
    display: table-cell;
    padding-left: 20px;
}
.transItems, .transItemsMulti {
    min-width: 550px;
    vertical-align: top;
}
.transStatusMulti {
    display: inline-block;
    line-height: 2em;
    vertical-align: top;
}
.BundleItemRow {
    display: block;
}
.transStatusValue {
    display: block;
    margin-left: 14px;
}
.itemBorderBottom {
    width: 86%;
    margin: 3px 0 10px 20px;
    border-bottom: 1px solid #dddbdb;
}
/***************************** END GENERAL ATTRIBUTES *************************/

/***************************** WATCHED ITEMS PAGE *************************/
#watchedItemsCont {
    text-align: left;
}
.watchedItemDiv {  
    width: fit-content;
    margin: auto;
    padding: 10px 0;
    border-bottom: 2px solid #ccc;
}
.watchedImgCont {
    display: inline-block;
}
.watchedImgCont img {
    max-width: 56px;
    max-height: 76px;
    margin: 4px;
    vertical-align: middle;
}
.watchedDetails {
    display: inline-block;
    min-width: 320px;
    margin-right: 50px;
    vertical-align: middle;
    line-height: 1.4em;
}
.itemUnwatchFrm {
    display: inline-block;
}
#frmItemUnwatch input[type=submit]{
  	color: #704c4c;
  	border: none;
  	margin: 3px;
  	padding: 3px 14px;
}
#frmItemUnwatch input[type=submit]:hover{
  	background-color: #704c4c;
  	color: #fff;
}
.MRBProdTitle {
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    color: #87320d;
    letter-spacing: 1px;
    cursor: pointer;
}
/***************************** END WATCHED ITEMS PAGE *************************/

/***************************** PURCHASE HISTORY PAGE *************************/
	/* Tables */
.tblHeader {
    display: table-row;
  	width: 100%;
  	color: #704c4c;
	background-color: #E8E8E8;
  	text-align: center;
  	vertical-align: middle;
}
.tblHeader td{
  	text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    border-right: 1px solid #b1afaf;
}
.tblContent {
    padding: 10px;
  	border-bottom: 1px solid #999;
}
.tblContent div {
    display: inline-block;
    vertical-align: top;
}
.tblCol1 {
    width: 174px;
}
.tblLink {
    width: 240px;
}
.tblLink:hover {
	cursor: pointer;
}
.tblLink img {
    max-width: 70px;
    max-height: 70px;
}
.adminLeftCol {
  	text-align: right;
  	width: 30%;
}
#messageBody {
  	width: 90%;
  	min-height: 300px;
  	margin: auto;
  	overflow: auto;
  	padding: 20px;
}
#printTable {
    width: 100%;
    margin: auto;
  	border-collapse: collapse;
}
#compFrmCont {
  	width:100%;
  	height: 90%;
  	padding: 20px;
  	background-color: #D7ECFA;
  	text-align: center;
}
	/* My Account */
#accDetailsDiv {
  	vertical-align: top;
  	text-align: left;
  	padding: 20px 0;
  	width: 30%;
}
#deactivateDiv {
  	display: block;
  	background-color: #E6FAFF;
  	text-align: center;
  	padding: 8px;
    border: 1px solid #ccc;
}
#btnDeactivateAcc {
  	border-color: #ccc;
  	color: #999;
  	cursor: not-allowed;
}
.adminEventRow {
  	width: 100%;
  	margin: auto;
}
.adminEventRow:hover {
  	background-color: #fff18a;
}
#frmAdminCal label {
    display: inline-block;
    min-width: 180px;
    text-align: right;
    margin-right: 10px;
    font: 0.9rem sans-serif;
    color: gray;
}
#frmAdminCal {
  	width: 100%;
}
#frmAdminCal input[type=text]{
  	min-width: 222px;
    height: 20px;
    margin: 3px 4px;
    padding-left: 6px;
    font-family: sans-serif;
}
#frmAdminCal div {
    background-color: #E6FAFF;
    margin: 20px 0;
}
.frmRemKeywords {
  	display: inline-block;
  	color: #6a89c7;
}
.frmRemKeywords span {
  	display: inline-block;
    font-size: 0.6em;
    vertical-align: top;
  	cursor: pointer;
}
.frmRemKeywords input[type=submit] {
  	display: inline-block;
    font-size: 0.6em;
    cursor: pointer;
    border: 0;
    padding: 0;
  	margin: 0 0 0 6px;
    background-color: #fff;
    color: #6a89c7;
    box-shadow: none;
}
.itemDescPopup {
    position: absolute;
    padding: 4px;
    background-color: #fff;
    border: 2px solid #666;
    z-index: 100;
}
/***************************** PURCHASE HISTORY PAGE *************************/

/***************************** SALES PAGE *************************/
.reAdvBtn {
    white-space: normal;
    width: 105px;
    -webkit-appearance: none;
    background-color: #ccc;
    color: #383838;
    border-color: #a4bccf;
    border-radius: 6px;
}
.profitReportBtn {
    display: block;
    margin: auto;
    width: 80%;
    padding: 10px;
    border: 2px solid #719a6c;
    background-color: beige;
}
/***************************** END SALES PAGE *************************/

/***************************** WANTED ITEMS PAGE *************************/
#wantedItemsListDiv {
    text-align: left;
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid #ccc;
}
.wantedItemDiv {
    padding: 10px;
    border-bottom: 1px solid #666;
}
.wantedItemDiv:hover {
    background-color: #e6faff;
    cursor: pointer;
}
.wantedKeywords {
  	display: inline-block;
    padding: 0 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.9em;
    color: #704c4c;
}
/***************************** END WANTED ITEMS PAGE *************************/
  
/***************************** SELL MY BITS PAGE *************************/
.areaTitle {
	display: inline-block;
    width: 100%;
    min-height: 50px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    font-family: "arial";
    letter-spacing: 2px;
    color: #704c4c;
  	padding-bottom: 8px;
    border-bottom: 1px dashed #ccc;
}
.stallTitle {
    padding: 10px;
	font-weight: bold;
    font-size: 1.4em;
    color: #704c4c;
    line-height: 1.8vw;
}
#stallStatusCont {
    display: flex;
    justify-content: space-evenly;
  	width:100%;
  	margin:auto;
}
.stallStatusbox {
  	position: relative;
    display: inline-block;
    width: 30%;
    margin: 0 12px;
    padding: 10px 10px 30px 10px;
    line-height: 1.6em;
    border: 1px dashed #999;
    overflow: hidden;
    vertical-align: top;
    background-color: #fff;
}
.stallStatusbox ul {
  	text-align: left;
  	padding: 0;
    margin: 20px;
}
.createStall {
  	position: relative;
    bottom: 0;
    display: inline-block;
    width: 80%;
    margin: 4px;
    text-align: center;
    font-weight: bold;
    font-family: "arial";
    letter-spacing: 1px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.createStall:hover {
    cursor: pointer;
    letter-spacing: 2px;
  	color: #ffe17c;
}
.editStall {
  	width:100%;
  	text-align: center;
}
.stallPayBtn {
    display: block;
    width: 90%;
    font-size: 0.9em;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}
#cardPreviewText_smb {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%) rotate(-12deg);
    -ms-transform: translate(-50%) rotate(-12deg);
    -webkit-transform: translate(-50%) rotate(-12deg);
    -moz-transform: translate(-50%) rotate(-12deg);
    transform: translate(-50%) rotate(-12deg);
    font-size: calc(5.2vw * .3);
    width: 80%;
    color: #FF5722;
    overflow: hidden;
    white-space: nowrap;
}
.btn3dColourBlue {
    background: linear-gradient(180deg, rgb(255 255 255) 6%, #eaf4fc 27%,rgb(223 234 243) 82%, rgb(122 157 185) 100%);
    border-color: #a3a3a3;
}
.btn3dColourTan {
    background: linear-gradient(180deg, rgb(255 250 233) 6%, #f3e5bb 27%,rgb(248 227 167) 82%, rgb(201 189 154) 100%);
    border-color: #a3a3a3;
}
.btn3dColourPink {
    background: linear-gradient(180deg, rgb(255 255 255) 6%, #fbe4d9 27%,rgb(253 227 218) 82%, rgb(222 173 143) 100%);
    border-color: #a3a3a3;
}
/***************************** END SELL MY BITS PAGE *************************/
  
/***************************** MY ACCOUNT PAGE *************************/
.updateAccDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: fit-content;
    height: fit-content;
    min-height: 100%;
    padding: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.myAccBtn {
    margin: 16px 0;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #999;
    cursor: pointer;
}
.myAccBtn:hover {
    background-color: lemonchiffon;
}
#btnDeactivate {
    margin-top: 20px;
}
#frmPassChange label {
    width: 110px;
}
#frmPassChange input[type=text] {
    margin-left: 0;
}
#txtNewPass {
    vertical-align: top;
}
#frmAccUpdate input[type=text], #frmEmailUpdate input[type=text], #deactivateDiv input[type=text] {
    display: block;
    width: 90%;
}
#deactivateDiv label {
    text-align: center;
}
/***************************** END MY ACCOUNT PAGE *************************/
  
/***************************** MESSAGES PAGE *************************/
#messagesCont {
    width: 90%;
    margin: auto;
}
#messageActionDiv {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #ccc;
}
#messageMenuBar {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    background-color: #ddd;
    border-bottom: 1px solid gray;
}
#selAllCont {
    text-align: center;
}
#chkSelAll {
    vertical-align: middle;
    height: 100%;
}
#msgCountStatus {
    margin-top: 16px;
}
.messageRowDiv {
    width: 100%;
    padding: 10px 0;
    text-align: left;
    line-height: 1.4em;
    border-bottom: 2px solid #ccc;
}
.messageRowDetails {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    
}
.messageRowDetails:hover {
    background-color: #E6FAFF;
}
.messageDetailsDiv {
    width: 100%;
    margin-left: 20px;
}
.trash {
    height: 100%;
}
.trash img {
    max-width: 30px;
    cursor: pointer;
}
#messageHeaderDiv {
    width: 100%;
    margin: 20px 0;
}
#messageBodyDiv {
    padding: 30px;
    border-top: 2px solid #ccc;
    line-height: 2rem;
}
/***************************** END MESSAGES PAGE *************************/

/***************************** SOLD ITEMS PAGE *************************/
.transCont {
    padding: 10px 10px 10px 30px;
    text-align: left;
    line-height: 1.4em;
}
.transContDivider {
    width: 100%;
    border-bottom: 5px solid #a5a5a5;
}
.transBuyer, .transSeller, .transItemInfo, .transItems, .transStatus {
    display: inline-block;
    vertical-align: top;
}
.transItemInfo {
    width: 100%;
}
.newDelivery {
    display: block;
    width: 90%;
    padding: 4px 10px;
    border: 2px dashed #666;
    background-color: #f4ffed;
}
.newDelivery textarea {
    display: block;
    width: 90%;
    margin: 0 15px;
    resize: none;
}
/***************************** END SOLD ITEMS PAGE *************************/

/***************************** ADMIN PAGE *************************/
.memListDiv {
    display: table-row;
    padding: 8px;
}
.memListDiv div:hover {
    background-color:#E6FAFF;
}
.memListDiv div {
    padding: 6px 10px;
    border-bottom: 1px solid #ccc;
    display: table-cell;
    margin:0 10px;
    cursor: pointer;
}
#memListCont {
    width: 100%;
    margin: 0 30px;
    text-align: center;
}
.myAdImg {
    display: inline-block;
    width: fit-content;
    vertical-align: top;
}
.myAdInfo {
    display: inline-block;
    padding-left: 20px;
    text-align: left;
    line-height: 2em;
}
.adminPageButton {
    display: inline-block;
    width: fit-content;
    margin: 5px;
    padding: 5px;
    color: saddlebrown;
    font-family: sans-serif;
    border: 2px solid #bbcff6;
    border-radius: 5px;
    border-style: outset;
    cursor: pointer;
}
.adminPageButton:hover {
    background-color:#E6FAFF;
}
/* Product details page */
#prodDetailsDiv label, #memDetailsDiv label {
    width: 110px;
}
/***************************** End Admin Tab *************************/


/* Tablets & iPads etc. */
@media screen and (min-device-width: 600px) and (max-device-width: 799px) {
    /* NEW SECTION*/
    .mrbCont {
        display: inline-flex;
    }
    .tab button {
        display: block;
        width: 100%;
        padding: 20px 14px;
        font-size: 1em;
        letter-spacing: 3px;
        border-bottom: 1px solid #888;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    /*------*/
    
    
    #stallStatusCont {
        display: block;
        height: inherit;
    }
    .stallStatusbox {
        width: 90%;
        margin: 12px;
        font-size: 1.4em;
        border: 2px dashed #999;
    }
    .stallPayBtn {
        height: 50px;
    }
    .markAsBtn, .updatePost {
        height: 46px;
        font-size: 1.4em;
    }
    #accDetailsDiv {
        padding: 20px 30px;
        width: 100%;
    }
    #messagesCont {
        width: 100%;
        margin: auto;
    }
    #wantedItemsListDiv {
        column-count: 1;
    }
}
@media screen and (min-device-width: 800px) and (max-device-width: 1200px) {
    .tab button {
        height: 60px;
        letter-spacing: 0;
    }
    #stallStatusCont {
        height: inherit;
    }
    .stallStatusbox {
        width: 90%;
        height: fit-content;
        margin: 12px;
        font-size: 1.4em;
        border: 2px dashed #999;
    }
    .stallPayBtn {
        height: 50px;
    }
    .stallStatusbox ul {
      	padding: revert;
    }
    .areaTitle {
        padding-top: 28px;
    }
}
/***************************** End MRB Small Devices *************************/
/***************************** END MRB TABS ******************************/

/***************************** PRINT LABELS ******************************/
#labelPrintSample {
    width: fit-content;
    padding: 6px 16px;
    margin: auto;
    text-align: left;
    background-color: #fff;
    border: 1px solid #eee;
    filter: drop-shadow(-1px 2px 1px #000000);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    transform: rotate(-2deg);
}
#labelPrintSample div {
    position: absolute;
    top: 27%;
    left: 14%;
    font-size: 4em;
    font-family: sans-serif;
    color: #ccc;
    opacity: 0.4;
    filter: alpha(opacity=40);
    -o-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
@font-face {
    font-family: "quickhand";
    src: url("https://rustybits.com.au/fonts/Quikhand.ttf?#iefix") format("truetype");
}
.labelPrintSampleScript {
    margin-left: 10px;
    font-family: "quickhand";
    font-size: 1.3em;
    color: darkblue;
    letter-spacing: 1px;
}
/***************************** END PRINT LABELS ******************************/

/***************************** UPLOAD & EDIT FEATURED PROJECT ******************************/
#frmProjectEditCont {
    width: 100%;
    padding: 30px;
  	background-color: #E6FAFF;
}
#frmProjectEditCont input[type=text], #frmProjectEditCont textarea {
    background-color: #fff;
  	width: 300px;
    padding: 3px 10px;
}
.projectRow {
    display: table-row;
    border: 1px solid #666;
}
.projectRow:hover  > .projectRowInnerDiv { /* Effects all child elements of projectRow *************************/
    background-color: #ccc;
    cursor: pointer;
}
.projectRowInnerDiv {
    display: table-cell;
    width: 220px;
    padding: 10px 6px;
    vertical-align: middle;
    border-top: 1px solid cadetblue;
    border-bottom: 1px solid cadetblue;
    border-left: 1px solid cadetblue;
    word-break: break-word;
    overflow-wrap: break-word;
}
#projectText {
    width: 80%;
    height: 300px;
}
#newFeaturedProjectDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0,0,0); /* Fallback colour*************************/
    background: rgba(0,0,0,0.8);
}
#nfpInnerDiv {
    margin: 20px auto;
    width: 90%;
    padding: 30px;
    background-color: #E6FAFF;
}
#frmProjectEdit label {
    vertical-align: top;
}
#frmProjectEdit textarea {
    width: 90%;
    height: 300px;
}
#prodEditRightDiv {
    display: block;
    height: fit-content;
    padding: 14px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #999;
}
/***************************** END UPLOAD & EDIT FEATURED PROJECT ******************************/

/***************************** SEARCH RESULTS ******************************/
.searchResCont {
  	display: table;
  	width: 80%;
  	margin: auto;
}
#prodSearchInfoBar {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-around;
}
.searchHeaderRow {
  	display: table-header-group;
	background-color: #E6FAFF;
	font-weight: bold;
  	color: #704c4c;
}
.searchResRow {
  	display: table-row;
  	width: 100%;
  	border-collapse:separate;
  	cursor: pointer;
}
.searchResRow img {
  	max-width: 76px;
  	max-height: 76px;
  	vertical-align: middle;
}
.searchResRow:hover {
  	background-color: #DEF6FF;
}
.searchResCell {
  	display: table-cell;
  	margin: 0 8px;
  	padding: 10px;
  	vertical-align: middle;
  	border-bottom: 1px solid #ccc;
}
.tblCellTitle {
  	font-weight: bold;
  	font-family: "arial";
}
/*****************************  END SEARCH RESULTS ******************************/

/*****************************  INFO PAGES ******************************/
#memberInfoCont {
    width: 100%;
    padding: 30px 40px;
}
.prodImgThumb {
    max-width: 100px;
    height: auto;
    cursor: pointer;
}
/*****************************  END MEMBER INFO PAGE ******************************/

/*****************************  AD REGISTRATION PAGE ******************************/
#adRegDiv {
    display: inline-block;
    margin: 30px 40px;
    line-height: 20px;
}
#adCost {
	background-color:#FFFFFF;
	border:0;
	font-weight:bold;
}
#adRegDiv input[type=text], #adRegDiv select {
    font-size: 16px;
}
.adCondition {
    display: block;
    margin: 4px;
    padding: 4px;
    background-color: #E6FAFF;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
.conditionText {
    display: none;
    padding: 10px;
    font-weight: normal;
    background-color: #fff;
    line-height: 1.6;
}
#adRegInputCont {
    text-align: center;
    margin-top: 20px;
}
#adRegLeftInputDiv {
    width: fit-content;
    line-height: 2.7rem;
    text-align: right;
}
#adRegLeftInputDiv label {
    margin-right: 30px;
}
#adRegRightInputDiv {
    width: fit-content;
    line-height: 2rem;
    text-align: center;
    vertical-align: top;
}
#adRegRightInputDiv img {
    max-width: 100%;
}
.adRegInputDivTitle {
    display: block;
    width: 100%;
    text-align: center;
}
#adRegLeftInputDiv, #adRegRightInputDiv {
    display: inline-block;
    width: 46%;
    padding: 10px;
    border: 1px solid #ccc;
}
/***************************** END AD REGISTRATION PAGE ******************************/

/***************************** PROFIT REPORT PAGE ******************************/
#prodListCont {
    width: 100%;
    padding: 30px;
    text-align: center;
}
/***************************** END PROFIT REPORT PAGE ******************************/


/***************************** CREATE CARDS PAGE ******************************/
#cardPreviewText {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    -o-transform: translate(-50%) rotate(-6deg);
    -ms-transform: translate(-50%) rotate(-6deg);
    -webkit-transform: translate(-50%) rotate(-6deg);
    -moz-transform: translate(-50%) rotate(-6deg);
    transform: translate(-50%) rotate(-6deg);
    
}
#txtCardBack {
    width: 340px;
    height: 191px;
    text-align: center;
    line-height: 1.5em;
    font-size: 20px;
    font-family: sans-serif;
    letter-spacing: 3px;
    resize: none;
    border: none;
}
/***************************** END CREATE CARDS PAGE ******************************/

/***************************** STALL PAYMENT PAGE - PAYMENT GATEWAY ******************************/
#paymentContainer {
    max-width: 100%;
    text-align: center;
    color: #000;
    line-height: 1.8em;
}
#paymentDetails {
    display: inline-block;
    vertical-align: top;
}
.cardDetailsCont {
    width: fit-content;
    display: inline-block;
    margin: 0 0 0 40px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    background: rgb(249,249,249);
    background: linear-gradient(179deg, rgba(249,249,249,1) 0%, rgba(230,230,230,1) 100%);
    -webkit-box-shadow: -3px 4px 5px -4px rgb(0 0 0 / 60%);
    -moz-box-shadow: -3px 4px 5px -4px rgba(0,0,0,0.75);
    box-shadow: -3px 4px 5px -4px rgb(0 0 0 / 75%);
}
#confirmationDiv {
    min-width: 50%;
    height: 60%;
    padding: 20px;
    background-color: #fff;
    border: 4px solid #aa483b;
}
/***************************** END STALL PAYMENT PAGE ******************************/

/***************************** PAYMENT GATEWAY ******************************/
#paymentContainer {
    width: 100%;
    padding-top: 30px;
    background-color: #E6FAFF;
}
#frmEwayInput {
    text-align: left;
    line-height: 2.8rem;
}
#frmEwayInput input[type=submit] {
    text-align: center;
    margin-top: 20px;
    width: -webkit-fill-available;
}
.cardDetailsCont img {
    max-width: 120px;
    margin-bottom: 14px;
}
/***************************** END PAYMENT GATEWAY ******************************/

/***************************** GENERAL SMALL DEVICE STYLES *****************************/

/*  Up to medium devices ipads, tablets etc. */
@media screen and (max-device-width: 800px) {
    #prodDetCont a:visited {
        color: #3362A3;
    }
    .prodTN {
        margin: 4px;
        width: 105px;
        height: 140px;
    }
    .prodTN img {
        position: unset;
        -o-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }
    #ProdDetLeftDiv {
        display: block;
        width:100%;
        height: fit-content;
    }
    #ProdDetRightDiv, #prodEditRightDiv {
        display: block;
        width: 98%;
        padding: 20px 0;
        height: fit-content;
        line-height: 2em;
    }
    #ProdDetRightDiv input[type=button], #prodEditRightDiv input[type=button], #ProdDetRightDiv input[type=submit], #prodEditRightDiv input[type=submit] {
        font-size: 1.2em;
    }
    #ProdDetRightDiv img {
        width: 200px;
    }
    #prodAltDesc {
        margin: auto;
        line-height: 2.4rem;
    }
    #costCont {
        line-height: 60px;
    }
    .prodDetails {
        display: inline-block;
        margin-left: 30px;
        font-family: serif;
        font-weight: normal;
        color: #000;
    }
    #detailsItemEdit {
        padding: 3px;
        font-size: 1.2em;
        font-weight: bold;
    }

    /*Item details page*/
    #confirmDetails {
        line-height: 2.4rem;
    }
    #buyItDiv {
        margin-top: 20px;
    }
    #buyItContainer {
        text-align: left;
    }
    .cancelBtn {
        margin-left: 20px;
        font-size: 1.2em;
    }
    #confirmPopupDiv {
        padding: unset;
    }
    #confirmPopupCont {
        max-width: 100%;
        margin: 20px 10px;
        padding: 10px;
        font-size: 1.2rem;
    }
    #priceStar01 {
        height: 300px;
        margin: 40px auto;
    }
    #priceStarTitle {
        font-size: 2rem;
    }
    #priceStarPrice {
        margin: 34px 0;
        font-size: 3.5rem;
    }
    #priceStarDelivery {
        font-size: 2.4rem;
    }
    .otherProd {
        min-height: 144px;
        opacity: 0.8;
        filter: alpha(opacity=80);
    }
    #attribCont {
        margin-top: 18px;
        line-height: 3rem;
    }

    /* Upload item page */
    #uploadDiv1 {
        border-right: none;
    }
    .uploadContainer ul {
        line-height: 2rem;
    }
    #topTwoDivs {
        display: inline-block;
        justify-content: normal;
        width: fit-content;
        margin: auto;
    }
    .uploadContainer {
        padding: 30px 0 0 10px;
    }
    #uploadDiv1 {
        width: 100%;
        height: fit-content;
        margin: 30px 0;
        text-align: left;
        line-height: 1rem ;
    }
    #uploadDiv2 {
        width: 100%;
        height: fit-content;
        margin: 30px 0;
        text-align: left;
        line-height: 3rem;
    }
    #catSelectorCont label:last-of-type {
        display: none;
    }
    .uploadBtnWrapper {
        width: 94px;
        height: 94px;
        margin: 10px;
    }
    .imgSpecs {
        text-align: left;
    }
    #prodTitleDesc {
        width: 90%;
        padding-right: 0;
        border-right: unset;
    }
    #prodTitleDesc input[type=text] {
        width: 100%;
    }
    #titleProd {
        width: 90%;
    }
    #prodDesc {
        width: 90%;
        height: 200px;
    }
    .titleDescInput  {
        width: 100%;
    }
    .uploadBtnCont {
        text-align: center;
        margin: 30px 0;
        padding: 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    .imgSpecs ul {
        line-height: 2rem;
    }
    #uploadDiv5 {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
    #selPackageCont {
        display: block;
    }
    .packSelBtnDur {
        font-size: 2rem;
    }
    .packSelBtnDollar {
        font-size: 1.5rem;
    }
    .packSelBtnPrice {
        font-size: 2.4rem;
    }
    #uploadPostDiv input, #costCont input {
        max-width: 100px;
    }
    /*------------------*/

    /* Stall display page */
    #stallHeadRightDiv {
        padding-top: 10px;
    }
    #stallInfoDiv {
        flex: 0 0 100%;
        padding: 4px;
    }
    #stallContentSection {
        padding: 6px 10px 24px 10px;
        background-size: 114px;
    }
    #stallPageTitleCont {
        width: 97%;
    }
    #stallHeadLeftDiv {
        padding: 6px 10px 6px 10px;
    }
    #stallHeadLeftDiv img {
        max-width: 114px;
    }
    #stallSearchInput {
        width: 260px;
    }
    #stallPageTitle {
        font-size: 5.6vw;
    }
    #searchBtn {
        padding: 2px 4px;
        font-size: 1.2rem;
    }
    #stallPageSubTitle {
        width: inherit;
    }
    #addItems {
        font-size: 2rem;
        width: 98%;
        line-height: 3rem;
    }

    /* Payment gateway page */
    #paymentDetails {
        display: block;
    }
    .cardDetailsCont {
        display: block;
        margin: 20px auto;
    }

    /* Stall setup page */
    .inputCont {
        border-bottom: 2px solid #ccc;
        margin: 40px 12px;
    }
    .txtStallDesc {
        width: 100%;
        height: 200px;
        font-size: 1rem ;
    }
    #stallDispPreviewCont {
        width: 100%;
        height: 120px;
        background-size: initial;
    }
    #stallDispPreview {
        font-size: 7vw;
    }
    .siteNavDiv {
        font-size: smaller;
    }
    #selStallFont, #selStallFontColour {
        font-size:1.2rem;
    }
    #stallBGPopup {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        background-color: #fff;
    }
    #stallBGPopup img {
        max-width: 172px;
        max-height: 172px;
    }
    #stallAppBgButton {
        background-size: cover;
    }
    #setupErrorMsg {
        display: block;
        margin: 10px;
    }
    /*------------------*/
    
    /* Stall payment page */
    #packSelBtnCont {
        display: block;
    }
    .selPackageDiv {
        display: block;
        min-height: 170px;
        width: -webkit-fill-available;
        line-height: 2rem;
    }
    #confirmationDiv {
        min-width: 84%;
    }
    /*------------------*/
    
    /* Sidebars */
    .rightNavBar, .rightNavBar_rb {
        display: none;
    }
    #sellerInfo a {
        display: block;
    }
    #otherProdsCont {
        font-size: 1.2rem;
    }
    .otherProd {
        text-align: center;
    }
    .otherProd img {
        max-width: 120px;
        max-height: 100px;
    }
    .opPrice {
        display: block;
        margin-left: 8px;
        vertical-align: super;
    }
    .leftNavBar {
        width: 250px;
        padding: 20px 10px;
        font-size: 1.6rem;
    }
    #adTitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
  	.leftNavBar hr {
	    margin: 26px 0;
	}
	.alertFlag {
        padding: 0 10px;
        height: 25px;
        line-height: 1.8rem;
	}
	.prodBoxContainer {
	    margin: 6px;
	}

    /* Sell My Bits Page */
    #cardPreviewText_smb {
        font-size: calc(19vw * .3);
    }
    #cardPreviewText {
        margin-top: -3px;
    }
    /*--------------*/

    /* Ad Registration Page */
    #adRegDiv {
        margin: 10px;
        width: 96%;
        line-height: 1.6rem;
    }
    #adRegLeftInputDiv, #adRegRightInputDiv {
        display: block;
        width: 95%;
    }
    #adRegLeftInputDiv {
        line-height: 2.6rem;
    }
    #adRegLeftInputDiv label {
        margin-right: 0;
    }
    /*--------------*/

    /* Stall Item List Page */
    .itemCostDiv {
        width: min-content;
        line-height: 1.6rem;
    }
    .tblLink img {
        max-width: 90px;
        max-height: 90px;
    }
    div.itemCostDiv > .tblLink:first-child {
        margin-bottom: 10px;
    }
    /*--------------*/

    /* Search Page */
    #prodSearchInfoBar {
        display: block;
        line-height: 2rem;
    }
    .searchResCont {
        width: 100%;
    }
    /*--------------*/
}


/* UP TO SMALL device max width */
@media screen and (max-device-width: 400px) {
    .pageCont {
        width: 100vw;
  	    padding-bottom: 40px;
    }
    .mainContentSection {
        padding: 10px 6px;
    }
    .mainContentSection  select {
        width: fit-content;
        height: 44px;
    }
    label {
        font-size: 1.1rem;
        font-family: sans-serif;
        letter-spacing: 1.4px;
    }
    input[type=checkbox] {
        transform: scale(1.6);
    }
    input[type=textbox] {
        font-size: 1.1rem;
        letter-spacing: 1.2px;
    }
    input[type=button], input[type=submit], input[type=reset] {
        padding: 6px;
        font-size: 1.1rem;
        letter-spacing: 1.2px;
        white-space: pre-wrap;
    }
    input[type=text], input[type=number], input[type=password], input[type=date], select {
        height: 28px;
        padding: 2px 4px;
        font-size: 1.1rem;
    }
    table {
        font-size: 1.2rem;
    }

    /* Website main header */
    .signinCont {
        top: 40%;
        width: 84%;
    }
    .signinCont #inputDiv {
        text-align: inherit;
    }
    #headerRB {
        min-height: 115px;
        padding: 0;
        background-size: 350%;
        background-position: center top;
  	}
    #headerMenuBar {
        padding: 0;
    }
    .headerMenuButton {
        width: 30%;
        padding:10px 3px;
    }
    .headerDropMenuItem {
        line-height: 1.8rem;
    }
    .headerMenuButton .alertFlag {
        padding: 0 5px;
        height: 21px;
        line-height: 1.4rem;
    }
    #subHeaderLeftDiv {
        width: unset;
        padding-bottom: 10px;
    }
    #subHeaderRightDiv {
        display: block;
        width: fit-content;
        margin: auto;
        line-height: 3rem;
    }
    #subHeaderRightDiv select {
        height: 34px;
    }
    #leftSearchContChrome, #rightSearchContChrome {
        display: none;
    }
    #searchCont {
        max-width: 90%;
        margin: 8px 10px 0 10px;
        padding: 5px 6px 10px 6px;
    }
    #searchImgCont {
        width: 90px;
        height: 76px;
        margin: 8px 10px 0 0;
        background-image: url(/images/logosquare-trans02.png);
    }
    #searchDiv {
        padding-top: 14px;
        text-align: left;
    }
    #searchDiv form {
        margin-top: 8px;
    }
    #headSearchInput {
        max-width: 170px;
        font-size: initial;
        height: 24px;
    }
    #rbHeaderBtn {
        padding: 3px 6px;
        margin: 0 0 0 8px;
    }
    .headerSeparator {
        display: none;
    }
    /*-----------------*/

    #waitingDiv {
      	font-size: 2.6rem;
    }
    #waitingDiv img {
      	min-width: 400px;
    }
    .tblPostCol {
        display: none;
    }
    .printBtn {
        height: 50px;
        letter-spacing: 4px;
    }
    #deleteBtn, .deleteBtn, #submitBtn, .submitBtn {
        height: 50px;
        margin: 0 5px;
        font-weight: normal;
    }
    #dialogboxhead {
        font-size: 37px;
        font-family: sans-serif;
        letter-spacing: 0.2rem;
    }
    #gboxbody {
        font-size: 2.8rem;
        letter-spacing: 0.2rem ;
    }
    #dialogboxfoot button {
        margin: 20px 30px;
        padding: 4px 30px;
        font-size: 2.6rem;
    }
    #mrbTabMessage {
        font-size: 1.2rem;
    }
    #messageActionDiv a {
        font-size: 1.4rem;
    }
    #messageHeaderDiv {
        line-height: 1.6rem;
    }
    #messageBodyDiv {
        padding: 10px 0;
        line-height: 2.6rem;
    }
    #messagesCont {
        width: 98%;
    }
    #chkSelAll {
        display: block;
        width: fit-content;
        height: fit-content;
        margin: 10px;
    }
    .messageRowDetails img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .trash img {
        max-width: 30px;
    }
    .reAdvBtn {
        width: fit-content;
    }
    .pagination {
        margin: 30px auto 30px auto;
    }
    .prodBoxContainer {
        width: 170px;
    }
    .prodBox {
        width: 170px;
        line-height: 2rem;
    }
    .prodBoxDetails {
        position: relative;
        display: block;
        min-height: 114px;
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
    .price {
        position: absolute;
        left: inherit;
        transform: none;
        font-size: 1.2rem ;
        bottom: 10px;
    }
    #addItems {
        font-size: 2rem;
        width: 98%;
        line-height: 3rem;
    }
    .btnItemEdit {
        font-size: 1.2rem;
    }
    .transStatusMulti, .transStatus {
        display: block;
        width: 90%;
    }
    .frmRemKeywords input[type=submit] {
        padding: 0;
        margin: 0 0 0 6px;
        font-size: 1rem;
        background-color: transparent;
        color: #dc0000;
    }
    .wantedKeywords {
        margin: 4px 0;
        padding: 4px;
    }
    #wantedItemsListDiv {
        column-count: 1;
    }
    #catListCont {
        column-count: 2;
        column-gap: 30px;
    }
    .catListHeading {
        font-size: initial;
        line-height: 1.2rem;
    }
    .catListSection {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .stallListBox {
        font-size: initial;
    }

    /* Wathced items page */
    .watchedImgCont {
        width: 26%;
        vertical-align: top;
    }    
    .watchedImgCont img {
        max-width: 100%;
        max-height: unset;
    } 
    .watchedDetails {
        display: block;
        min-width: unset;
        margin-left: 10px;
        margin-right: 0;
    }
    /*-----------------*/

    /* Admin page */
    .adminPageButton {
        font-size: 1.2em;
        padding: 4px 8px;
    }
    /*-----------------*/
    
    /* Sell my bits */
    .stallTitle {
        line-height: 2rem;
    }
    #stallStatusCont {
        display: block;
    }
    .stallStatusbox {
        display: block;
        width: 92%;
        margin: 10px auto;
        border: 2px solid #999;
    }
    .areaTitle {
        min-height: unset;
        font-size: 1.4rem;
    }
    #cardPreviewText_smb {
        font-size: calc(23vw * .3);
    }
    #cardPreviewText {
        margin-top: -30px;
    }
    #txtCardBack {
        height: 150px;
        font-size: 1rem;
    }
    /*-----------------*/

    /* Stall setup page */
    .messagePopupInner, #stallSetupPopupInner {
        width: 90%;
        padding: 10px;
    } 
    #fontButton {
        width: 184px;
        height: 24px;
        padding: 2px 6px;
    }
    #fontMenuDiv {
        left: 0;
        columns: 2;
        padding: 4px;
        border: 3px solid #914d4d;
    }
    .stallFontDiv {
        border-bottom: 1px solid #eee;
    }
    #frmStallSetup .inputCont {
        margin: 20px 12px;
        border-bottom: none;
    }
    #postalAddressDiv br {
        display: none;
    }
    #displayPostAddress br {
        display: block;
    }
    #postalAddressDiv, #bankInfoDiv, #businessInfoDiv {
        text-align: left;
    }
    #selShop {
        margin-top: 10px;
    }
    #submitCont {
        line-height: 1.4rem;
    }
    #newAddressDiv {
        text-align: left;
    }
    #pickupSel {
        margin: 0;
        padding: 0 0 20px 0;
    }
    .horDivs {
        padding: 6px;
        margin: 6px;
    }
    #pickupDaysDiv {
        text-align: left;
    }
    .timeSelectors {
        display: block;
        margin-left: 40px;
    }
    #selPostalCountry {
        display: block;
    }
    /*------------------*/

    /*Item details page*/
    #prodTitle {
        font-size: 2rem;
    }
    #prodAltDesc {
        padding-left: 20px;
        line-height: 2rem;
    }
    #priceStar01 {
        width: 90%;
        max-width: none;
        height: 260px;
        margin: 10px auto;
        clip-path: polygon(39% 0%, 55.05% 11.75%, 69.05% 1.02%, 77.55% 16.77%, 96% 11.27%, 87.8% 31.02%, 100% 34.77%, 93.3% 49.27%, 100% 63.48%, 88.55% 69.52%, 94% 92%, 77.75% 85.35%, 68.55% 95%, 53.55% 85.52%, 34.55% 97.27%, 28.3% 88.02%, 7.1% 96.55%, 14.4% 79.23%, 0% 72.27%, 6.05% 57.52%, 0% 47.27%, 8.45% 38.77%, 0% 23.02%, 10.8% 17.27%, 8% 3.27%, 28.75% 13.75%);
    }
    #priceStarInner {
        width: 90%;
    }
    #priceStarTitle {
        font-size: 1.6rem;
    }
    #priceStarPrice {
        margin: 20px 0;
        font-size: 3rem;
    }
    #priceStarDelivery {
        font-size: 1.6rem;
    }
    #ProdDetRightDiv img {
        width: 190px;
    }
    /*------------------*/
    
    /* Stall display page */
    #stallPageSubTitle {
        font-size: 1.6rem;
    }
    #inactiveStallMessage {
        font-size: 1.2rem;
    }
    #stallInfoLeft {
        display: none;
    }
    #stallInfoMiddle {
        width: -webkit-fill-available;
        padding: 0;
        font-size: 0.9rem;
        border-left: none;
        border-right: 1px solid #ccc;
    }
    #stallPageTitle {
        font-size: 7vw;
    }
    /*------------------*/

    /* Other items banner */
    .bannerDiv {
  	    width: 100%;
    }
    #bannerEmpCont {
        display: block;
        max-width: none;
    }
    .bannerTitle {
        font-size: 1.2em;
    }
    .bannerProdCont {
        margin-bottom: 12px;
        font-size: 1em;
        letter-spacing: 3px;
    }
    .bannerProdCont img {
        max-width: 120px;
        max-height: 90px;
    }
    /*------------------*/

    /* Sales profit report page */
    #prodListCont {
        padding: 10px;
    }
    #yearSelect {
        text-align: center;
    }
    /*------------------*/

    /* Site footer bar */
    #footerBarDiv {
        display: flex;
        justify-content: space-evenly;
    }
    .footerStar {
        margin: 0;
    }
    /*------------------*/
    .wantedItemDiv div:last-child {
        max-width: 214px;
        vertical-align: top;
        line-height: 1.6rem;
    }
    #accDetailsDiv {
        padding: 20px 30px;
        width: fit-content;
    }
    #adBanner {
        display: block;
        margin: 10px 0 50px 0;
    }
    #adBanner img, #adBanner source {
        margin: 10px auto;
    }

    /* Purchase History page */
    .transCont {
        /*font-size: 2rem;*/
        line-height: 2rem;
        border-bottom: 10px solid #a5a5a5;
    }
    .transSectHeader {
        font-size: 1.1rem;
    }
    .salePurchCount {
        font-size: 1.1rem;
    }
    .transItemImgSingle img {
        max-width: 80px;
        max-height: 80px;
        cursor: zoom-in;
        margin-right: 10px;
    }
    #messageInputDiv {
        width: 90%;
    }
    /*------------------*/

    /* Pagination Prev & Next buttons */
    .pagination a:last-child, .paginateNextBtn, .pagination a:first-child, .paginatePrevBtn {
        padding: 0 6px;
    }
    /*------------------*/
}

/*  Just medium devices ipads, tablets etc. */
@media screen and (min-device-width: 401px) and (max-device-width: 800px) {
    .pageCont {
        padding-bottom: 40px;
    }
    label {
        font-family: sans-serif;
        letter-spacing: 1.4px;
    }
    input[type=checkbox] {
        transform: scale(2);
    }
    input[type=textbox] {
        font-size: 1.4rem;
    }
    input[type=button], input[type=submit] {
        padding: 6px 10px;
        font-size: 1.4rem;
        letter-spacing: 2px;
        white-space: pre-wrap;
    }
    input[type=text], input[type=number], input[type=password], input[type=date], select {
        font-size: 1.1rem;
    }
    .headerSeparator {
        display: none;
    }
    #searchImgCont {
        width: 250px;
        height: 52px;
        margin: 14px 10px 14px 0;
    }
    #searchCont {
        max-width: 94%;
    }
    #searchDiv {
        margin-left: 20px;
        text-align: left;
    }
    #rbHeaderBtn {
        margin: 4px;
        padding: 3px 8px;
        font-size: 1.1rem;
    }
    #paymentContainer {
        font-size: 1.2rem; 
    }
    #deleteBtn, .deleteBtn, #closeStallBtn, #btnDeactivate {
        padding: 6px 10px;
        font-size: 2rem;
        white-space: pre-wrap;
    }
    #messageActionDiv a {
        font-size: 1.4rem;
    }
    #messageHeaderDiv {
        font-size: 1.2rem;
        line-height: 2.4rem;
    }
    #messageBodyDiv {
        font-size: 1.2rem;
        padding: 30px 10px;
        line-height: 2.4rem;
    }
    .tblPostCol {
        display: none;
    }
    #waitingDiv {
      	font-size: 2.4rem;
    }
    #waitingDiv img {
      	min-width: 400px;
    }
    #deleteBtn, .deleteBtn, #submitBtn .submitBtn {
        height: 36px;
        font-weight: normal;
    }
    #dialogboxhead {
        font-size: 30px;
        font-family: sans-serif;
        letter-spacing: 0.2rem;
    }
    #gboxbody {
        font-size: 2.4rem;
        letter-spacing: 0.2rem ;
    }
    #dialogboxfoot button {
        margin: 14px 20px;
        padding: 4px 20px;
        font-size: 2.4rem;
    }
    .reAdvBtn {
        width: fit-content;
    }
    .pagination a {
        font-size: 1.2rem;
    }
    .pagination {
        margin: 30px auto 30px auto;
    }
    .messageRowDetails img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .trash img {
        max-width: 40px;
    }
    .price {
        padding-bottom: 14px;
        font-size: 1.8rem;
    }
    .salePurchCount {
        font-size: 1.6rem;
    }
    .transCont {
        /*font-size: 1.5rem;*/
        line-height: 1.8rem;
        border-bottom: 10px solid #a5a5a5;
    }
    .tblContent td {
        line-height: 2.2rem;
    }
    .tblLink img {
        max-width: 84px;
        max-height: 90px;
    }
    .imgFeaturedThumb {
        max-width: unset;
        max-height: unset;
        height: 130px;
    }
    .prodBoxDetails {
        min-height: 134px;
        padding-top: 10px;
    }
    .frmRemKeywords input[type=submit] {
        padding: 0;
        margin: 0 0 0 6px;
        font-size: 1rem;
        background-color: transparent;
        color: #dc0000;
    }
    .wantedItemDiv {
        line-height: 1.8rem;
    }
    .wantedItemDiv img {
        vertical-align: top;
    }
    #adBanner {
        display: block;
    }
    #adBanner img, #adBanner source {
        width: 80%;
        margin: 10px auto;
    }
}

  /* PRINTING STYLES*/
@media print {
  	#printTable, #print_div {
    	width: 100%;
       	font-size: 2rem;
      	font-weight: bold;
		letter-spacing: 1.2px;
  		color: #404040;
      	border: 2px solid #666;
	}
    .noPrint {
        display: none;
    }
}
/***************************** END GENERAL SMALL DEVICE STYLES *****************************/