/* _global_ */

body {
	background-color: #000;
	color: #fff;
	font-family: 'Gotham', serif;
}

a {
	color: #e24220;
	text-decoration: none;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

/* _text_ */

@font-face {
    font-family: Gotham;
    src: url("../fonts/Gotham-Black.otf") format("opentype");
}

@font-face {
    font-family: Gotham;
    font-weight: bold;
    src: url("../fonts/Gotham-Bold.otf") format("opentype");
}

@font-face {
    font-family: 'Hot Box Metal';
    src: url("../fonts/HotBoxMetal-Regular.ttf") format("opentype");
}

h1, h2, h3, h4, h5 {
	font-family: 'Gotham', sans-serif;
	font-weight: bold;
}

.bold {
	font-weight: 700;
}

.underlineOnly {
	text-decoration: underline !important;
}

.underline {
	text-decoration: underline;
	color: #ccc;
}

.italic {
	font-style: italic;
}

.textGreen {
	color: #45f542;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}

.textHotBoxRed {
	color: #e24220;
}

.textWhite {
	color: #fff;
}

.textBlack {
	color: #000;
}

/*_ backgrounds_ */

.hotBoxRedBG {
	background-color: #e24220;
}

.blackBG {
	background-color: #000;
}

.contentBG {
	background-color: #191919;
}

.homepageBettyBlackBG {
	background-color: #1a1a1a;
}

/* _buttons_ */

.btn-danger {
	background-color: #e24220;
}

/* _position and displays_ */

.posRelative {
	position: relative;
}

.displayNone {
	display: none;
}

.displayBlock {
	display: block;
}

.marginAuto {
	margin: auto;
}

.floatRight {
	float: right;
}

.clear {
	clear: both;
}

/* _navigation_ */

.navbar-toggler, .navbar-toggler:focus {
	border: none;
	outline: none;
	box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
	color: #fff;
}

.navBarBG {
	background-color: #000;
}

.navBarButtonsBG {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#navbarSupportedContent {
	position: absolute;
	background-color: #000;
	top: 60px;
	left: 25px;
	color: #fff;
	padding: 15px;
	z-index: 100000000;
}

.hbNavLink {
	padding: 5px 0;
}

.navigationLogo {
	display: block;
	margin: auto;
	max-height: 65px;
	width: auto;
}

.navIconContainer {
	color: #fff;
	font-size: 1.5em;
}

/* _homepage over 21_ */

.height100 {
	height: 100%;
}

.fill-height {
    min-height: 100%;
    height:auto !important; /* cross-browser */
    height: 100%; /* cross-browser */
}

.over21container {
	background-color: #fff;
	border-radius: 5px;
}

.button21 {
	border-radius: 5px;
	border: 3px solid #db0000;
	color: #db0000;
	text-align: center;
	min-width: 45%;
	font-weight: 500;
}

.button21:hover {
	color: #fff;
	background-color: #db0000;
}

/* _videos_ */

.jumbotronVideo {
	height: 80vh;
    width: 100%;
    object-fit: cover; // use "cover" to avoid distortion
    position: absolute;
}

/* homepage */

.carouselMargin {
	margin-top: 80px;
}

.carouselCaptionBG {
	top: -100px;
	right: 12.5%;
	left: 12.5%;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 10000000;
}

.homepageBettyCarIMG {
	display: block;
	margin: auto;
	max-height: 450px;
	width: auto;
	padding: 150px 0 25px 0;
}

/* _search_ */

.globalSearchInput {
	width: 100%;
	padding: 10px;
	margin: 15px 0;
}

/* _modal_ */

.modal {
	z-index: 20000000 !important;
}

/* _autocomplete_ */

.ui-autocomplete {
	max-height: 225px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	font-weight: bold;
	/*background-color: #000 !important;
	color: #fff !important;*/
}

.ui-autocomplete li:nth-child(odd) {
  /* background-color: rgba(226, 66, 32, 0.2); */
  /* background-color: #e24220; */
  background-color: #ccc;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: none !important;
    border: none;
    font-weight: bold !important;
    color: #000 !important;
    font-style: italic;
} 

.autocompleteIndent {
	padding: 0 0 0 20px !important;
}

/* _browse/cart_ */

.productNoInventory {
	display: none;
}

.soldOutOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	font-weight: bold;
	text-align: center;
	font-size: 36px;
	padding: 30% 0 0 0;
	color: #db0000;
}

	.soldOutText {
		filter: drop-shadow(3px 3px 3px #000);
	}

.alterCart {
  cursor: pointer;
}

.cartItemText {
	font-size: 0.85em;
}

.cartUpdated {
	border: 2px solid #45f542;
	color: #45f542;
	font-style: italic;
	border-radius: 3px;
	text-align: center;
	font-size: 0.8em;
	font-weight: 700;
	display: none;
}

#categoryMenuContainer {
	display: block;
}

#categoriesMobileToggle {
	display: none;
	position: fixed;
	top: 150px;
	left: 0;
	padding: 10px 10px 10px 5px;
	background-color: #000;
	z-index: 3;
	 writing-mode: vertical-lr;
	text-orientation: upright;
	font-size: 24px;
}

#categoriesCloseToggle {
	display: none;
}

.productPageLink {
	color: #fff;
}

	.productPageLink:hover {
		color: #e24220;
		text-decoration: underline;
	}

/* _browse page v2 with category images_ */
.categoryImgBlock {
	position: relative;
	text-align: center;
	font-size: 24px;
	box-sizing: border-box;
	height: 200px;
	margin: 0 auto 100px auto;
}

.categoryImgBlock img {
	max-height: 100%;
}

.categoryImgBlock h4 {
	margin: 20px 0 0 0;
	font-family: Gotham, sans-serif;
}

.childCategoriesButton {
	font-family: Gotham, sans-serif;
	font-size: 24px;
}

.categoryImgBlock > a {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.childCategoriesHeaders {
	position: relative;
	text-align: center;
	box-sizing: border-box;
	margin: 30px auto 30px auto;
}

/* _product page_ */

.mainProductImage {
	margin: auto;
	width: 100%;
}

.mainProductVariantSelect {
	padding: 10px;
	margin-bottom: 10px;
	background-color: #000;
	color: #e24220;
	border: none;
	width: 100%;
	font-family: Gotham, sans-serif;
}

.mrsProductPageWrapper {
	background-color: #e24220;
}

.mrsTopSection {
	padding: 35px 25px 20px 25px;
}

.methodCategoryWrapper, .moistureNotesWrapper {
	border-radius: 15px;
	background-color: #fff;
	color: #000;
	padding: 15px;
}

.methodCategoryWrapper {
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.badgeImages {
	display: block;
	margin: auto;
	width: 150px;
}

.regionBadgeImages {
	display: block;
	margin: auto;
	width: 270px;
}

.terpeneWheelImages {
	display: block;
	margin: auto;
	width: 320px;
}

.mrsMethod {
	text-align: left;
	float: left;
}

.mrsCategory {
	text-align: right;
	float:right
}

.mrsRatingBarWrapper {
	box-sizing: border-box;
	border: 2px solid #000;
	border-radius: 25px;
	padding: 2px;
	margin: 5px 0;
}

.mrsRatingDotOff, .mrsRatingDotOn {
	width: 9%;
	margin: 0 2px 0 0;
	box-sizing: border-box;
	height: 25px;
	border-radius: 20px;
	float: left;
}

.mrsRatingDotOff {
	background-color: pink;
}

.mrsRatingDotOn {
	background-color: #e24220;
}

.mrsMidSection {
	width: 100%;
	background-color: #fff;
	padding: 25px;
	color: #000;
}

.mrsFooter {
	/* will need to add the white flames as the footer background image here */
	font-size: 16px;
	font-family: sans-serif;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 25px 20px 25px;
}

/* _cards_ */

.cardSmallerText {
	margin-bottom: 5px;
}

.cardDeleteButton {
	position: absolute;
	top: 10px;
	right: 10px;
	color: red;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

/* _datatables_ */

.dtHiddenData {
	visibility: hidden;
	position: absolute;
}

.hbCopyAddress, .hbCopyPhone {
	font-weight: bold;
	padding: 5px;
	cursor: pointer;
}

/* _checkout_ */

.checkoutNotesInput {
	max-width: 500px;
	width: 100%;
	min-height: 120px;
	padding: 10px;
}

/* _forms and inputs_ */

.paddedCheckbox {
	height: 20px;
	width: 20px;
}

#emailAddressInvalid, #referralEmailInvalid {
	display: none;
	padding: 5px;
	box-sizing: border-box;
	border: 2px solid #e24220;
}

/* honey pot field */

.requiredField {
	display: none;
}

/* _alerts and errors_ */

#errorWrapper {
	border: 4px solid red;
	color: red;
	display: none;
}

#errorContainer {
	border: 4px solid red;
	color: red;
	padding: 10px;
}

	#errorWrapper p, #errorContainer p {
		margin-bottom: 0;
	}

.textInputErrorBorder {
	border: 4px solid red;
}

.textInputSuccessBorder {
	border: 4px solid #45f542;
}

.checkboxErrors {
	border: 4px solid red;
	padding: 10px;
}

/* _accordion_ */

.accordion, .accordion-flush {
	border: none !important;
}

.accordion-button {
	box-sahdow: none !important;
	border: none  !important;
	background-color: #000 !important;
	color: #e24220 !important;
}

.accordion-button::after {
	display: none;
}

.accordion-item {
	border: 2px solid #fff !important;
}

.accordion-collapse {
	background-color: #191919 !important;
	color: white;
	border: none !important;
	border-radius: none !important;
}

.accordion-body {
	border-radius: none !important;
}

/* _rewards_ */
#referralDetails {
	display: none;
}

/* _footer_ */

.footerContainer {
	color: #fff;
	box-sizing: border-box;
	padding: 0 50px;
}

	.footerContainer a {
		color: #fff;
	}

	.footerContainer a:hover {
		color: #ccc;
	}

.footerLeft, .footerRight {
	padding: 75px 0 0 0;
	font-size: 1.5em;
	font-weight: 700;
}

	.footerLeft p, .footerRight p {
		margin: 0 0 5px 0;
	}

.footerCenter {
	font-size: 0.6em;
	padding: 0 0 20px 0;
}

.footerBetty {
	display: block;
	width: auto;
	padding: 50px 0 25px 0;
	box-sizing: border-box;
	font-size: .75em;
	font-weight: 700;
}

	.footerBetty > img {
		display: block;
		max-height: 300px;
		text-align: center;
		margin: 30px auto;
	}

.footerEmail {
	font-size: 0.75em;
	font-weight: 500;
}

.footerIcons {
	padding: 5px 0 0 0;
	font-size: 2em;
}

	.footerIcons > span {
		margin: 0 15px 0 0;
	}

/* responsive adjustments */

@media (max-width: 992px) {
	
	#categoryMenuContainer {
		display: none;
		position: absolute;
		top: 150px;
		left: 40px;
		padding: 20px 10px;
		background-color: rgba(0, 0, 0, 0.9);
		z-index: 3;
		width: 300px;
	}

	#categoriesMobileToggle {
		display: block;
	}

	#productContainer {
		padding-left: 50px;
	}
}

@media (max-width: 768px) {
	
	.carousel-caption > h1 {
		font-size: 22px;
	}

	.childCategoriesButton {
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	
	.footerLeft, .footerRight {
		text-align: center;
	}
}