/*MARQUEE*/
.marquee {
    width: 100%;
/*            position: fixed;
    top: 0px;
    left: 0px;
    z-index: 150;*/
    font-family: "Quicksand", sans-serif;
/*    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);*/
	background-color: #b3a190;
    color: white;
    font-weight: 500;
    padding-top: .5em;
    padding-bottom: .5em;
    overflow: hidden;
}

#temp-overlay {
	background-color: black;
	opacity: .2;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 900;
}

/*BUSINESS SPECS*/
div#business-specs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
}
div#business-specs > div.logo > a {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 2em;
	color: black;
}
#navbar .desk-sticky-logo {
	display: none;
}
#navbar.sticky {
	z-index: 499;
}
#navbar.sticky .desk-sticky-logo {
	display: inline-flex;
}
#navbar .desk-sticky-logo > a {
	font-family: "Montserrat", sans-serif;
	font-size: 1.25em;
	color: black;
}
#navbar .desk-sticky-logo > a:hover {
	text-decoration: none;
}
#navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}
.account {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	gap: .75em;
}
.account > ul {
	list-style: none;
	margin: 0px 0px;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
}
#toggle-search > .icon-search1 {
	font-size: 24px;
}

.account .account-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	color: #444;
	border: 1px solid #444;
	border-radius: 50%;
}
.account .account-wrapper > span {
	font-size: 12px;
}
.customer-pref .login-button {
	display: none;
}
div#navbar {
	display: flex;
	justify-content: space-between;
	padding: 15px 30px 0px 30px;
	border-bottom: 2px solid #CCC;
	position: relative;
	/*margin-bottom: 25px;*/
}

#navbar > .customer-pref {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#navbar > .customer-pref > a {
	color: black;
}

#navbar > .customer-pref > a:hover {
	text-decoration: none;
	color: black;
}

#navbar > .customer-pref > a:not(:last-child) {
	margin-right: 1em;
}

#main-category-menu {
	margin-bottom: 0px;
}

/*NAVBAR SPECS*/
nav {
	/*position: relative;*/
}
nav .mobile-only {
	display: none;
}
/*BURGER*/
#navbar .burger {
	/*width: 40px;*/
	/*height: 20px;*/
	/*flex-direction: column;*/
	font-size: 20px;
	color: #555;
	justify-content: space-between;
	align-items: center;
	display: none;
	border: none;
	background-color: transparent;
	outline: none;
	padding: 0px;
}

/*END BURGER*/
#main-category-menu {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	/*background-color: #AAA;*/
	padding-left: 0px;
	padding-bottom: 15px;
	/*border-bottom: 2px solid #CCC;*/
}

#main-category-menu > li > a.main {
	font-family: "Montserrat", sans-serif;
	font-size: .8em;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	color: rgba(0,0,0,0);
	padding: .25em .5em;
	margin: 0px;
}

#main-category-menu > li > a.main::before {
	position: absolute;
	white-space: nowrap;
	content: attr(data-name);
	width: 100%;
	left: 0;
	top: 0;
	color: rgba(0,0,0,1);
	transition: all 300ms ease-out;
}

#main-category-menu > li > a.main:hover::before, #main-category-menu > li > a.active.main::before {
	font-weight: bold;
}

#main-category-menu > li > a.main::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -15px;
	left: 0px;
	background-color: rgba(0, 0, 0, 1.0);
	transform: scaleX(0);
	transition: all 300ms ease-out;
}

#main-category-menu > li > a.main:hover::after, #main-category-menu > li > a.active.main::after {
	transform: scaleX(1.0);
}

#nav-sub-menu {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0px;
	background-color: white;
	transform: scaleY(0);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	z-index: 1001;
	padding: 20px 30px;
	gap: 1%;
}

#nav-sub-menu > ul, #nav-sub-menu > div {
	width: 19%;
}

#nav-sub-menu.active {
	transform: scaleY(1);
}

#nav-sub-menu > ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}


li.nav-list-title > button.list-title-btn {
	border: none;
	background-color: transparent;
	pointer-events: none;
}

li.nav-list-title > button.list-title-btn > span:last-child {
	font-size: .8em;
	font-weight: bold;
}

li.nav-list-title > button.list-title-btn > span:first-child {
	display: none;
}

#nav-sub-menu > ul > li.nav-link {
	font-size: .8em;
	font-family: "Playfair Display", serif;
	text-transform: none;
	padding-left: 2em;
}

#nav-sub-menu > ul > li.nav-link > a {
	color: black;
}

#nav-sub-menu > div.simple_image_banner_link > p {
	font-size: .8em;
	text-align: center;
	font-family: "Playfair Display", serif;
}

#mobile-nav-greeting {
	display: none;
}
nav .background-image {
	display: none;
}
#nav-sub-menu .menu-header {
	display: none;
}
@media screen and (max-width: 768px) {
/*SEARCH DIV*/
    #sub-search-div-li {
        /*display: block;*/
        width: 85%;
        margin-bottom: .5em;
    }
    #sub-search-div {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #sub-search-div form {
        width: 100%;
        position: relative;
    }
    #sub-search-div input {
        padding: .5em 1em;
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        color: black;
        border: 1px solid #AAA;
        border-radius: 20px;
        height: 40px;
        font-size: 13px;
        font-weight: 400;
    }
    #sub-search-div input::placeholder {
        font-weight: 400;
    }
    #sub-search-div button {
        position: absolute;
        background-color: transparent;
        /*border-radius: 20px;*/
        right: 0px;
        top: 5px;
        width: 50px;
        height: 30px;
        border: none;
        padding: 0px;
        text-align: center;
        margin-top: 0px;
        margin-bottom: 0px;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }
/*END SEARCH DIV*/
	.customer-pref .login-button {
		display: block;
	}
	div#business-specs {
		display: none;
	}
	#navbar .desk-sticky-logo {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 100;
	}
	#navbar > .customer-pref {
		z-index: 500;
	}

	nav .mobile-only {
		display: block;
	}
	#navbar .burger {
		display: flex;
		z-index: 500;
	}
	li.nav-list-title {
		outline: none;
	}
	li.nav-list-title > button.list-title-btn {
		pointer-events: all;
		outline: none;
	}
	li.nav-list-title > button.list-title-btn > span:first-child {
		display: inline-block;
	}

	#nav-sub-menu {
		display: none;
	}
	#nav-sub-menu.active {
		position: fixed;
		top: 0px;
		left: 0px;
		bottom: 0px;
		width: 400px;
		height: 100%;
		overflow-y: scroll;
		display: flex;
		/*flex-direction: column;*/
		background-color: #EEE;
		padding: 15px 15px;
		padding-top: 40px;
		flex-wrap: wrap;
		z-index: 1001;
	}

	#nav-sub-menu > ul {
		width: 100%;
	}

	#nav-sub-menu > div.simple_image_banner_link {
		width: 48%;
	}

	#nav-sub-menu div.menu-header {
		width: 100%;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		padding-bottom: 20px;
		border-bottom: 2px solid black;
		margin-bottom: 25px;
	}
	#nav-sub-menu div.menu-header > span:last-child {
		font-family: "Montserrat", sans-serif;
		font-weight: bold;
	}
	#nav-sub-menu button.sub-menu-back {
		position: absolute;
		width: 40px;
		heigh: 100%;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		border-color: #555;
	}
	#main-category-menu {
		display: none;
	}
	#main-category-menu.active {
		position: fixed;
		top: 0px;
		left: 0px;
		bottom: 0px;
		width: 400px;
		height: 100%;
		overflow-y: scroll;
		display: flex;
		flex-direction: column;
		background-color: #EEE;
		padding: 15px 15px;
		z-index: 1000;
	}
	#main-category-menu li.nav-link-li {
		position: relative;
		margin-bottom: 1em;
	}
	#main-category-menu li.nav-link-li img.background-image {
		display: block;
		width: 100%;
	}
	#main-category-menu > li > a.main {
		font-family: "Montserrat", sans-serif;
		font-size: .8em;
		color: rgba(0,0,0,1);
		padding: .25em .5em;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
	}
	#main-category-menu > li > a.main[data-textonbg='0'] {
		color: rgba(0, 0, 0, 0);
	}

	#mobile-nav-greeting {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	#mobile-nav-greeting > div:first-child {
		width: 70%;
	}
	#mobile-nav-greeting > div:last-child {
		text-align: right;
		padding-right: 25px;
	}
	#mobile-nav-greeting button#close-sub-nav {
		width: 29%;
		border: none;
		outline: none;
		font-size: 2em;
		color: #555;
	}
	#mobile-nav-greeting div > h6 {
		font-family: "Montserrat", sans-serif;
		text-align: center;
		text-transform: uppercase;
		font-size: .8em;
		font-weight: bold;
	}
	#mobile-nav-greeting div > p {
		font-family: "Quicksand", sans-serif;
		text-align: center;
		text-transform: uppercase;
		font-size: .8em;
	}
    .cart {
        position: relative;
    }
    .cart-num {
        position: absolute;
        color: darkred;
        font-size: .8em;
        top: -10px;
        right: -9px;
        z-index: 5;
    }
	.my-wishlist {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #CCC;
		border-radius: 5px;
		padding: .5em 1em;
		margin-bottom: 1.5em;
	}
	.my-wishlist > a {
		color: black;
		font-family: "Quicksand", sans-serif;
		font-size: .8em;
	}
	.my-wishlist > a:hover {
		text-decoration: none;
	}
	.my-wishlist > a > span:first-child {
		margin-right: .75em;
	}
	#main-category-menu > li {
		width: 100%;
	}
	#main-category-menu > li > a.main {
		width: 100%;
	}
	/*TEMPORARY*/
	#main-category-menu > li > a.main::before {
		content: none;
	}

	#main-category-menu > li > a.main:hover::before, #main-category-menu > li > a.active.main::before {
		content: none;
	}

	#main-category-menu > li > a.main::after {
		content: none;
	}

	#main-category-menu > li > a.main:hover::after, #main-category-menu > li > a.active.main::after {
		content: none;
	}
	/*END TEMPORARY*/

}


/*FOOTER*/
        #footer {
            background-color: #b3a190;
/*            background-image: linear-gradient(to top, #09203f 0%, #537895 100%);*/
            color: white;
            padding: 2em 1em;
            border-radius: 15px;

        }

        .footer-info-div .title {
            font-family: "Montserrat", sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            padding-left: 1.5em;
            margin-bottom: 1em;
        }

        .footer-news-update .footer-menu {
            list-style: none;
        }

        .footer-menu {
            list-style: none;
        }

        .footer-info-div .footer-menu a {
            font-family: "Quicksand", sans-serif;
            color: white;
            font-size: .9em;
        }

        .footer-menu li span {
            font-family: "Quicksand", sans-serif;
            color: white;
            font-size: .9em;   
        }

        .footer-news-update li {
            list-style: none;
            font-family: "Quicksand", sans-serif;
            color: white;
            font-size: .9em;
        }

        #id_nl_email {
            width: 100%;
            font-family: "Quicksand", sans-serif;
            height: 35px;
        }

        #newsletter-form button {
            background-color: white;
            color: rgba(0, 51, 51, 1.0);
            width: 100%;
            margin-top: 10px;
            transition: all 1s;
            padding: .5em 1em;
        }

        #newsletter-form button:hover {
            background-color: rgba(0, 51, 51, 1.0);
            color: white;
        }


/*OTHERS*/

        form label {
            /*font-family: "Quicksand", sans-serif;*/
            font-family: "Montserrat", sans-serif;
            font-size: .9em;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 1.5em;
            color: black;
        }
        form input {
            font-family: "Poppins", sans-serif;
            border: none;
            width: 100%;
            border-bottom: 1px solid #AAA;
        }
        .modal-title {
            font-family: "Quicksand", sans-serif;
            font-size: 1em;
            text-transform: uppercase;
        }
        button[type='submit'] {
            text-transform: uppercase;
            /*background-color: #333;*/
            color: black;
            font-size: .8em;
            padding: .3em 1em;
            width: 100%;
            margin-top: 1.5em;
        }

        #sign-up-invitation {
            margin-top: 2em;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            font-family: "Montserrat", sans-serif;
            font-weight: 500;
        }

        #sign-up-invitation a {
            font-family: "Quicksand", sans-serif;
            background-color: #EEE;
            padding: .3em 1.2em;
            border: 1px solid #DDD;
            color: black;
        }

        /*SEARCH DIV*/

        #toggle-search {
            background-color: transparent;
            border: none;
        }
        #toggle-search:focus {
            outline: none;
        }
        #search-div-li {
            display: none;
        }
        #search-div-li.active {
            display: block;
        }
        #search-div {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #search-div form {
            width: 200px;
            position: relative;
        }
        #search-div input {
            padding: .5em 1em;
            font-family: "Montserrat", sans-serif;
            font-weight: bold;
            color: black;
            border: 1px solid #AAA;
            border-radius: 20px;
            height: 40px;
            font-size: 13px;
            font-weight: 400;
        }
        #search-div input::placeholder {
            font-weight: 400;
        }
        #search-div button {
            position: absolute;
            background-color: transparent;
            /*border-radius: 20px;*/
            right: 0px;
            top: 5px;
            width: 50px;
            height: 30px;
            border: none;
            padding: 0px;
            text-align: center;
            margin-top: 0px;
            margin-bottom: 0px;
            color: black;
            display: flex;
            justify-content: center;
            align-items: center;
        }
