@font-face {
  font-family: 'Classica';
  src: url('ue-css/fonts/Classica-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}

/* Animate On Click START */
a {
	position: relative;
	overflow: hidden;
}

a:after,.clickRipple:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background: rgba(220, 220, 220,.5);
	opacity: 0;
	border-radius: 100%;
	transform: scale(1, 1) translate(-50%);
	transform-origin: 50% 50%;
	pointer-events: none;
}

a:before{
	display:block;
	content:" ";
	position:absolute;
	z-index:0;
	background:rgb(20,20,20,.2);
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	transition: all 0.3s;
	pointer-events: none;
}

a:focus:not(:active):after {
	animation: ripple 1s ease-out;
}
/* Animate On Click END */

/* Mobile Icon START */
#hamburger-icon {
	width: 23px;
	height: 16px;
	position: relative;
	display: block;
	margin: 10px;
	overflow: visible;
}
#hamburger-icon .line {
	display: block;
	background: rgba(0,0,0,0.5);
	width: 23px;
	height: 3px;
	position: absolute;
	left: 0;
	border-radius: 1.5px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#hamburger-icon .line.line-1 {
	top: 0;
}
#hamburger-icon .line.line-2 {
	top: 50%;
}
#hamburger-icon .line.line-3 {
	top: 100%;
}
#hamburger-icon.active .line-1 {
	transform: translateY(8px) translateX(0) rotate(45deg);
	-webkit-transform: translateY(8px) translateX(0) rotate(45deg);
	-moz-transform: translateY(8px) translateX(0) rotate(45deg);
}
#hamburger-icon.active .line-2 {
	opacity: 0;
}
#hamburger-icon.active .line-3 {
	transform: translateY(-8px) translateX(0) rotate(-45deg);
	-webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
	-moz-transform: translateY(-8px) translateX(0) rotate(-45deg);
}
/* Mobile Icon END */

body {
	font-family: "Montserrat", "Segoe UI", Verdana, Geneva, sans-serif;
	font-size: 1.6rem;
	color: #534741;
}
a:hover {
	color: #8bbd98;
	text-decoration: none;
}
.letterSpacing2 {
	letter-spacing: 2px;
}
input[type="text"],input[type="password"],select,textarea {
	color: #000;
}
input[type="button"],input[type="submit"],button,.buttonStyle {
	display: inline-block;
	background-color: #0b6d38;
	color: #fff;
	border: none;
	padding: 10px;
	font-size: 1.1rem;
	text-transform: uppercase;
	text-align: center;
	min-width: 120px;
}
#aboutRightPad {
	padding: 50px;
}
@media (min-width: 992px) {
	#aboutRightPad {
		padding: 100px;
	}
}
.droidSerif {
	font-family: 'Mukta', "Segoe UI", Verdana, Geneva, sans-serif;
	font-weight: 200;
}
.classica {
	font-family: 'Classica', "Segoe UI", Verdana, Geneva, sans-serif;
	font-weight: bold;
}
.colorWhite {
	color: #fff;
}
.colorBlack {
	color: #534741;
}
.colorGreen {
	color: #0b6d38;
}
.colorOrange {
	color: #e36032;
}
.colorLightGreen {
	color: #8bbd98;
}
.subMenuBtn {
	display: inline-block;
	width: 100%;
	max-width: 300px;
	text-align: center;
	padding: 10px;
	border-radius: 15px;
	background-color: #f2e8da;
	margin: 10px;
}
.linearGradientBg {
	background: -moz-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
}
.mapBg {
	background-image: url('images/mapBg.png');
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}
.noodleBg {
	background-image: url('images/noodleBg.png');
	background-repeat: repeat-y;
	background-size: 30% auto;
	background-position: center right;
}
.noodleBgCenter {
	background-image: url('images/noodleBg.png');
	background-repeat: repeat-y;
	background-size: 30% auto;
	background-position: center top;
}
.linearBg {
	background: repeating-linear-gradient(
		to bottom,
		#f2e8da 0%,   /* light beige/cream */
		#f2e8da 33.33%,
		#0b6d38 33.33%, /* dark green */
		#0b6d38 66.66%,
		#8bbd98 66.66%, /* light green/mint */
		#8bbd98 100%
	);
}
#contactBeige img {
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
	width: 30px;
}
@media (min-width: 992px) {
	#contactBg {
		background-image: url('images/contactBg.jpg');
		background-repeat: no-repeat;
		background-position: right;
		background-size: auto 100%;
	}
}
.lightGreenBg {
	background-color: #8bbd98;
}
.greenBg {
	background-color: #0b6d38;
}
.blackBg {
	background-color: #000;
}
.greyBg {
	background-color: #f7f7f7;
}
.beigeBg {
	background-color: rgba(242, 232, 218, 0.8);
}
.greyBorder {
	border-top: 1px solid #eee;
}
.brushStroke {
	background-image: url('images/stroke.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 80% auto;
}
.greyBorderFull {
	border: 1px solid #eee;
	padding: 7px;
	padding-top: 5px;
}
.cartOptions select {
	font-size: 1.3rem;
	background-color: #fff;
	border: 1px solid #eee;
	width: 100%;
}
#ig {
	margin-left: 10px;
}
#redVertStamp {
	margin-top: 10px;
	margin-right: 10px;
}
.careerX {
	display: block;
	background-image: url('images/o.png');
	background-repeat: no-repeat;
	background-position: center right;
	background-size:  contain;
}
.careerY {
	display: block;
	background-image: url('images/x.png');
	background-repeat: no-repeat;
	background-position: center right;
	background-size:  contain;
}
.greenline {
	border-top: 1px solid #0b6d38;;
}
.fontsize60 {
	font-size: 6.0rem;
}
.fontsize45 {
	font-size: 4.5rem;
}
.fontsize24 {
	font-size: 2.4rem;
}
.fontsize20 {
	font-size: 2.0rem;
}
.fontsize16 {
	font-size: 1.6rem;
}
.fontsize14 {
	font-size: 1.4rem;
}
.fontsize12 {
	font-size: 1.2rem;
}
.fontsize11 {
	font-size: 1.1rem;
}
.lineheight25 {
	line-height: 25px;
}
.rootBox {
	display: block;
	position: relative;
}
.rootBox > .insideBox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	text-align: center;
	font-size: 2.0rem;
	padding: 10px;
}
.marginLR20 {
	margin-left: 20px;
	margin-right: 20px;
}
.displayNone {
	display: none;
}
.eachPrdName {
	line-height: 20px;
	margin-bottom: 4px;
}
.uppercase {
	text-transform: uppercase;
}
.eachLeftMenu a {
	display: block;
}
.eachLeftMenu input[type="checkbox"] {
	margin-right: 5px;
}
.eachLeftMenu > a:first-child {
	margin-bottom: 10px;
}
.eachLeftMenu > div > a {
	border-left: 1px solid #eee;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
}
.eachLeftMenu > div > a:hover {
	border-left: 1px solid #c6c6c6;
	color: #000;
}
.footerMenu {
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.footerSubmenu a {
	display: block;
	text-transform: uppercase;
	font-size: 1.1rem;
	letter-spacing: 2px;
}
.footerSubmenu a:hover {
	padding-left: 10px;
}
.priceCoret {
	text-decoration: line-through;
}
.priceSale {
	color: #900;
	font-weight: bold;
}
.prdListBg {
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
}
.menuLeftSpacer {
	border-bottom: 1px solid #ddd;
}
.padTop2 {
	padding-top: 2px;
}
.padTop12 {
	padding-top: 12px;
}
.padRight10 {
	padding-right: 10px;
}
.marginRight10 {
	margin-right: 10px;
}
.insidePrdEmblem {
	position: absolute;
	top: 5%;
	left: 0;
	font-size: 1.0rem;
	padding: 5px;
	padding-left: 8px;
	padding-right: 8px;
	color: #fff;
	letter-spacing: 2px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.ourStoryContainer {
	background-color: #084c2d;
	color: #fff;
	background-image: url('images/ourstory.jpg');
	background-position: bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
#checkTarget {
	display: block;
	overflow: hidden;
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
}
#topHead {
	border-bottom: 1px solid lightgray;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 1.2rem;
	background-color: rgba(255,255,255,0.9);
}
.topMenu a {
	margin-left: 35px;
	margin-right: 35px;;
}
#topHeadMobile {
	position: fixed;
	width: 100%;
	border-bottom: 1px solid lightgray;
	padding-bottom: 4px;
	background-color: rgba(255,255,255,0.9);
	z-index: 5;
	transition: all 0.4s;
}
.topHeadMobileTransparent {
	border-bottom: 1px solid transparent !important;
	background-color: rgba(255,255,255,0) !important;
}
#search {
	border: none;
	border-bottom: 1px solid lightgray;
	font-size: 1.3rem;
	width: 100%;
	max-width: 500px;
}
#mainMenu a {
	font-size: 1.2rem;
	letter-spacing: 2px;
	margin-left: 10px;
	margin-right: 10px;
}
#googleMapIframe {
	border: 1px solid #ddd;
}
#footerSubscribeInput {
	width: 100%;
	font-size: 1.2rem;
	padding: 5px;
	padding-left: 8px;
	padding-right: 8px;
}
#footerSoc {
	text-align: center;
	margin-top: 1px;
	color: #000;
}
#footerSoc a {
	width: 25px;
	margin-left: 5px;
	margin-right: 12px;
}
#currentProductQuantity {
	height: 30px;
	width: 65px;
	text-align: center;
	font-size: 1.3rem;
}
#addToCart {
	display: block;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 2px;
	padding: 6px;
	border: 1px solid #eee;
	margin-left: 5px;
}
#addToCartSold {
	display: block;
	text-align: center;
	background-color: #c6c6c6;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 2px;
	padding: 6px;
	border: 1px solid #eee;
	margin-left: 5px;
}
#prdorder {
	border: none;
	font-size: 1.1rem;
	padding: 5px;
	padding-left: 0;
	padding-right: 0;
	border-bottom: 1px solid #eee;
}
#stampContainer {
	position: relative;
}
#stamp {
	position: absolute;
	top: -30px;
	right: 200px;
}
.ig {
	display: inline-block;
	margin-bottom: -8px;
	margin-left: 15px;
}
.your-class div {
	margin: 2px;
}
.your-class img {
	border-radius: 10px;
}
.noRadius img {
	border-radius: 0px;
}
#prevSlick {
	display: inline-block;
	position: absolute;
	top: 45%;
	z-index: 2;
	background-color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50%;
	margin-left: -20px;
	font-size: 20px;
	font-weight: bold;
	padding-top: 8px;
}
#nextSlick {
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 2;
	background-color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50%;
	margin-right: -20px;
	font-size: 20px;
	font-weight: bold;
	padding-top: 8px;
}
#noodleStory {
	margin-left: -15px;
	margin-bottom: -30px;
}
#indexRestTitle {
	font-size: 3.0rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}
#dashedTitle {
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #000;
}
#cartIcon {
	margin-right: 5px;
}
#leftMobSearchContainer input {
	border-radius: 3px;
	overflow: hidden;
	width: 100%;
	padding: 5px;
	font-size: 1.2rem;
}
#avatarLeft {
	border: 1px solid #ddd;
	max-width: 65px;
}
#locationfootericon {
	margin-right: 10px;
}
#mapPopupBox {
	max-width: 650px;
	background-color: #fff;
}
#prdMobileMenuContainer {
	position: relative;
}
#dummyArrowMobileMenu {
	position: absolute;
	top: 11px;
	right: 10px;
}
.ourOutlets {
	display: inline-block;
	background-image: url('images/ourOutlets.png');
	background-repeat:  no-repeat;
	background-size: auto 80%;
	background-position: left;
	padding-left: 30px;
}
.orangeBtn {
	display: inline-block;
	background-color: #e36032;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	padding: 5px;
	padding-left: 30px;
	padding-right: 30px;
}
.orangeBtn:hover {
	color: #fff;;
	background-color: #df8869;
}
.greenBtn {
	font-family: 'Classica';
	display: inline-block;
	background-color: #0b6d38;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	padding: 5px;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 20px;
}
.greenBtn:hover {
	color: #fff;;
	background-color: #248b53;
}
#mobileMenuPrdBtn {
	display: block;
	padding: 10px;
	background-color: #e7e7e7;
}
#mobileMenuPrdBtn:hover {
	cursor: pointer;
}
#mobilePrdMenu {
	border-bottom: 1px solid #e7e7e7;
}
#mapPopupBoxBtn {
	display: block;
	padding: 10px;
	color: #000;
}
#loginPopup {
	max-width: 500px;
	margin: auto;
	background-color: #fff;
}
#touchCarouselWrap {
	position: relative;
}
#additionalNavButton {
	position: absolute;
	width: 100%;
	top: 40%;
	font-size: 8rem;
	color: #000;
}
#additionalNavButton a {
	opacity: 0.2;
	transition: all 0.3s;
}
#additionalNavButton a:first-child {
	float: left;
	margin-left: 15px;
}
#additionalNavButton a:last-child {
	float: right;
	margin-right: 15px;
}
#additionalNavButton a:hover {
	color: #000;
	opacity: 0.5;
}
#contactBeige {
	border-radius: 15px;
	padding: 30px;
	overflow-wrap: break-word;
	word-break: break-all;
}