:root {
	--swiper-theme-color: rgba(0,0,0,0.6) !important;
	--background-dark: #FEE09F;
	--background-shade1: #E9E0CC;
	--background-light: #FFF8E8;
	--background-shade2: #f2ecddcc;
	--border-dark: #c7c2b6;
	--border-light: #DBD1BA;
	--link-blue: #5648FF;

}
@supports (-webkit-touch-callout: none) {
	body {
	  
	}
  }

body {
	background-color: var(--background-dark);
	margin: 0;
	padding: 0;
	padding-left: 0.5em;
	padding-right: 0.5em;
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
}

img{border:0px;}

a:link{color: var(--link-blue); text-decoration: none; }
a:visited {color: var(--link-blue); text-decoration: none; }
a:hover {color: var(--link-blue); text-decoration: underline;}
a:active {color: blue; } 

input[type="text"] , input[type="password"] , select , textarea {
	font-family: Arial, Sans-Serif;
	font-size: 1em;
	margin-bottom: 0px;
	padding: 0.125em;
	border: 1px solid var(--border-dark);
}

button {
	border-radius: 0.25em;
}

.bigCheckoutButton {
	position: relative;
	display: block;
	margin: 0.5em auto;
	font-weight: bold;
	font-size: 1.2em;
	width: 90%;
	min-width: 10em;
	height: 5em;
}

/* ------------------------------------ */

.highlightBox {
	display: flex;
    justify-content: space-around;
    padding: 1em;
    margin: 0.5em;
    
    border: 3px solid rgba(0, 0, 0, 0.4);
    background-color: rgba(205, 205, 50, 0.3);
    border-radius: 0.5em;
}


.adminError {
	position: relative;
	background-color: rgba(255,0,0,0.6);
	border: 2px solid rgba(0,0,0,0.8);

	margin: 0.25em;
	margin-bottom: 0.5rem;
	
}

.dbError {
	font-size: 2em;
}

.dbError h3 {
	font-weight: bold;
	margin: auto 0.5em;
	
}

.adminError .msgbox {
	background-color: rgba(255,255,255,0.85);
	border-radius: 1em;
	padding: 1em;
	margin: 0.25em;

	font-size: 1rem;
}
/* ------------------------------------ */
/* ------------------------------------ */


.admThemeErr {
	position: relative;
	display: none;

	background-color: rgba(255,0,0,0.5);
	border: 2px solid rgba(0,0,0,0.8);

	margin: 0.25em;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;

	padding: 0.25em;
	font-weight: bold;
}

.admThemeNotice {
	background-color: rgba(0, 183, 255, 0.6);
}

/* ------------------------------------ */




@keyframes aniFlashLine-yellow {
	0%  {background-color: inherit; }
	100%  {background-color: yellow;}
}
 /* - - - - -*/

.flashYellow {
	animation-name: aniFlashLine-yellow;
	animation-duration: 0.8s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
/* ------------------------------------ */

@keyframes aniFlashLine-red {
	0%  {background-color: inherit; }
	100%  {background-color: rgba(255,25,0,0.33);}
}
 /* - - - - -*/

.flashRed {
	animation-name: aniFlashLine-red;
	animation-duration: 0.8s;
	animation-iteration-count: 5;
	animation-direction: alternate;
	animation-fill-mode: forwards;
}

/* ------------------------------------ */

@keyframes aniFlashLine-green {
	0%  {background-color: inherit; }
	100%  {background-color: rgba(174, 255, 174,0.65);}
}
 /* - - - - -*/

.flashGreen {
	animation-name: aniFlashLine-green;
	animation-duration: 0.8s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

/* ------------------------------------ */
/* ------------------------------------ */
.status-O {
    background-color: #9ffee066;
}

.status-B {
    background-color: #f4fe9f69;
}

.status-C {
    background-color: #74c2f069 !important;
}

.status-D {
    background-color: #e0356069;
}

.status-V {
    background-color: #6e6e6e69;
}

.status-Q {
    background-color: #b146db69 !important;
}

/* ------------------------------------ */

/*
.bg{background:#E9E0CC;}
.bg1{background:#f2ecdd;}
.bg2{background:#FBF4E5;}
.bg3{background:#DBD1BA;}	
*/

.itemInfoNA {
	font-size: 0.8em;
	font-variant: small-caps;
	font-style: italic;
}

.wrapper1{
	border: 3px solid var(--border-light);
	background-color: var(--background-light);
	border-radius: 0.5em;
}

.elementPrototype {
	display: none;
}

/* --------------------------------------------------------------------------------------------- */

.loadingOverlay {
	position: absolute;
	
	top: 0;
	left: 0;
	
	height: 100%;
	width: 100%;
	z-index: 1000;
}

.loadingOverlayContents {
	height: 100%;
	width: 100%;
	
	background-color: rgba(0,0,0,0.4);
	
	background-image: url('/images/working.gif');
	background-repeat:no-repeat;
	background-position: center center;
}

/* ----------------------------------------------------------------- */

.modalBackground {
	position: absolute;
	z-index: 1000;
	
	background-color: rgba(0,0,0, 0.8);
	
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	
	--swiper-theme-color: rgba(0,126,255,0.7) !important;

	display: flex;
	justify-content: center;
	align-items: center;
}

.modalBackground .btnClose {
	position: absolute;
	
	top: 0.95rem;
	right: 0.95rem;
	
	font-size: 4rem;
	
	color: red;
	font-weight: bold;
	z-index: 1002;
	
	font-family: Verdana, sans-serif;
}
	
.modalBackground .modalContent {
	z-index: 1001;
	position: relative;
	
	
}

.modalContent .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}


/* ----------------------------------------------------------------- */
.swiper-container {
	position: relative;
	overflow: hidden;
}

.swiper-wrapper {
	
}

.swiper-slide {
	cursor: all-scroll;
}


/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

.box404 {
	position: relative;
}

.box404 .twoCol404 > div {
	flex-grow: 1;
}

/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
.styleyOffset {
	position: absolute;
	
	transform: rotate(-20deg);
	
	font: 400 1.5em 'Great Vibes', Helvetica, sans-serif;
	color: #000;
	text-shadow: 4px 4px 3px rgba(0,0,0,0.1);
	
	margin-left: 1.5em;
	top: -1.00em;

	z-index: 20;
	
}

.styleyOffset span {
	position: absolute;
	font-size: 0.8em;
	top: -0.8em;
	left: -1em;
}
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

.classDisplayError {
	display: flex;
	justify-content: center;
	border: 2px solid #666;
	border-radius: 0.5em;
	
	background: #CCC;
	
	padding: 1em;
	font-size: 1.5rem;
	font-weight: bold;
	
	margin: 2em auto;
	max-width: 75%;
}
/* --------------------------------------------------------------------------------------------- */

.codeText {
	font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
	white-space: pre;
	overflow-wrap: normal;
	overflow-x: scroll;
}

/* --------------------------------------------------------------------------------------------- */
#boxDevMode {
	position: fixed;
	z-index: 999;
	margin: 2px;
	padding: 2px;
	
	background-color: #f2ecddcc;
	border: 1px solid #FFFFFFCC;
}

/* --------------------------------------------------------------------------------------------- */
/* header */

#boxPageHeader {

}

#boxPageHeader .logoBar {
	position: relative;
	
	display: flex;
	align-items: center;

}

#boxPageHeader .logoBar > *:nth-child(2) {
	flex-grow: 1;
	text-align: center;
}

#boxPageHeader .logoBar > *:nth-child(2) img {
	width: 90%;
	max-width: 600px;
}

#boxPageHeader .logoBar .logoImg {
	height: 3em;
}

#boxPageHeader .contactBar {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	list-style-type: none;
	
	background-color: black;
	color: white;
	font-weight: bold;

	margin: 0.5em 0;
	padding: 0.5em;
	
	border-radius: 0.25em;
}


#boxPageHeader .contactBar .csFreeShipping {
	font-variant: small-caps;
	text-shadow: -2px 2px 3px #8080ff;
}

#boxPageHeader .contactBar .csHours {
	font-size: 0.8em;
}

#boxPageHeader .contactBar .csHours span {
	white-space: nowrap;
}


#boxPageHeader .nbContainer {
	position: relative;
	display: flex;
	
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5em;

	z-index: 10;
}

#boxPageHeader .nbContainer .navRivet {
	position: relative;
	
	height: 2em;
	z-index: 9;
	
	left: 0.4em;
}

#boxPageHeader .nbContainer .navRivet-right {
	/* transform: rotate(180deg); */
	left: -0.4em;
}

#boxPageHeader .navBar {
	position: relative;

	background-color: black;
	flex-grow: 1;
	
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	
	justify-content: space-evenly;
	align-items: center;
	
	color: white;
	/*font-size: 1.25em; */
	
	font-weight: bold;
	padding: 0.125em;
	/* border: 1px solid #666; */
	border-left: none;
	border-right: none;
	
}

#boxPageHeader .navBar > * {

	white-space: nowrap;
}

#boxPageHeader .navBar a {
	color: white;
}


/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

/* --------- */
/* cart item list (checkout / view cart)*/
.boxItemList {
	position: relative;
}

.boxItemList table {
	width: 100%;
	border-spacing: 0;
}

/* --------- */

.boxItemList table thead,
.boxItemList table tfoot
{
	text-align: center;
	font-weight: bold;
	background-color: var(--border-light);
}

.boxItemList table tr {
	position: relative;
}
.boxItemList table tbody tr {
    margin-bottom: 0.125em;
    vertical-align: bottom;
}

.boxItemList table tbody tr:nth-child(even){
    background-color: #dbd1ba7c;
}

.boxItemList table tfoot td:nth-child(2),
.boxItemList table tfoot td:nth-child(4),
.boxItemList table td:nth-child(6),
.boxItemList table td:nth-child(8)
{
    background-color: rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------------ */

.boxItemList tbody td {
	padding: 0.5em 0.25em;
	vertical-align: middle;
}

/* ------------------------------------------------ */

.boxItemList .btnRemoveLine {
    cursor: pointer;
}

.boxItemList .itmPartNum {
    font-weight: bold;
}

.boxItemList .itmPartNum .vendorPart {
    text-align: right;
    font-size: 1rem;

    color: rgb(211, 28, 196);
}

.boxItemList .itmDesc,
.boxItemList .itmDesc input
 {
    min-width: 10em;
    width: 100%;
}

/* ------------------------------------------------ */

.boxShippingAddressNotice {
	position: relative;

	text-align: center;
	font-weight: bold;
	margin: 0.5em;
	padding: 0.25em;
	border: 0.1em solid #007bff;
	background-color: #e7f3ff;
	border-radius: 0.5em;
}

.boxShippingAddressNotice div {
	font-weight: normal;
	font-size: 0.8em;
}


/* ------------------------------------------------ */



.boxItemList .itmQty span {
	display: none;
}

.boxItemList .itmQty input {
	text-align: center;
	width: 5em;
}

/* ---------------------------- */
.boxItemList table tfoot .tPrice {
    text-align: right;
}

.boxItemList table tfoot .tWeight {
    text-align: right;
    font-style: italic;
}



/* ------------------------ */

.boxItemList .itmPrice {
    text-align: right;
	min-width: 5em;
}

.boxItemList .itmPrice input {
    width: 7em;
    
}

.boxItemList .itmQtyOrd,
.boxItemList .itmQtyOrd input,
.boxItemList .itmQtyShip input
{
    text-align: center;
    width: 4em;
}

.boxItemList .itmQtyShip {
  text-align: center;
  white-space: nowrap;
}

.boxItemList .itmQtyShip button {
    margin-left: 0.50em;
    padding: 0.125em;
    font-size: 0.8em;
}

.boxItemList .itmLineTotal {
    text-align: right;
	min-width: 5em;
}

.boxItemList .itmLineWeight {
    text-align: right;
    font-style: italic;
    font-size: 0.8em;

}

/* ---------------------------- */

.boxItemList .addRow {
 /**/
}

.boxItemList .addRow td:nth-child(1) {
    text-align: right;
    padding-right: 1em;
    font-weight: bold;
}

.boxItemList .addRow td:nth-child(2) input {
    width: 30em;
}
/* --------- 

.boxItemList tfoot tr:first-of-type td {
	border-top: 2px solid #999;
}
*/
.boxItemList tfoot td {
	font-weight: bold;
}

.boxItemList tfoot td:nth-child(1) {
	text-align: right;
}



/* ------------------------ */

.boxItemList #btnSCAll {
    color: blue;
    /*text-align: right;*/
    font-size: 0.8em;
}

.boxItemList #btnSCAll:hover {
    text-decoration: underline;
}

.boxItemList table tbody tr input,
input,
select,
textarea,
.selOrderStatusLocked
{
    background-color: rgba(255,255,255,0.4);
    border: 1px solid rgba(0,0,0,0.33);
}

/* ---------------------------- */

.lineMsg {
	/**/
}

.lineMsg.lmPkgQty{
    color: blue;
    font-size: 0.8em;
    font-weight: bold;
}

/* ---------------------------- */

.nonTaxableLI {
    background-color: rgba(217, 255, 0, 0.205) !important;
}

.weightErrorLI {
    background-color: rgba(255, 0, 0, 0.25);
}

/* ---------------------------- */

.priceIcon {
    position: relative;
    height: 16px;

    vertical-align: text-top;
}

/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* content wrapper */


#pageContent {
	background: url('/images/aiddrillbg.gif') var(--background-light) center no-repeat;
	background-attachment: fixed;
	position: relative;
	
	padding: 0.25rem 0.5rem 0.25rem 0.5rem;
	margin: 0;
	
	min-height: 350px;
	box-shadow: 0 0.4em 0.3em 0 rgba(0,0,0,0.75);
	margin-bottom: 1em;
	
}

/* --------------------------------------------------------------------------------------------- */
.fancyButton {
	position: relative;
	border-radius: 0.7em;
	
	border: 2px solid var(--border-light);
	
	box-shadow: 3px 5px 8px -2px rgba(0,0,0,0.5);
	
	background-color: #e9e0cc;
	
	font-weight: bold;
	font-size: 1.1em;
	
	padding: 0.2em 1em;
	font-variant: small-caps;
	
}

/* --------------------------------------------------------------------------------------------- */
/* page footer */

#boxSubFooter {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 3em;
	font-size: 0.8em;

	color: white;
	background-color: black;

	border-radius: 0.5em;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

	padding: 0.5em;
}

#boxSubFooter .generated {
	font-size: 0.7em;
}

#boxSubFooter nav {
	flex-grow: 1;

	position: relative;
	display: flex;
	justify-content: space-evenly;
	align-items: center;

}

#boxSubFooter nav > * {
	padding: 0.5em;
}

#boxSubFooter nav a {
	color: white;
	text-align: center;
}

#boxSubFooter .DrillingExpert {
	display: block;
	font-size: 0.8em;
	text-align: center;
}

/* --------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------ */
.addressInfoContainer {
	position: relative;
	border: 2px solid #CCC;
	border-radius: 0.7em;
	background-color: #f2ecddcc;


	margin: 0.5rem auto;
	flex-grow: 1;
}

.addressInfoContainer h2 {
	margin: 0;
	font-size: 1.5rem;
	font-variant: small-caps;

	background-color: rgba(254, 224, 159, 0.6);
	
	border-radius: 0.7rem;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	
	padding: 1em;
	padding-top: 0.125em;
	padding-bottom: 0.125em;

	display: flex;
	justify-content: space-between;
	align-items: center;
	
}


.addressInfoContainer li
{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	
	list-style-type: none;
	align-items: center;
	
	margin: 0.25rem;
}

.addressInfoContainer li:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.7);
}


.addressInfoContainer span,
.addressInfoContainer label
{
	position: relative;
	
	
	
	text-align: right;
	
	font-variant: small-caps;
	font-weight: bold;
	
	margin-right: 0.25rem;
}

.addressInfoContainer input,
.addressInfoContainer select
{
	flex-grow: 1;
}

/* --------------------------------------------------------------------------------------------- */
input::placeholder,
textarea::placeholder,
select::placeholder
{
	font-variant: small-caps;
	font-size: 0.8em;
	opacity: 0.8;
}
/* --------------------------------------------------------------------------------------------- */
/* */
.lineTshipping,
.lineTtax,
.lineTcoupon,
.lineTtotal
 {
	display: none;
}

.lineTtotal td,
.lineTtotal td span
 {
	font-size: 1.125rem !important;
}

/* --------------------------------------------------------------------------------------------- */


@media only screen and (max-width: 1000px) {
	body {
		padding-left: 0.125em;
		padding-right: 0.125em;
	}

	#boxPageHeader .contactBar {
		display: block;
		text-align: center;
	}

	#boxPageHeader .contactBar li:first-of-type {
		margin-bottom: 0.5em;
	}

	#boxPageHeader .nbContainer .navRivet {
		display: none;
	}

	#boxPageHeader .navBar {
		border-radius: 0.25em;
	}

	#boxPageHeader .navBar a {
		margin: 0.5em;
	}
}


@media print {
	.noPrint {
		display: none !important;
	}

	#pageContent {
		box-shadow: none;
		border: none;
	}

}