/* 
CSS SECTIONS
1. Typography
2. Preloader
3. General styles
4. Modal
5. Header
6. Footer
7. Homepage
8. Contact
9. Shop
10. Autocomplete
*/


/* 
===========================================================
1. Typography
===========================================================
*/
@font-face {
    font-family: 'avenir-light';
	src:url('../fonts/avenir-light.otf');
}

@font-face {
    font-family: 'basic';
	src:url('../fonts/basic_grotesque.woff');
}

@font-face {
	font-family: 'opti';
	src: url('../fonts/opti.otf'),
	url('../fonts/opti.otf')
}


body, html {
	font-size: 14px;
	line-height: 28px;
	color: #666666;
    font-family: 'basic', sans-serif;
}

/* 
===========================================================
2. Preloader
===========================================================
*/
#preloader {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999;
    background: rgba(255,255,255,0.9);
}
  
.loader {
    position: absolute;
    width: 5rem;
    height: 10rem;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translateY(-50%); 
}
  
.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; 
}
  
.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round; 
}
  
@keyframes rotate {
    100% {
        transform: rotate(360deg); 
    } 
}
  
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0; 
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -3.5rem; 
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -12.4rem; 
    } 
}
  
@keyframes color {
    100%,
    0% {
        stroke: #d62d20; 
    }
    40% {
        stroke: #0057e7; 
    }
    66% {
        stroke: #008744; 
    }
    80%,
    90% {
        stroke: #ffa700; 
    } 
}

/* 
===========================================================
3. General Styles
===========================================================
*/

.mt-100 {
    margin-top:100px;
}

.mt-150 {
    margin-top:100px;
}

.hoverable {
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  transition: box-shadow .25s;
  transition: box-shadow .25s, -webkit-box-shadow .25s;
}

.hoverable:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-1 {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none;
    outline: 0;
}

.clearfix {
    clear: both;
    display: block;
}

.relative {
	position:relative;
}

.autocomplete-input {
    background-color: #fff;
    background-image: url(../img/search-interface-symbol.png);
    background-size: 20px 20px;
    background-position: 12px;
    background-repeat: no-repeat;
    border: 1px solid #eee;
	border: 1px solid #e4dede;
    border-radius: 8px;
    box-sizing: border-box;
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 8px 8px 40px;
    position: relative;
	
    width: 100%;
}

.autocomplete-input::placeholder {
	color:#666666;
}

.autocomplete-input:focus, 
.autocomplete-input[aria-expanded=true] {
    background-color: #fff;
    border-color: rgba(0,0,0,.12);
    box-shadow: 0 2px 2px rgba(0,0,0,.16);
    outline: none;
}

.black-text {
    color: #000000;
}
.white-text {
    color: #ffffff !important;
}

.green-text {
    color: #008744;
}

.red-text {
    color: #cc0000;
}

.grey-text {
    color: #666666;
}

.theme-color {
	color: #F8951E;
}

.block {
	display: block;
}

.breadcrumb {
    font-size: 17px;
    color: #000;
    font-family: 'Lato', 'sans-serif';
}

.breadcrumb a {
    color:#000;
    transition: all 0.3s;
    font-weight: 600;
    margin-right: 10px;
}

.breadcrumb a:hover {
    color:#E02870
}


.default-button-brown {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 44px;
    padding: 0px 25px;
    line-height: 44px;
}
.default-button-brown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CD9933;
    border-radius: 4px;
    z-index: -2;
}
.default-button-brown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}
.default-button-brown:hover {
    color: #000;
}
.default-button-brown:hover:before {
    width: 100%;
}


.default-button {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 44px;
    padding: 0px 25px;
    line-height: 44px;
}
.default-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E02870;
    border-radius: 4px;
    z-index: -2;
}
.default-button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #CD9933;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}
.default-button:hover {
    color: #fff;
}
.default-button:hover:before {
    width: 100%;
}

.header-404  {
    font-size: 50px;
    line-height: 65px;
    color: #000;
}

.header-404-description {
    font-size: 15px;
}

.page-bg {
	height: 450px;
	background-size: cover;
	padding-top: 75px;
	position: relative;
}

.page-bg-2 {
	height: 250px;
	background-size: cover;
	padding-top: 75px;
	position: relative;
    background-position-y: 0;
}

.page-header-text {
	font-family: 'opti', sans-serif;
	font-size: 54px;
	color: #000;
}

.page-content-text {
    font-size:16px;
}
/* 
===========================================================
4. Preloader 
===========================================================
*/

.black_overlay
{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:999;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}

.black_overlay2
{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:999;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}



.white_content 
{
    display: none;
    position: fixed;
    top: 15%;
    left: 29%;
    width: 39%;
    height: 52%;
    padding: 16px 10px;
    background-color: white;
    z-index:1000;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: white_content;
    animation-name: white_content;


}
@keyframes white_content{
    from {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
  
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.white_content2 
{
    display: none;
    position: fixed;
    top: 15%;
    left: 29%;
    width: 39%;
    height: 52%;
    padding: 16px 10px;
    background-color: white;
    z-index:1000;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: white_content2;
    animation-name: white_content2;


}

@keyframes white_content2{
    from {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
  
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

#sic2
{
  overflow-y: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 30px;
}

#sic2a
{
  overflow-y: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 30px;
}




#closebox {
   position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #333;
}

#closebox:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}

#closebox2 {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #666666;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #ddd;
}

#closebox2:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}


.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #666666;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #ddd;
}

.close-button:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}


/* 
===========================================================
5. Header
===========================================================
*/

.navbar-custom {
    border-top: 1px solid #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
}
.navbar-nav .dropdown-menu {
    position: static;
    padding: 0 16px;
}

.navbar-nav .dropdown-menu a {
    color: #333;
}
.navbar-brand img {
    height: 45px;
    margin-top: 0px;
    transition: all 0.3s;
}


nav.sticky ul {
    padding-top: 7px !important;
    padding-left: 7% !important;
    padding-right: 7% !important;
}

nav.sticky .navbar-brand img {
    height: 50px;
}

.secondbag {
    display: none;
    transition: all 0.3s;
}

nav.sticky .secondbag {
    display: block;
    margin-right: 12px;
}

nav.sticky .shopping-circle-count {
    top:-3px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#fff !important;
    border-bottom:1px solid #ddd;
    min-height:95px;
    z-index: 16;
}


.sticky ul li a {
    color: #333333;
    font-family: 'avenir-light', 'verdana';
}

.sticky ul li a:hover {
    background: transparent;
}

.sticky .top-create-button {
    color: #333;
}

.sticky .top-login-button {
    color: #333;
}

.sticky .logged-in-user {
    background: #42AEF7;
    color: #fff !important;
}

.sticky .logged-in-user-name {
    margin-right: 26px;
    color: #42AEF7;
}

.sticky .custom-dropdown-content {
    display: none;
    position: absolute;
    min-width: 190px;
    z-index: 1;
    right: -20px;
    width: auto;
    text-align: left;
    margin-top:-15px !important;
    padding:0;
}


.sticky div.shopping-cart-2 {
    display: inline-block;
}

.sticky .nav-logo-holder {
    width: 120px;
    height: 45px;
}

.uppercase {
    text-transform: uppercase;
}
.top-white-links {
	color: #666666;
	font-family: basic, sans-serif;
	line-height: 40px;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
    position: relative;
    z-index: 10;
}

.top-white-links a {
	color: #666666;
} 

.top-white-links a:hover {
	color: #ef7e2e;
}

.top-white-links span {
    margin-left:20px;
}
.top-white-links i {
    margin-right:5px;
}

.shopping-bag {
	float: right;
    position: relative;
    margin-top:3px;
}

.shopping-bag-height {
    height: 30px;
    margin-left: 20px;
    margin-top: -12px;
}

.shopping-circle-count {
	background: #F8951E;
    border: 2px solid #F8951E;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: -12px;
    line-height: 20px;
}

.slash {
    margin-left: 7px !important;
    margin-right: 7px;
}




.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-dropdown:hover .custom-dropdown-content {
    display: block;
}


.custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 190px;
    -webkit-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    padding: 0px 0px;
    z-index: 1;
    right: 0;
    width: auto;
    text-align: left;
    margin-top:0px;
}

.custom-dropdown-content a {
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: block;
    line-height: 50px;
    transition: all 0.2s;
}

.custom-dropdown-content a:hover,
.custom-dropdown-content a:focus {
    background-color: #F8951E;
    color: #fff;
    display: block;
}


/*  
===========================================================
6. Footer
===========================================================
*/
footer {
    background-color: #222222;
    color: #fff;
    font-size: 15px;
}

footer h4 {
    font-size: 21px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
}

hr.footerline {
    border-top: 2px solid #ADADAD;
}

.fueling-dreams {
    font-size:19px;
    color: #B7B7B7;
    line-height: 27px;
    margin-top: 10px;
}

.footer-link-title { 
    text-transform:uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 500;
    margin-top: 3px;
    margin-bottom: 10px;
}

.footer-link {
    list-style-type: none;
    padding-left: 0px;
}

.footer-link li {
    margin-bottom: 7px;
}
.footer-link li a {
    color:#BCBEC0;
}

.footer-link li a:hover {
    color:#E02870;
}

.footer-newsletter-desc {
   color: #BCBEC0;
   font-size: 16px;
   line-height: 26px;
}

.footer-newsletter-form {
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    width: 100%;
    color: #fff;
    padding: 5px 10px;
}

.footer-newsletter-form::placeholder {
    color: #fff;
}


.social-media-links a {
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
	border: 1px solid #F8951E;
	background: #F8951E;
	background:#fff;
	border: 1px solid #fff;
    color: #333;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-media-links a:hover {
    color: #fff;
	border: 1px solid #F90496;
	background-color: #F90496;
}


.footer-logo {
    height: 80px;
}

.footer-feature {
    color: #BCBEC0;
	/* border-top: 1px solid rgba(255,255,255, 0.1); */
	padding-top:5px;
	padding-bottom: 5px;
	padding-right: 20px;
}
/* 
===========================================================
7. Homepage
===========================================================
*/

#categoriesDisplay {
    position: relative;
    min-height: 250px;
    z-index: 0;
}

.categoriesDisplay .item {
    background-color: #f8f8f8;
    width: 225px;
    height: 200px;
    box-shadow: 1px 1px 2px #ddd;
    position: relative;
    overflow: hidden;
}

.categoriesDisplay .item:hover h4 {
    bottom: 30px;
}
.categoriesDisplay .item:hover .sub {
    display: inline-block;
    position: absolute;
    bottom: 10px;
}

.categoriesDisplay .item h4  {
    font-size: 16px;
    text-transform: uppercase;
    position: absolute;
    color: #242424;
    letter-spacing: 1px;
    bottom: 10px;
    left:0;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-family: 'Lato', 'sans-serif';
    transition: all 0.3s;
}

.categoriesDisplay .item .sub {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left:0;
    text-align: center;
    font-family: 'avenir-light', 'sans-serif';
    color: #242424;
    transition: all 0.3s;
}

.categoriesDisplay .item img {
    position: absolute;
    right: 0%;
    top: -15%;
    transition: all 0.3s;
    transform: scale(0.6);
}

.categoriesDisplay .item:hover img {
    transform: scale(0.85);
    top: -25%;
}


#categoriesDisplay .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    padding: 11px;
}

#categoriesDisplay .owl-nav button.owl-next, 
#categoriesDisplay .owl-nav button.owl-prev, 
#categoriesDisplay button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    font-size: 49px;
    font-weight: 100 !important;
}

#categoriesDisplay .owl-nav {
    margin-top: -45%;
    margin-left: -10%;
}

#categoriesDisplay .owl-prev {
    position: absolute;
    left: -12%;
}

#categoriesDisplay .owl-next {
    position: absolute;
    right: -12%;
}

.arrivals {
    font-size: 16px;
}

.arrival-subheader {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 0px;
}

.arrival-header {
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
}

.cliptext {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit !important;
}

.product-area {
	position: relative;
	cursor: pointer;
	font-family: basic, sans-serif;
	padding: 18px 15px !important;
	transition: all 0.3s;
	background: #242424;
	background: #fff;
	margin-bottom: 0px;
	transition: all 0.3s;
}

.product-area:hover {
	box-shadow: 2px 2px 15px #999;
	z-index: 12;
	position: absolute;
	left:0;
	right: 0;
	top: 0;
	z-index: 15;
}

.product-area:hover .product-pic-area img  {
	transform: scale(1.2);
}

.product-area:hover .product-price {
	transform: translateY(0px);
}

.product-area:hover .actual-price {
	transform: translateY(-40px);
}

.product-area:hover .add-to-cart {
	transform: translateY(-30px);
}

.product-area:hover .product-size-style {
	transform: translateY(-30px);
}

.product-area:hover .product-size-style2 {
	transform: translateY(-30px);
}

.product-area:hover .product-name {
	border-bottom: none;
}

.product-area:hover .product-description {
	display: block;
	opacity: 1;
}

.product-area:hover .product-description-text {
	transform: translateY(0px);
}

.product-area:hover .product-wishlist {
	transform: translateY(0px);
}

.product-area:hover .product-details {
	transform: translateY(0px);
}

.out-of-stock {
	background:#cc0000; 
	color:#fff; 
	font-size:11px; 
	display:inline-block; 
	padding:0 10px; 
	position:absolute; 
	right: 19px;
    top: 27px;
	z-index:10; 
}

.product-pic-area {
	height: 250px;
	width: 100%;
	overflow: hidden;
	text-align: right;
	background: transparent;
	text-align: center;	
}

.product-pic-area img {
	height: 100%;
	width: auto;
	transition: all 0.5s;
}

.product-category {
	font-size: 12px;
	text-align: center;
	color: #ccc;
	padding-top: 5px;
}

.product-name{
	font-size: 20px;
	color: #fff;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 4px;
	padding-top: 0px;
	text-align: center;
	color:#F8951E;
    
}

.product-price {
	font-size: 18px;
	text-align: center;
	color:  #fd9800;
	color:#4c8689;
	padding-top: 5px;
	height: 50px;
	overflow: hidden;
}

.product-description {
	text-align: center;
	display: none;
	opacity: 0;
}

.product-description-text {
	font-size: 13px;
	font-family: basic, sans-serif;
	color: #666666;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 10px;
	transform: translateY(-40px);
	transition: all 0.3s;

}

.product-wishlist {
	padding: 5px 15px;
	background: #333;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	font-size: 12px;
	font-family: basic, sans-serif;
	text-transform: uppercase;
	transform: translateY(-80px);
	transition: all 0.3s;
}

.product-wishlist:hover {
	background: #F8951E;
	color: #fff;
}


.product-details {
	padding: 5px 15px;
	background: #333;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	font-size: 12px;
	font-family: basic, sans-serif;
	margin-left: 10px;
	text-transform: uppercase;
	transform: translateY(-80px);
	transition: all 0.3s;
}

.product-details:hover { 
	background: #F8951E;
	color: #fff;
}

.subcategory-display-box {
	padding:45px 35px 15px 35px;
}

.color-circle {
    width:25px;
    height:25px;
    display: inline-block;
    border:1px solid #666666;
	border-radius:50%;
	cursor:pointer;
	margin-right:10px;
	
}

.color-circle:hover {
    box-shadow: 2px 2px 10px #999;
	border:2px solid #fff;
}

.color-area-holder {
	position:relative; 
	display:inline-block;
}

.color-slash {
	height: 1px;
	background: #000;
	transform: rotate(125deg);
    position: absolute;
    top: 32%;
    left: -5px;
    right: 5px;
}

.color-slash2{
	height: 1px;
    background: #000;
    transform: rotate(125deg);
    position: absolute;
    top: 51%;
    left: -3px;
    right: 2px;
}



.size-circle {
	border:1px solid #ddd;
	color: #666666;
	padding:2px 15px;
	border-radius:15px;
	background:#fff;
	display:inline-block;
	margin-right:5px;
	cursor:pointer;
	font-size:14px;
	font-family:basic;
	line-height:25px;
}

.size-circle:hover {
	border:1px solid #999;
	background:#999;
	color: #fff;
}

.size-circle-active {
   	border:1px solid #999;
	background:#999;
	color: #fff;
}
.detail-title {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.strike-through {
	text-decoration: line-through;
}

.color-circle2 {
    width:16px;
    height:16px;
    display: inline-block;
    border:1px solid #ddd;
	border-radius:50%;
	cursor:pointer;
	margin-right:5px;
	
}

.color-circle2:hover {
    box-shadow: 1px 1px 4px #999;
	border:1px solid #fff;
	padding:2px;
}

.color-selection {
    cursor: pointer;
    text-align:center;
}
.color-selection:hover {
    padding:10px;
    box-shadow: 2px 2px 10px #ddd;
    border-radius:5px;
}

.color-selection-active {
    border:3px solid #F90496;
    border-radius:50%;
}

.color-selection-active2 {
	border: 3px solid #F8951E;
    border-radius: 50%;
}



.actual-price {
	display: block;
	transition: all 0.3s;
}

.add-to-cart {
	background: #F8951E;
	color: #fff;
	padding: 8px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-family: basic, sans-serif;
	text-transform: uppercase;
	display: inline-block;
	transform: translateY(40px);
	transition: all 0.3s;
	line-height:22px;
}

.add-to-cart:hover {
	background: #999;
	color: #fff;
}

.product-size-style {
	transform: translateY(40px);
	transition: all 0.3s;
	display: inline-block;
	color:#333;
	font-size: 12px;
	font-family: basic, sans-serif;
	line-height: 20px;
}

.product-size-style select {
	display:inline-block;
	width:70px;
	background: #fff;
	text-transform: uppercase;
	height:39px;
	padding-left:3px;
}

.product-size-style select:hover,
.product-size-style select:focus {
	background:#fff;
	color:#333;

}


.product-size-style2 {
	transform: translateY(40px);
	transition: all 0.3s;
	display: inline-block;
	color:#333;
	font-size: 12px;
	font-family: basic, sans-serif;
	line-height: 20px;
}


.product-size-style2 select {
	display:inline-block;
	width:120px;
	background: #fff;
	text-transform: uppercase;
	height:39px;

}

.product-size-style2 select:hover,
.product-size-style2 select:focus {
	background:#fff;
	color:#333;
}

.product-size-style2 input {
	height:39px;
	border:1px solid #f2f2f2;
	padding-left:5px;
	font-size:14px;
	width:50px;
	text-transform: uppercase;
}

.product-size-style2 input:hover,
.product-size-style2 input:focus {
	background:#fff;
	color:#333;

} 

.theme-bg-small {
	background-color: #F8951E;
	padding: 10px 15px;
	color:#fff;
	text-transform: uppercase;
	border-radius:3px;
}

.theme-bg-small:hover {
	background-color: #666666;
	color:#fff;
}

.login-form-space {
    font-family: 'Lato', 'sans-serif';
    /* color: #333333; */
}

.login-form-space h4 {
    font-size: 30px;
    font-weight: 700;
}

.login-form-space input[type=submit]{
	color:#fff;
	background:#F8951E;
	border:1px solid #F8951E;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
}
.login-form-space input[type=submit]:hover {
	color:#ccc;
	background:transparent;
	border:1px solid #ccc;
}

.login-form-space textarea {
	background:#f1f1f4;
	height: 70px;
	color: #333;
	width: 100%;
	border-radius: 5px;
	border:none;
	padding: 5px 10px;
	margin-bottom: 20px;
}

.login-form-space select {
	background:#f1f1f4;
	height: 40px;
	color: #333;
	width: 100%;
	border-radius: 5px;
	border:none;
	padding: 5px 10px;
	margin-bottom: 20px;
}

.login-form-space ::-webkit-input-placeholder {
	color: #666666;
}
.login-form-space ::-moz-placeholder {
	color: #666666;
}
.login-form-space:-ms-input-placeholder {
	color: #666666;
}
.login-form-space::placeholder {
	color: #666666;
}


.login-form-space input[type=text],
.login-form-space input[type=email],
.login-form-space input[type=number],
.login-form-space input[type=password] {
	background: #F1F1F4;
    color: #333;
    padding: 5px 15px;
    border: 1px solid #F1F1F4;
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
}


.login-form-space label {
	font-size:14px;
	color: #000;
	font-weight: bold;
}

.login-area-border {
	border: 1px solid #fff;
	padding: 20px 30px;
	margin-top:50px;
	background:#fff;
	color:#666666;
	border-radius:15px;
}


.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .9;
    transition: opacity .15s ease;
}

.carousel-control-prev-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .9;
    transition: opacity .15s ease;
}


.carousel-control-next-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-caption {
    position: absolute;
    right: 10%;
    top: 1.25rem;
    bottom: initial;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}


.carousel-container {
    margin-top: 0;
    position: absolute;
    top: 20%;
    left: 6%;
    right: 0%;
}


.coloured-top {
	color:#000;
	font-size:53px !important;
	font-family: 'opti', serif !important;
	line-height: 56px;
	font-weight: 200;
	width:450px;
}

.under-text {
	color: #000;
	font-size:22px !important;
    line-height: 32px;
	font-family: 'avenir-light', serif !important;
	width:500px;
}

a.slider-call-to-action{
	color:#fff;
	background: #f90497;
	border: 1px solid #f90497;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

.welcome-home-header {
	font-family: 'opti', serif;
	font-size: 40px;
	font-weight: 400;
	color:#000;
}

.welcome-home-text {
	font-family: 'basic', serif;
	font-size:16px;
	line-height: 24px;
	color:#000;
}

a.slider-call-to-action2{
	color:#fff;
	background: #F8951E;
	border: 1px solid #F8951E;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action2:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

a.slider-call-to-action3{
	color:#000;
	background: #fff;
	border: 1px solid #999;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action3:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

.light-pink-section {
	background:#F9F8F3;
	padding: 60px 0px !important;
	display: block;
}

.link-pink-section-form  .header {
	font-family: 'opti', serif;
	font-size: 2.7rem;
	font-weight: 700;
	color: #000;
	margin-top: 22px;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.link-pink-section-form .description {
	font-family: 'basic', serif !important;
    font-size: 17px;
    line-height: 27px;
    color: #000;
}

.link-pink-section-form input[type=text] {
	height: 40px;
	background:#fff;
	color:#666;
	width:100%;
	padding-left:10px;
	border:1px solid #ccc;
	outline:none;
}

.link-pink-section-form input[type=submit] {
	color: #fff;
    background: #F8951E;
    border: 1px solid #F8951E;
    padding: 10px 30px;
    margin-left: 2px;
    text-transform: uppercase;
    margin-top: 15px;
	border-radius: 5px;
}

.link-pink-section-form input[type=submit]:hover,
.link-pink-section-form input[type=submit]:focus {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}


.more-details {
    border-bottom: 1px dashed #333;
    color: #333;
}

.showmore {
	font-size:13px;
	font-family:basic;
	color:#F8951E;
}

.popup-logo {
	margin-top: 20px;
    height: 80px;
}

#popup-close {
	position: absolute;
	right: 15px;
	top: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
	z-index: 10;
	background: #fff;
	color: #333;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border:none;
	border: 2px solid #ccc;
	text-align: center;
	line-height: 55px;
}
 
#popup-close:hover {
	background: #F8951E;
	color: #fff;
	border: 2px solid #F8951E;
}

.popup-box {
    width: 60%;
    height: 80%;
    position: fixed;
    left: 19%;
    top: 11%;
    background-color: #fff;
    z-index: 1501;
    box-shadow: 1px 1px 10px #333;
    display: none;
    color: #333;
    text-align: center;
    overflow: hidden;
}

.popup-box ::placeholder {
	color:#666666;
}
.popup-box input[type=text] {
	width:100%;
	height:35px;
	color:#ddd;
	padding:5px 10px;
	color:#000;
	font-family:basic, sas-serif;
	font-size:14px;
	margin-bottom:10px;
}

.popup-box-space-in {
	padding: 4% 4%;
}

.popup-box input[type=submit] { 
	width:100%;
	height:35px;
	background:#a21f41;
	color:#fff;
	text-align:center;
	border:none;
}
.popup-box input[type=submit]:hover,
.popup-box input[type=submit]:focus
{ 
	background:#666666;
	color:#fff;
}

.popup-background {
    background: #000;
    opacity: 0.9;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    z-index: 1500;
    display: none;
}

.popup-small-text {
	font-size: 15px;
	font-family: 'basic', verdana;
	margin-bottom:0px;

}

.popup-big-text { 
	font-size: 40px;
	line-height:48px;
	font-weight:600;
	font-family: 'opti', verdana;
    margin-bottom: 0px;
}


.popup-side-bg {
    background: url('../img/popup-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height:90vh;
}

.productsByCategory .nav-tabs {
    display: flex;
    justify-content: center;
}

/* 
============================================
8. Contact us
============================================
*/

.scatter a {
    background: transparent;
    border: 1px solid #999;
    color: #999;
    padding: 11px;
    line-height: 17px;
    width: 40px !important;
    height: 40px !important;;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 10px;
    text-align: center;
    display:inline-block;
}
.scatter a:hover {
    color: #D0940D;
    border: 1px solid #D0940D;
}

/* 
============================================
9. Shop
============================================
*/


.filter-area {
    color: #000;
    font-family: 'Lato', 'sans-serif';
    font-size: 15px;
    padding-top:55px;
}

.filter-area a {
    color: #000;
}

.filter-area a:hover {
    color: #E02870;
}

.filter-area h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.filter-area .category {
    font-weight: 600;
    line-height: 30px;
}

.filter-btn {
    background: #EFEFEF;
    color: #000;
    padding: 10px 20px;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
    transition: all 0.3s;
}
.filter-btn:hover {
    background: #E02870;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
}

.filter-fields select {
    height: 40px;
    /* border-top:none;
    border-right:none;
    border-left:none; */
    border:2px solid #ccc;
    margin-right: 15px;
    padding: 3px 10px;
}

.filter-fields select:focus {
    outline: none;
}


/*PRODUCTS*/
.cart-displayer {
    padding: 15px; 
    padding-left: 15px; 
    display: none; 
    position: fixed; 
    top:7%; 
    right:5%; 
    z-index:11000;
    width: 350px !important;
    border-radius:15px;
    background: #fff;
}

.view-shopping-button {
	background: #F8951E;
	color: #fff;
	padding: 10px 15px;
	box-shadow: 2px 2px 5px #ccc; 
	text-align: center;
}

.view-shopping-button:hover {
	background: #666666;
	color: #fff;
}

.checkout-button {
	background: transparent;
	color: #F8951E;
	border: 1px solid #F8951E;
	padding: 10px 15px;
	box-shadow: 2px 2px 5px #ccc; 
	text-align: center;
}

.checkout-button:hover {
	background: #666666;
	border: 1px solid #666;
	color: #fff;
}

.shopping-cart-table {
	color: #333;
	font-family: basic,sans-serif;
}


.shopping-cart-table input {
	background: #f1f1f5;
	padding: 10px 15px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border: none; 
	width: 80px;
	height: 50px;
	font-size: 20px;
}

.decrease {
	border-bottom-right-radius: 10px;
	height:25px;
	background: #f1f1f5;
	color:#333;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	border-left: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}
.decrease:hover {
	background: #F8951E;
	color:#fff;
}

.increase {
	border-top-right-radius: 10px;
	height: 25px;
	background: #f1f1f4;
	color:#333;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.increase:hover {
	background: #F8951E;
	color:#fff;
}

.input-width {
	width: 80px;
	float: left;
}

.input-width input {
	width: 100%;
}

.quantity-min{
	min-width:160px;
}

.buttons-width {
	width: 40px;
	float: left;
	line-height: 25px;
}


.overline {
	border-top: 1px solid #ddd;
}

.underline {
	border-bottom: 1px solid #ddd;
	line-height: 10px;
}



.cart-totals-display {
	background: #F9F8F3;
	padding: 30px;
	min-height: 200px;
	color:#333;
}

.cart-header {
	font-size:25px;
	color: #333;
	border-bottom: 4px solid #ccc;
	padding-bottom: 10px;
}

.cart-subitems {
	font-size: 15px;
	color: #333;
	padding-top: 10px;
}

.cart-subtotal {
	font-size: 18px;
}

.cart-total {
	font-size: 24px;
}

.shipping-location-form input[type=text],
.shipping-location-form select {
	background:#4B4B4B;
	color:#fff;
	height: 30px;
	margin-bottom: 10px;
	width:100%;
	border:none;
	padding:6px;
}


.shipping-location-form input[type=text]:focus,
.shipping-location-form select:focus {
	background: #fff;
	color: #000;
}

[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:after {
    background-color: #FF9900;
}

[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:before, [type="radio"].with-gap:checked+label:after {
    border: 2px solid #FF9900;
}

.product-thumbnail {
	height: 80px;
	border:1px solid #ddd;
	text-align:center;
	background: #F1F2F0;
}

.small-description {
	font-size:14px;
	font-family:'basic', 'sans-serif';
}


.space-in {
	padding-left:55px !important;
	padding-right:55px !important;
}

.zoom-area img {
    width:100%;
    height:auto;
}




#product-magnify .item img {
	border:1px solid #ddd;
	padding:5px;
	background:#fff;
	cursor:pointer;
	opacity:1.0;
	transition:all 0.3s linear;
}

#product-magnify .item img:hover {
	opacity:0.6;
	box-shadow:2px 2px 10px #ccc;
}

.ash-page-bg {
	background:#F9F8F3;
	color:#000;
	min-height: 350px;
}

.ash-page-bg  .category-header-text {
	font-family: 'opti', sans-serif;
	font-size: 54px;
	line-height: 56px;
	color: #000;
	text-align: center;
	margin-top:9%;
	position: relative;
	margin-bottom: 10px;
}

.ash-page-bg  .category-header-text2 {
	font-family: 'opti', sans-serif;
	font-size: 20px;
	line-height: 32px;
	color: #000;
	text-align: center;
	margin-top:9%;
	position: relative;
	margin-bottom: 10px;
}


.product-detail-add-area {
	/* border: 4px solid #F8951E;
	border-radius: 10px;
	padding:20px 25px; */
}

.product-detail-add-area-inner {
	display: block;
}

.product-detail-add-area-inner .action {
	background: #F8951E;
	color:#fff;
	border-radius: 10px;
	padding: 10px 20px;
	display: inline-block;
	margin-left: 10px;
}
.product-detail-add-area-inner .action:hover {
	background: #666666;
	color:#fff;
}

.product-detail-add-area-inner input {
    background: #f1f1f4;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    width: 80px;
    height: 50px;
    font-size: 20px;
}

.product-detail-name {
	font-size:25px;
	color:#333;
	font-family: 'basic', sans-serif;
	text-transform: capitalize;
}

.product-detail-price {
	font-size: 20px;
	font-family: sans-serif;
	font-weight: 200;
    color: #4c8689;
}
.include {
	font-family: 'basic';

	font-size:16px;
	line-height:27px;
}

.sub-head {
	font-size:13px;
	font-family:basic;
	color:#333;
}

.sub-desc {
	font-size:16px;
	line-height: 27px;
	color:#333;
	text-align:center;
	padding-left:55px;
	padding-right:55px;
	font-family:basic;
}
.product-detail-description {
	margin-top:10px;
	font-size:14px;
	font-family: 'basic';
	line-height:22px;
    color: #000;
}

/* 
CHECKOUT
*/
.login-show-area {
	font-size:20px;
	color: #333;
	font-family: basic, sans-serif;
	font-weight: 200;
	margin-top:20px;

}
.login-show-area .header {
	font-size:20px;
	color: #333;
	font-family: basic, sans-serif;
	font-weight: 300;
}	

.login-show-area a {
	color: #E02870;
}	

.login-show-area a:hover {
	color: #666666;
}

.login-show-area2 {
	font-size:20px;
	color: #333;
	font-family: basic, sans-serif;
	font-weight: 200;
	margin-bottom: 10px;

}

.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -47px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.field-icon2 {
    float: right;
    margin-left: -25px;
    margin-top: -47px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.field-icon3 {
    float: right;
    margin-left: -25px;
    margin-top: 11px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.toggle-password {
    cursor: pointer;
}


.checkout-link {
	color:#F8951E;
}

.checkout-link:hover {
	color:#333;
}


.disabled {
	cursor:not-allowed;
}


.delItem {
    color: #cc0000;
}

.show_login_form {
    color: #E02870;
}

.delivery-background {
    background-color: #7571f9; 
    padding:20px;
}

#delivery-options {
    display: none;
}

#delivery-options h4 {
    font-size: 20px;
    width: 550px;
    margin-right: 30px;
}

#delivery-options p {
    font-size: 15px;
    width: 550px;
    margin-right:30px;
}

.list-group .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
}

.badge-primary {
    background-color: #7571f9;
}

.badge {
    font-weight: 400;
}

.green-notification-area {
	padding: 40px;
	font-size: 18px;
	background: #8CBD8C;
	color:#ffffff;
}

.dotted-lines {
	border: 3px dashed #666666;
	padding: 25px;
}

.side-dotted {
	border-right: 1px dashed #666666;
}

.side-line{
	border-right: 1px solid #ddd !important;
}


.side-line2{
	border-left: 1px solid #ddd !important;
}

.side-line:last-child{
	border-right: none;
}

.bottom-line{
	border-bottom: 1px solid #ddd;
}

.make-payment {
	background: #8CBD8C;
    color: #fff;
    padding: 0px 10px;
    border-radius: 10px;
    margin-top: 5px;
    display: inline-block;
    font-size: 14px;
}

.make-payment:hover {
	background: #666666;
	color: #fff;
}

.received-item {
	display: inline-block;
	padding: 15px 30px;
	min-height: 80px;
	color: #000;
} 

/*  
========================================
10. Autocomplete
========================================
*/

/* Custom style for autocomplete dropdown */
.ui-menu .ui-menu-item{
    background-color: #f7e7e7;
    background-color: #f1f1f1;
    margin: 3px;
    width: 495px;
    z-index: 10000;
    list-style-type: none;
}
.ui-menu {
    margin: 3px;
    width: 600px;
    z-index: 10000;
}
.ui-autocomplete-row a{
    display: inline-block;
    text-decoration: none;
    width: 100%;
}
.ui-autocomplete-row a span{
    padding: 10px;
    font-size: 15px;
    text-align: center;
}
.ui-autocomplete-row a img{
    vertical-align: middle;
}
.ui-state-active, .ui-widget-content .ui-state-active {
    border: none;
    background: #EFEFEF;
    color: inherit;
}
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0;
}

.trackList {
    list-style-type: none;
}

.trackList li{
    display: block;
    color: #ccc;
    line-height: 45px;
}

.hh-grayBox {
	background-color: #F8F8F8;
	margin-bottom: 20px;
	padding: 35px;
  margin-top: 20px;
}
.pt45{padding-top:45px;}
.order-tracking{
	text-align: center;
	width: 33.33%;
	position: relative;
	display: block;
}
.order-tracking .is-complete{
	display: block;
	position: relative;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	border: 0px solid #AFAFAF;
	background-color: #f7be16;
	margin: 0 auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
	z-index: 2;
}
.order-tracking .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
}
.order-tracking.completed .is-complete{
	border-color: #27aa80;
	border-width: 0px;
	background-color: #27aa80;
}
.order-tracking.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}
.order-tracking p {
	color: #A4A4A4;
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p{color: #000;}
.order-tracking::before {
	content: '';
	display: block;
	height: 3px;
	width: calc(100% - 40px);
	background-color: #f7be16;
	top: 13px;
	position: absolute;
	left: calc(-50% + 20px);
	z-index: 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background-color: #27aa80;}


/* RESPONSIVE */
@media (min-width: 576px) {

    .secondbag {
        display: none;
        transition: all 0.3s;
    }

    nav.sticky ul {
        padding-top: 7px !important;
        padding-left: 7% !important;
        padding-right: 7% !important;
    }

    nav.sticky .navbar-brand img {
        height: 60px;
    }

    nav.sticky .secondbag {
        display: block;
        margin-right: 50px;
    }

    nav.sticky .shopping-circle-count {
        top:-3px;
    }

    

    .sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background:#fff !important;
        border-bottom:1px solid #ddd;
        min-height:95px;
        z-index: 16;
    }


    .sticky ul li a {
        color: #333333;
        font-family: 'avenir-light', 'verdana';
    }

    .sticky ul li a:hover {
        background: transparent;
    }

    .sticky .top-create-button {
        color: #333;
    }

    .sticky .top-login-button {
        color: #333;
    }

    .sticky .logged-in-user {
        background: #42AEF7;
        color: #fff !important;
    }

    .sticky .logged-in-user-name {
        margin-right: 26px;
        color: #42AEF7;
    }

    .sticky .custom-dropdown-content {
        display: none;
        position: absolute;
        min-width: 190px;
        z-index: 1;
        right: -20px;
        width: auto;
        text-align: left;
        margin-top:-15px !important;
        padding:0;
    }


    .sticky div.shopping-cart-2 {
        display: inline-block;
    }

    .sticky .nav-logo-holder {
        width: 120px;
        height: 45px;
    }

    .page-bg-2 {
        height: 250px;
        background-size: cover;
        padding-top: 75px;
        position: relative;
        background-position-y: -94px;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
        min-width: 185px;
    }

    .navbar-custom {
        border-top: 1px solid #F5F5F5;
        border-bottom: 1px solid #F5F5F5;
    }

    .navbar-brand {
        margin-right: 0px;
    }

    .navbar-brand img {
        height: 66px;
        margin-top: 0px;
        transition: all 0.3s;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: initial;
        align-items: center;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-link {
        color: #000;
    }

    nav ul li a {
        display: inline-block;
        color: #333333;
        font-family: 'avenir-light', 'verdana';
        margin-top:5px;
        border-radius: 0px;
        font-size: 15px !important;
        font-weight: 900;
        padding-left:20px; 
        padding-right:20px;
        position:relative;
        line-height:40px;
        opacity: 1;
        transition: all 0.3s;
    }

    nav ul li a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #333;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    nav ul li a:hover:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    
    nav ul li a:hover {
        background:transparent;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
        min-width: 185px;
    }

    .navbar-custom {
        border-top: 1px solid #F5F5F5;
        border-bottom: 1px solid #F5F5F5;
    }

    .navbar-brand {
        margin-right: 0px;
    }

    .navbar-brand img {
        height: 66px;
        margin-top: 0px;
        transition: all 0.3s;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: initial;
        align-items: center;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-link {
        color: #000;
    }

    nav ul li a {
        display: inline-block;
        color: #333333;
        font-family: 'avenir-light', 'verdana';
        margin-top:5px;
        border-radius: 0px;
        font-size: 15px !important;
        font-weight: 900;
        padding-left:20px; 
        padding-right:20px;
        position:relative;
        line-height:40px;
        opacity: 1;
        transition: all 0.3s;
    }

    nav ul li a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #333;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    nav ul li a:hover:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    
    nav ul li a:hover {
        background:transparent;
    }

    .shopping-bag {
        float: right;
        position: relative;
    }

    .shopping-bag-height {
        height: 30px;
        margin-left: 30px;
        margin-top: -12px;
    }

    
   
    #categoriesDisplay .owl-nav {
        margin-top: -11%;
        margin-left: -5%;
    }
    
    #categoriesDisplay .owl-prev {
        position: absolute;
        left: -2%;
    }
    
    #categoriesDisplay .owl-next {
        position: absolute;
        right: -2%;
    }

    footer h4 {
        font-size: 35px;
        line-height: 43px;
        font-weight: 500;
        color: #fff;
    }
}
  