/* ====== CSS Variables ====== */
/* TODO: use css variables to define our core colours */
:root {
  --theme-primary: #95837b;
  --theme-alternate: #3b3f47;
}

/* usage: var(--theme-primary) */


/* ====== Global Styles ====== */

html {
	scroll-behavior: smooth;
}

hr {
	width:100%;
	margin-top:0.5rem;
	margin-bottom:0.75rem; /*matches table header spacing*/
}
body{
	display:flex;
	min-height:100vh;
	flex-direction:column;
	min-width:350px;
	font-family: 'Karla', sans-serif;
}

/* Custom Bootstrap Viewport Classes */

@media (min-width: 1500px) {
	.d-xxl-none {
		display: none!important;	
	}
	.d-xxl-block {
		display: block!important;	
	}
	.d-xxl-flex {
		display: flex!important;	
	}
	.d-xxl-inline {
		display: inline!important;	
	}
}

.flex-spacer{
	flex-grow:1;
}

.form-control:focus {
	color: #495057;
    background-color: #fff;
    border-color: #d8cdbe;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(216 205 190 / 25%);
}

/* thinner card guttering than bootstrap's default because we use cards in much smaller spacings */

.card {
	border: none;
}

@media (min-width: 992px) {
	.home-restricted h4 {
		font-family: 'Lora', serif;
		font-size: 31px;
		color: #1b1d23;
	}
}

.card-deck{
	margin-right:-5px;
	margin-left:-5px;
	flex-flow:row wrap;
}
.card-deck .card{
	margin-left:5px;
	margin-right:5px;
	height:100%;
	margin-bottom:0px;
}
.card-deck > div{
	margin-bottom:0.5rem;
}
.card-body {
	display:flex;
	flex-direction:column;
	align-items:stretch;
	text-align:center;
}

/* ------ Text Styling ------ */
.h1, h1 { /* major title of the page */
	font-size: 2rem;
	letter-spacing: 1px;
	font-family: 'Lora', serif;
}
.h2, h2 { /* subheadings in copy pages */
	font-size: 1.5rem;
	letter-spacing: 1px;
}
.h3, h3 { /* interface heading */
	font-size: 1.25rem;
	letter-spacing: 1px;
}
.h4, h4 { /* Major product labels, copy page minor labels */
	font-size: 1.1rem;
	letter-spacing: 1px;
}
.h5, h5 { /* not actually used but available for customisations and copy */
	font-size: 1rem;
	font-style: italic;
}
a, .page-link{
	color: #95837b;
	transition: all 0.25s ease-in-out;
}

a:hover, .page-link:hover{
	color: #95837b;
}

.nav-link {
	letter-spacing:1px;
}
.card-title {
	margin: 0.75rem 0rem;
}
.col-form-label{
	font-weight: 700;
}

strong, b, th, .table.dataTable tr.totalsRow td {
	font-weight: 700;
}

/* ------ Buttons ------ */
.btn-primary {
	background-color: #95837b;
    border-color: #95837b;
}
.btn-primary:hover {
	background-color: #7c6b63;
    border-color: #7c6b63;
}

.btn-light {
	background-color: #fff;
	border-color: #ced4da;
}

.btn-cart {
	width:115px;
}

.btn-am {
	background-color: #95837b;
	border-color: #95837b;
	color: #ffffff;
}
.btn-am:hover {
	background-color: #0085a7;
	border-color: #95837b;
	color: #ffffff;
}

/* Active classes */
.list-group-item.active, .page-item.active .page-link, .dropdown-item.active, .dropdown-item:active {
	background-color: #f2eee9;
	border-color: #f2eee9;
	color: inherit;
}

/* ------ Messaging ------ */
.alert-info, .alert-success {
    color: #212529;
    background-color: #EDF5FC;
    border-color: #EDF5FC;
}

/* ------ Misc ------- */
.list-group-item{
	border: 1px dotted #dfdfdf;	
}
.breadcrumb {
	font-size: 0.9rem;
	padding-left: 0;
	margin: 0;
	background: none;
	letter-spacing: 1px;
}
#captcha {
    text-transform: uppercase;
}


/* ====== Location Specific Styles ====== */

/* ------ Container Styling ------ */

.header-restricted, .mega-menu-resticted, .home-restricted, .footer-restricted, .product-details-breadcrumbs-restricted {
	max-width: 1680px;
}

.product-list-restricted {
	max-width: 1500px;
}

.product-details-restricted {
	max-width: 2200px;
}

.fluid-restricted{
	max-width:1200px;
}
.form-restricted{
	max-width:1000px;
	margin:auto;
}

/* ------ Header Common & Mobile Styling ------ */

/* Header Customisation */

@media (min-width: 992px) {

	/* Header for home over the banner, scrolling on home and on other pages */

	.header-desktop {
		position: sticky;
		top:48px; 
		z-index: 999;
		background-color: #fff;
		border-bottom: solid 1px #e4e4e4;
		transition: all 0.25s ease-in-out;
	}

	/* Desktop search for home over the banner, scrolling on home and on other pages  */
	#desktop-search-input {
		background: transparent;
		border: none;
		border-bottom: 1px solid #212529;
		border-radius: 0px;
		transition: all 0.25s ease-in-out;
		max-width: 160px;
	}

	#desktop-search-button {
		background: transparent;
		border: none;
		border-bottom: 1px solid #212529;
		border-radius: 0px;
		color: #212529;
		transition: all 0.25s ease-in-out;
	}

	#desktop-search-button:hover {
		opacity: 0.7;
	}

	#desktop-search-input::placeholder {
		color: #212529;
		text-transform: uppercase;
	}

	.header-desktop #desktop-search-input::placeholder {
		color: #ced4da;
	}

	.header-desktop #desktop-search-input,
	.header-desktop #desktop-search-button  {
		border-bottom: 1px solid #ced4da;
	}

	#desktop-search-input:focus {
		color: #212529;
	}

	#desktop-search-input.focus, #desktop-search-input:focus,
	#desktop-search-button.focus, #desktop-search-button:focus {
		box-shadow: none;
	}

	.header-content .nav-link {
		color: #212529;
		margin: 0rem 0.5rem; /* Should we only have margin on the last item so there is more space for my account/login or standardise this? */
		font-weight: 500;
		text-transform: uppercase;
		font-size: 0.85rem;
		/* border-bottom: 2px solid transparent; */
	}
	
	.header-content .nav-link:hover,
	.header-content .nav-link.active {
		/* border-bottom: 2px solid #95837b; */
		color: #95837b;
	}
	
}

@media (min-width: 1200px) {
	.header-content .nav-link {
		font-size: 1rem;
	}
}
/* End Header Customisation */

/* Account Manager Dropdown Menu
TODO: find some way to rationalise this */

.dropdown-header-desktop, .dropdown-header-mobile{
	display: block;
	margin-bottom: 0;
	white-space: nowrap;
	font-weight: 700;
}
.dropdown-header-desktop {
	padding: .25rem 1.5rem;
}
.dropdown-header-mobile {
	padding: .75rem 1.25rem;
}

/* ------ Logo Styling ------ */

#company-logo {
	transition: all 0.25s ease-in-out;
	max-width: 90%;
}

#company-logo:hover {
	opacity: 0.8;
}


@media (min-width: 700px) {
	#company-logo {
		max-width: 60%;
	}
}

@media (min-width: 991px) {
	#company-logo {
		max-width: 400px;
	}
}


/* ------ Wholesale Styling ------ */
.wholesale{
	width:100%;
	max-width:600px;
	margin:auto;
}

/* ------ Main Menu Styling ------ */

@media (max-width: 991px) {
	.nav-menu {
		position: sticky;
		top: 40px;
		z-index: 998;
	}
}

@media (min-width: 992px) {
	.nav-menu {
		background-color: #efefef;
		border-bottom: 1px #dfdfdf solid;
		border-top: 1px #dfdfdf solid;
	}
}

.main-menu-desktop .nav-link {
	color: #95837b;
	margin: 0rem 0.5rem;
}

.main-menu-desktop .nav-link:hover, 
.main-menu-desktop .nav-link.active {
	border-color: black;
}

/* Mobile Styling */

.mobile-menu-text {
	font-size: 0.7rem;
	text-transform: uppercase;
}
.mobile-menu-button {
	flex-grow:1;
	text-align:center;
	-webkit-appearance: none; /* iOS Fix */
	border-radius:0;
	color: #333333;
	padding: 0.25rem;
	border: solid 1px #e4e4e4;
	line-height: inherit;
	width: 20%;
	background-color: #fff;
}

.mobile-menu-button:hover {
	color: #333333;
}

.mobile-menu-button i {
	padding-bottom: 0.25rem;
}

.mobile-menu-button:not(:first-child) {
	border-left: 1px solid #fff;
}

.search-input, .search-input::placeholder {
	letter-spacing: 1px;
	color: #999;
}

@media (max-width: 991px) {
	.search-container {
		border-bottom: 2px solid #e0d8ce;
		border-top: 2px solid #e0d8ce;
	}
	.search-input, .search-button {
		border: none;
		border-radius: 0px;
	}
	.search-input:focus {
		box-shadow: none;
	}
	.search-button:hover, .search-button:focus{
		background-color: #e0d8ce;
	}

}
@media (min-width: 992px) {
	#main-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}



/* old bad 'mega' menu */
.show>.product-2col{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	width:550px;
}
.product-2col a{
	flex:0 0 50%;
}
.show>.product-3col{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	width:800px;
}
.product-3col a{
	flex:0 0 33.3%;
}

/* container-sm used to remove padding when in mobile, useful for mobile navigation */
.container-fluid-sm {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
    margin-right: auto;
}
@media (max-width: 991px) {
	.container-fluid-sm{
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* ------ Main Content ------ */
.content-container {
	margin-top:1rem;
	margin-bottom:1rem;
}

/* Zippay / Afterpay / PayPal */

#zip-product-widg {
	padding: 0px;
}

.afterpay-details {
	margin-bottom: 5px;
}

.afterpay-line {
	min-height:49px;
	font-size: 14px;
}

.afterpay-list {
	min-height: 72px;
	font-size:14px;
}

.afterpay-view-more {
	font-size: 11px;
}

.afterpay-payment-image, .paypal-payment-image {
	height:22px;
	vertical-align:middle;
}

.zip-payment-image {
	height: 28px;
	vertical-align:middle;
}

.zip-container .zip-logo {
	margin-left: -5px !important;
}

/* ------ Filter & Category Sidebar ------ */

.sidebar-component{
	margin-bottom:.5rem;
}

.sidebar-component .list-group-item:hover {
	text-decoration: none;
}

.sidebar-container .list-group-item {
	color: #595959;
	padding: 0.75rem 0.75rem;
}

.sidebar-section-title {
	padding: 8px 12px 8px 12px;
}

.sidebar-section-title > a {
	color: #000;
}

.sidebar-filter-title {
	padding: 8px 12px 8px 12px;
	font-weight: 700;
	color: #212529;
}

.sidebar-filter > a {
	width: fit-content;
}

.no-filter {
	padding: 8px 12px 8px 12px;
	font-weight: 400;
	font-size: 0.9rem;
	color: #595959;
}

.menu-icon .fa-check-square {
    color: #43A047;
}

.menu-icon .fa-times-circle {
    color: #c31d2b;
}

.category1-text, .category2-text, .category3-text{
	margin-right:10px; 
}

.sidebar-container .menu-icon, 
.sidebar-container .menu-item, 
.sidebar-container .dropdown-menu,
.category1-text {
	/* font-size: 14px; */
}

.category2-text {
	padding-left: 10px;
	font-size: 0.9rem;
}

.category3-text {
	padding-left: 20px;
	font-size: 0.85rem;
}

.category-icon {
	position:absolute;
	top:calc(50% - 10px);
	right:12px;
	color: rgba(0, 0, 0, 0.35);
	font-size: 12px;
}

/* ------ Cart ------ */
.fullCart th, .fullCart td{
	vertical-align: inherit;
}
.removeCart{
	text-align:center;
}
.cartsummary_controls .btn {
	min-width: 130px;
}
.savecart_controls{
	width: 300px;
}
.cart_mobiledetails {
	font-size: 0.85rem;
}
@media (max-width: 767px) {
	.cartsummary_controls, .savecart_controls {
		width: 100%;
		max-width: 300px;
	}
	.cartsummary_controls .btn{
		width: 100%;
	}
}
.fullcart-total {
    text-align: right;
    font-weight: 700;
	margin-bottom: 0.5em;
	padding-right: 12px;
}

/* ------ Product List ------ */
.pl-container {
	display:grid;
}
.sortby, .viewas, .itemsperpage, .pagination, #blogCategoryWrapper, #blogSearchWrapper {
	margin-bottom:0.5rem;
}

.product-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
	grid-row-gap:0.5rem;
	margin-bottom:0.5rem;
}

.productlist {
	margin-bottom:0.5rem;
}

/* Product Display */
.product-image-card{
	object-fit:contain;
	height:300px;
	max-width:100%;
}

@media (max-width: 991px) {
	.product-image-card{
		height:220px;
	}
}

@media (max-width:767px) {
	.product-image-card{
		height:185px;
	}
}


.product-image-list{
	object-fit:contain;
	min-height:150px;
	max-height:150px;
	max-width:100%;
	display:block;
	margin:auto;
}
.product-image-detail-primary {
	width:100%;
	object-fit:contain;
	max-height:500px;
}
.product-image-detail-secondary {
	object-fit:contain;
	max-height:150px;
	display:block;
	margin:auto;
}
.product-image-line {
	width:80px;
	object-fit:contain;
	height:80px;
}

.cart-alignment {
	/*width and placing of the cart widget and anything that needs to follow it */
	width:100%;
	max-width:240px;
}
.card .cart-alignment {
	margin:auto;
	float:none;
}

.cart-widget button {
	width:45px;
}
.cart-column {
	min-width:195px;
}

.list-cart{
	/*margin:auto;*/
	/* max-width:360px; */
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 767px) {
	.list-cart {
		align-items: flex-start;
	}
	
}

.list-cart p{
	margin-bottom:0.25rem;
}
.gallery-cart{
	min-height:42px;
}

.price{
	font-weight: 700;
	font-size:1.25rem;
	margin-bottom:0.25rem;
}
.gst-text{
	/* nothing yet */
}

/* ------ Checkout ------ */
.tracker-links{
	position: absolute;
	top: 0;
	width: 100%;
}

.progress-tracker .progress {
    margin: 47px 0 0 0;
    height: 7px;
}

.tracker-content{
	text-align: center;
	color: var(--theme-primary); /* Progess bar icon background */
}

.progress-bar {
	background-color: #c6bcb8; /* Progress bar color */
}

.progress-tracker a {
	color: var(--theme-alternate); /* Progress bar link */
}

.FatZebraFrame {
    max-width:500px;
    width:100%;
    height: 475px;
}
@media screen and (max-width: 414px) {
    .FatZebraFrame {
        height: 550px;
    }
}

/* ------ Footer Styles ------ */
.footer-navigation{
	background-color:var(--theme-primary);
	color: #fff; /* Footer text. Background will differ from website body so font colour/opacity will need adjustment */
}
.footer-navigation a {
	color: #ddd6c2;
	transition: all 0.25s ease-in-out;
	width:fit-content;
}
.footer-navigation a:hover {
	color: #ddd6c2;
	opacity: 0.7;
}

.payment-icons {
	color: #fff;
}

@media (max-width: 991px) {
	.footer-navigation {
		text-align: center;
	}
	.footer-address {
		padding: 0rem 1rem;
	}
	.footer-address .contact-links a{
		margin:auto;
	}
	.footer-right-column {
		align-items: center;
		padding: .5rem 1rem 0rem 1rem
	}
	.social-icons {
		margin: .5rem 0rem;
	}
	.payment-icons > div {
		justify-content: center;
	}
}

.footer-navigation .navbar-expand-lg .navbar-nav .nav-link, 
.footer-navigation .nav-link {
	padding: .25rem 0 .25rem 0; /* reduce vertical and horizontal padding for footer links */
}

.footer-navigation .fa-stack {
	width: 2em; /* Unifies footer icon spacing */
}

.footer-right-column {
	flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.footer-right-column > div, .footer-text-area p{
	margin-bottom:0.5rem;
}

.mailchimp-signup button, .mailchimp-signup button:hover {
	border-color: #fff;
}

#mce-EMAIL::placeholder,#mce-EMAIL:focus,#mce-EMAIL{
	background:transparent;
	color:#fff;
}
.footer-text-area p:last-of-type { /* Removes spacing of text so icons control it */
	margin: 0px;
}

.social-icons a {
	color: #fff;
	transition: all 0.25s ease-in-out;
}
.social-icons a:hover {
	opacity: 0.7;
	color: #fff;
}

.social-icons .fa-inverse {
	color: var(--theme-primary);
}

.social_womo {
	font-family: WomoFont, Calibri, Arial, Verdana, Helvetica, sans-serif;
	font-size: 34px;
}


.social_womo:hover {
	text-decoration: none;
}

.footer-payment-image {
	filter: grayscale(1);
}

/* ------ Copyright Styles ------ */
.footer-copyright {
	font-size: 0.85rem;
	color: #1d242c;
}

.footer-copyright a {
	color: #95837b;
	transition: all 0.25s ease-in-out;
	letter-spacing: 1px;
}

.footer-copyright a:hover {
	color: #95837b;
	opacity: 0.7;
}


/* ====== Addons ====== */

/* ------ Callouts ------ */

.callout-content {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.callout-content a {
	width:100%;
}

/* ------ Account Manager ------ */

.AMloggedin {
	background-color:#95837b;  /* highlight colour on logged in customer - default #95837b */
	color: #fff;
}

/* ------ Product Carousels ------ */
.owl-carousel .card-deck, .owl-carousel .card-deck .card{
/* It's better for everyone if owl does the card margins via it's config rather than us, so zero them out */
	margin-left:0px;
	margin-right:0px;
}
.owl-carousel .owl-item .card-body img{
	/* owl overrides this which gets wierd */
	display:initial;
	width:initial;
}
.carousel-nav {
	position:absolute;
	top:calc(50% - 19px);
	z-index:2;
	border-radius:50%;
}
.carousel-nav.left {
	left:-17px;
}
.carousel-nav.right {
	right:-17px;
}

/* ------ Category Header Text amd Images ------ */

.category-header-text-no-content {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0px 15px;
}

.category-header-image {
	min-height: 400px;
    object-fit: cover;
}



@media (max-width: 991px) {
	.category-header-text {
		padding: 0rem 30px;
	}
	.category-header-text-no-content {
		padding: 16px 30px 0px 30px;
	}
}

@media (min-width: 992px) {
	.category-header-text-content > div {
		padding: 20px;
	}
}

.category-header-text-content h1 {
	margin-bottom: 1rem;
}

.category-header-text-content p:last-of-type {
	margin: 0px;
}

@media (min-width: 992px) {
	.category-header-text-container {
		position: relative;
	}
	.category-header-text {
		max-width: 1500px;
		margin: 0 auto;
		position:absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		text-align: left;
		transform: translate(-50%, -50%);
	}
	.category-header-text-content {
		max-width: 450px;
	}
}

@media (max-width: 1250px) {
	.category-header-text-content {
		background: rgba(255, 255, 255, 0.7);
	}
}

/* ------ Was Price ------ */

.productListWas {
	margin-bottom: 0.25rem;
}

.wasPriceText {
	color: #DD0000;
	/*text-decoration: line-through;*/
}

.saveText {
	color: #DD0000;
	/*font-weight: 700;*/
}
.saveText:before {
	content:"(";
}
.saveText:after {
	content:")";
}

/* ====== Customer Specific Custom ====== */

/* Use your imagination! */

#scroll-to-top {
	display: inline-block;
	background-color: #FF9800;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 24px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#scroll-to-top::after {
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1rem;
	line-height: 50px;
	color: #fff;
}

#scroll-to-top:hover {
	cursor: pointer;
	background-color: #333;
}

#scroll-to-top:active {
	background-color: #555;
}

#scroll-to-top.show {
	opacity: 1;
	visibility: visible;
}

@media (min-width: 992px) {
	.col-5-per-row {
		flex: 0 0 20%;
		max-width: 20%;
	}
}


/* Home Heading Text */

.home-large-heading {
	background-color: #FFF;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.home-large-heading .word {
	font-family: 'Lora', serif;
    font-size: 50px;
    color: #c3b29d;
    line-height: 200px;
    letter-spacing: 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.home-large-heading .word {
		font-size: 38px;
	}
}

@media (min-width: 1200px) and (max-width: 1499px) {
	.home-large-heading .word {
		font-size: 48px;
	}
}

/* Home Standard Stuff */

.home-restricted, .home-restricted a, .home-restricted a:hover {
	color: #95837B;
}

.home-restricted h2 {
	text-align: center;
    font-size: 31px;
    color: #95837B;
    letter-spacing: 5px;
	text-transform: uppercase;
}

.home-top {
	margin-bottom: 6rem;
}

.home-restricted .callout-label {
	font-family: 'Lora', serif;
    font-size: 31px;
	color: #1b1d23;
}

.home-welcome {
	line-height: 24px;
}

.home-welcome h2 {
	font-variant: small-caps;
	font-size: 1.5rem;
}

.home-divider {
	border-top: 2px solid #e0d8ce;
	max-width: 1200px;
    margin: 6rem auto;
}

.home-section {
	margin: 6rem 0rem;
}

.home-section h1 {
	margin: 0rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #95837B;
	text-align: center;
	font-family: 'Karla', sans-serif;
}


@media (max-width: 991px) {
	.home-section, .home-divider {
		margin: 3rem 0rem;
	}
}

/* Header Notifications */

#headerNotifications {
	position: sticky;
	top: 0;
	z-index: 998;
	width: 100%;
	color: #fff;
}

#headerNotifications a {
	color: #fff;
}

#headerNotifications {
	background-color: #95837B;
}

#headerNotifications p {
	display: inline;
	letter-spacing: 1px;
	font-size: 0.85rem;
}

#headerNotifications .carousel-item {
    padding: 0.75rem 0rem;
}

@media (max-width: 991px) {
	#headerNotifications p {
		font-size: 0.75rem;
	}
}

/* Carousel Icon Overrides */

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 12px;
    height: 12px;
}

.carousel-control-next, .carousel-control-prev {
	width: 5%;
}


/* Review Customisation */

.home-section .rplg .rplg-review-name,
.home-section .rplg .rplg-biz-name a {
	color: #95837B !important;
	font-weight: 700 !important;
}

/* Center Fancybox Text */

.fancybox-opened .fancybox-title {
	text-align: center;
}


#ajaxSummaryCartMini > i.fa.d-inline.d-lg-none.fa-flip-horizontal.fa-shopping-cart.shopping-cart-off {
	color: #333333 !important;
}

#productsMenu .list-group-item, #main-menu-mobile .list-group-item, #admin-menu-mobile .list-group-item {
	display: flex;
	justify-content: space-between;
}

/* Mega Menu */

.mega-menu-dropdown { /* this is the Products dropdown when cat1s are not the top level. Needs to be added */
    position: static !important;
}

.mega-menu-container {
	width: 100%;
	left: 0;
	right: 0;
	margin-top: 17px;
	border: 0px;
    border-radius: 0px;
	box-shadow: 0 0 3.76px 0.24px #00000026;
}

@media (max-width: 1199px) {
    .mm-cat1 {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .mm-cat1 {
        column-count: 4;
    }
}

.mm-cat1 > div {
	width: 100%;
    display: inline-table;
}

.mm-cat2 {
	flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 1200px) {
	.mm-cat1 > div {
		margin-bottom: .5rem;
	}
}

@media (min-width: 1200px) {
    .mm-cat1 > div > .dropdown-item {
        font-size: 15px;
        font-weight: 500;
        color: #95837B;
    }
    .mm-cat2 .dropdown-item {
        font-size: 13px;
        font-weight: 500;
        color: #212529;
    }
}

@media (min-width: 1400px) {
	.mm-cat1 > div > .dropdown-item {
		font-size: 16px;
		font-weight: 600;
		color: #95837B;
	}
}

@media (min-width: 1400px) {
	.mm-cat2 .dropdown-item {
		font-size: 14px;
		font-weight: 500;
		color: #212529;
	}
}

.view-all {
    font-weight: 500;
    color: #95837B;
    text-transform: uppercase;
}

.pages-dropdown, .account-dropdown {
	margin-top: 22px;
    border-radius: 0px;
	box-shadow: 0 0 3.76px 0.24px #00000026;
	border: 0px;
}

@media (max-width: 1199px) {
	.pages-dropdown, .account-dropdown {
		margin-top: 17px;
	}
}

/*
.dropdown-menu.show {
	transform: unset !important;
}
*/

.rplg .rplg-slider .rplg-slider-prev {
	left: -10px!important;
}
.rplg .rplg-slider .rplg-slider-next {
	right: -10px!important;
}

.home-thin {
	max-width: 1200px;
	margin: 0 auto;
}

/* Cart Decrement / Increment Buttons */

.cart-decr-incr {
	width: 35px;
}

/* Cart Decrement / Increment Overrides - Chrome, Safari, Edge, Opera */
.cart-qty::-webkit-outer-spin-button,
.cart-qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Cart Decrement / Increment Overrides - Firefox */
.cart-qty[type=number] {
	-moz-appearance: textfield;
}


@media (min-width: 992px) {
	.product-icons img {
		padding: 0px 20px;
	}
}
