@font-face {
  font-family: myFont;
  src: url(AvenirLTStd-Roman.otf);
}

@font-face {
  font-family: myFontBlack;
  src: url(AvenirLTStd-Black.otf);
}


html
{
 margin: 0;
 padding: 0;
}

body
{
 margin: 0;
 padding: 0;
 /*font-family: "Montserrat", sans-serif;*/
 font-family: myFont;
 font-size: 12px;
 line-height: 1;
}

h1
{
  color: rgb(175, 173, 173);
}

p 
{
  line-height: 1.8;
  font-size: 1rem;  
}

#divSection h2
{
  font-size: 1.1rem;
  text-align: center;
  background-color:#43c2c7;
  color:white;
  margin-top: 10px;
  margin-bottom: 10px;
}

#divSection h2 a
{
  font-size: 1.5rem;
  text-align: center;
  color:white;
}

/* HEADER */
.head {
 position: sticky;
 top: 0;
 z-index: 999;
 width: 100%;
 height: 145px;
 padding-top: 5px;
 /*background-image: url(../images/holly-jolly-8.png);*/
 background-repeat: no-repeat;
 background-color: white;
 background-size: 100px;
 -webkit-transition: all 0.3s;
 transition: all 1s;
 opacity: 0.9;
 padding-bottom: 5px;
 margin-bottom: 30px;
 text-align: center;
}

@media (min-width: 600px) {
  .head {
    background-size: 200px;
  }
}

.logo {
  height: 100px;
  margin-bottom: 0px;
}

.allHearts {
  height: 40px;
  margin-bottom: 0;
  padding: 0;
}


.topnav {
 font-size: 1.2em;
 width: 100%;
 text-align: center;
 margin-top: 40px;
}

.catResp {
  display: none;
}

.topnav span {
 padding-left: 0px;
 padding-right: 0px;
}

.topnav span a {
 text-decoration: none;
 color: white;
}

.icon {
 display: none;
}

.messageNotify {
  position: fixed;
  top: 0px;
  right: 50%;  
  opacity: 0;
}

.msgIsVisible {
  position: fixed;
  top: 0px;
  right: 200px;
  border:1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: green;
  color: white;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  transition:  all 1.5s ease-in-out;  
  transform: translateY(1.25rem); 
  opacity: 1;  
  z-index:9999999;
}

.loader {
  display: none;
}

.loaderShow {
  display: inline-block;
}

.addLoader {
  display: none;
}

.addLoaderShow {
  display: inline-block;
}

/* Navigation */

.menu a {
  text-decoration: none;
}


.menu ul {
  background: #43c2c7;
  list-style: none;
  padding-left: 0;
  display: table;
  background-color: #43c2c7;
  width: 100%;
}


.menu li {
  color: white;
  display: inline-block;
  padding: 0.5rem 1rem;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
  background-color: #43c2c7;
}
  
.menu li a {
  color: white;
}

.menu li:hover {
  background: black;
  cursor: pointer;
}

.menu li:hover a {
  outline: none;
}

.menu ul li ul {
  border-width: 0 0 0 1px;
  border-style: solid;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;  
  transition: all 0.5s ease;
  margin-top: 0.5rem;
  left: 0;
  display: none;
  z-index: 99999;
}

.menu ul li:hover > ul,
.menu ul li:focus > ul,
.menu ul li ul:hover,
.menu ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
}

.menu > ul > li > ul > li {
  clear: both;
  width: 100%;
}

/* End Navigation */

.container {
  position: relative;
}

/* Hearder Options */

.divHeaderOptions {
  position: absolute;
  right: 0px;
  top: 90px;
}

.optButtonDiv {
  height: 25px;
  vertical-align: bottom;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  vertical-align: bottom;
}

.optButton {
  height: 100%;
}

.cartNotifyBubble {
  position: absolute;
  top: -5px;
  right: 5px;
  padding: 3px 5px 3px 5px;
  background-color: red;
  color: white;
  font-size: 0.65em;
  border-radius: 50%;
  display: none; 
}
/* User Profile */

.profile  {
  position: fixed;
  right: 0px;
  top: 100px;
  display: none;
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  background-color: lightgrey;
  z-index: 9999;
  overflow: scroll;

}

/* Search */

#divSearch {
  text-align: center;
  position: fixed;
  top: 5px;
  right: 0px;
  width: 200px;
}

#btnSearch {
   position: absolute;
   right: 10px; 
   top: 10px;
   height: 20px;
   z-index: 9999;
}

.search {
    display: block;
    position: absolute;
    top: 5px;
    right: 0px;    
    width: 100%;
    padding: 3.75px 16px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 6px;
    -webkit-appearance: none;
    color: #99A3BA;
    border: 1px solid #43c2c7;;
    background: #fff;
    transition: border .3s ease;
}

/* Event pictures */

@media (max-width: 599px) {
  .eventLandscape {
    display: none;
  }

  .eventPortrait {
    display: block;
    max-height: calc(100vh - 55px);
    overflow: hidden;
  }
}
@media (min-width: 600px) {
  .eventLandscape {
    display: block;
    max-height: calc(100vh - 55px);
    overflow: hidden;
  }

  .eventPortrait {
    display: none;
  }  
}

.topBanner {
  display: block;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  margin: auto;
  text-align: center;
}

.topBanner img {
  max-width: 100%;
  margin: 10px auto;
}


/* Sale Banner */
.saleBanner {
  display: block;
  max-width: 100%;
  margin: 10px auto;
}

/* Product Tags */
.tagContainerTop{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;    
  width: 100%;
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.tagContainer{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;    
  width: 800px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.tagDiv, .tagDivSplit, .tagDivFull{
  margin: 2px;
  position: relative; 
  display: inline-block;
}

.tagImg {
  max-width: 100%;
}

@media (max-width: 450px) {
  .tagContainerTop, .tagContainer {
    flex-wrap: wrap;
  }
  .tagDivSplit {
    width: 48%;
  }
  .tagDivFull {
    width: 98%;
  }  
}

.tagSpan {
  position: absolute;
  padding: 2px; 
  bottom: 8px; 
  left: 0px;
  font-family: myFont;  
  color: black; 
  font-size: 1em;
  width: 100%;
  background: white;
}
/* Featured Designer */
#designerPicDiv {
  margin:10px;
  float:left;
  text-align:center;
  max-width:100%;
}

#divProdPlace {
  scroll-margin-top: 200px;
}

@media (max-width: 450px) {
  #designerPicDiv {
    width: 100%;
    float: none;
  }
  /*.tagContainer {
    flex-wrap: wrap;    
  }
  .tagImg {
    max-width: 100%;
    height: 110px;
  }  */
  .tagSpan {
    font-size: 0.7em;
    bottom: 2px;
  }  
}

@media (max-width: 280px) {
  #designerPicDiv {
    width: 100%;
    float: none;
  }
  /*.tagContainer {
    flex-wrap: wrap;    
  }
  .tagImg {
    max-width: 100%;
    height: 85px;
  }  */
  .tagSpan {
    font-size: 0.5em;
    bottom: 2px;    
  }    
}

/* Shopping Cart */

.cart  {
  position: fixed;
  right: 0px;
  top: 100px;
  display: none;
  width: 400px;
  height: 400px;
  background-color: lightgrey;
  z-index: 9999;
  overflow: scroll;
}

#shopping-cart {
	margin: 10px;
}

#product-grid {
	margin: 10px;
}

#shopping-cart table {
	width: 100%;
	background-color: #F0F0F0;
}

#shopping-cart table td {
	background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.txt-heading {
	color: #211a1a;
	border-bottom: 1px solid #E0E0E0;
	overflow: auto;
}

#btnEmpty {
	background-color: #ffffff;
	border: #d00000 1px solid;
	padding: 5px 10px;
	color: #d00000;
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 0px;
}

#btnCheckout {
	background-color: #ffffff;
	border: green 1px solid;
	padding: 15px 10px;
	color: green;
	text-decoration: none;
	border-radius: 3px;
	margin: 15px 15px;
}

.cart-item-image {
	width: 50px;
  border: #E0E0E0 1px solid;
  vertical-align: middle;
  margin-right: 15px;
}

.btnAddAction {
  padding: 5px 5px;
  background-color: #efefef;
  border: #E0E0E0 1px solid;
  color: #211a1a;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
}

.btnCartItemOptions {
    margin-right: 2px;
    width: 10px;
}
/* End Shopping Cart */

/* Products */

.productsCont{
  padding-top: 40px;
}

.saleCont{
  display: none;
}

.saleContShow{
  display: default;
}

.products {
  display: flex;
  flex-wrap: wrap;
  margin-left: 40px;
  margin-right: 40px;
}

.product-card {
  max-width: 100%;
}

.product-card-hide {
  display: none;
}

.prodVariants
{
  flex-grow: 1;
  flex-basis: 21%;
  margin: 0.5%;
  padding: 5px;
}

.prodVariantsCarousel
{
  padding: 5px;
}

.slick-prev:before {
  content: "<";
  color: #43c2c7; 
  font-size: 40px;
  font-weight: bold;
}

.slick-next:before {
  content: ">";
  color: #43c2c7;
  font-size: 40px;
  font-weight: bold;  
}

.prodCarousel
{
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  height: auto;
}

.carouselInner
{
  margin:0px;
  padding: 10px;
}

.variantThumbnails {
   display: inline-block !important;
   height: 20px;
   width: 20px;
   margin: 5px;
   padding: 2px;
   border-radius: 75%;
   border: #43c2c7 1px solid;
}

.product-image a img {
  max-width: 100%;
  z-index: 999;
}

#saleTag {
  display: inline-block;
  background: red;
  position: absolute;
  color: white;
  margin-top: 10px;
  font-size: 1.5em;
}

.priceDisc {
  color: red;
}

.prodDesc {
  margin-top: 20px;
  font-size: 1.2rem;
}

#skuDesc {
  margin-top: 5px;
  font-size: 0.8rem;
}

.prodNav {
  max-width: 20%;
  height: 600px;
  overflow-y: scroll;
}

prodDisp {
  max-width: 70%;
}

.product-info {
  margin-top: 5px;
  margin-bottom: auto;
}

.alsoBoughtCont {
  border-width: 1px;
  border-style: solid;
  padding: 20px;
  margin-top: 30px;
}

.interestCont {
  border-width: 1px;
  border-style: solid;
  padding: 20px;
}

.sizeContainer {
  display: inline-flex;
  text-align: center;
  border-width: 0.5px 0px 0.5px 0.5px;
  border-style: solid;
  width: auto;
}

.sizeColumn {
  border-right-width: 0.5px;
  border-right-style: solid;
}

.sizeRow {
  border-width:0.5px 0 0 0;
  border-style: solid;
  margin:0;
  padding:2px;
  font-size: 0.7em;
}

.optionsContainer {
  display: flex;
  padding: 20px;
}

.compContainer {
  padding-left: 20px;
}

@media (max-width: 920px) {
  .prodVariants {
    flex: 1 21%;
  }
  .products {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .prodVariants {
    flex: 1 46%;
  }
  .products {
    margin-left: 2px;
    margin-right: 2px;
  }
}

/* End Products */

/* SKU Details */

.js .slider-single > div:nth-child(1n+2) { display: none }

.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }

.slider-nav .slick-slide { cursor: pointer; }

.divProduct {
  width: 100%;
  max-width: 100%;
  display:flex;
  flex-wrap: wrap;
}

.divProdImages {
  margin-right: 10px;
  width: 50%;
  display: table-row;
}

.prodNav {
  display:inline-block;    
  max-width: 15%;
  margin-right: 5px;
  vertical-align: top;
  max-height: 600px;
  height: auto;
  overflow-y: scroll;  
}

.prodDisp {
  display:inline-block;  
  max-width: 82%;
}

.divProdDetails {
  max-width: 45%;
}

.slider-nav {
  margin: 0 5px;
  width: 100px;
  float: left;
}

.slider-single {
  overflow: auto;
}

.slick-slide {
  text-align: center;
  height: auto;
}
.slick-slide.is-active img {
	border-width: 2px;
  border-style: solid;
}

.slideImage {
  height: auto;
  width: 100px;
  margin-bottom: 5px;
}

@media screen and (max-width: 900px) {

.slideImage {
  width: 35px;
  }

.slider-nav {
  width: 35px;
  }

}

#prodHeading {
  font-size: 1.5rem;
}

@media screen and (max-width: 800px) {
  .prodNav {
    max-height: 450px;
  }  
}

@media screen and (max-width: 539px) {
 .divProdImages{
   width: 100%;
   margin-right: 0;
  }
  .prodNav {
    max-height: 350px;
  }
 .divProdDetails {
  margin-top: 30px;
  max-width: 100%;
 }

 .slideImage {
  width: 25px;
 }

 .slider-nav {
  width: 25px;
 }

 #prodHeading {
  font-size: 1rem;
 }

}

/* End SKU Details */


/* CONTENTS */
.contents {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: none;
}


.break h1{
 color: white;
}
/* RESPONSIVE */

@media screen and (max-width: 900px) {

 .topnav li{
   display: none;
  }
 .logo {
   height: 70px;
 }
 .topnav.responsive {
   position: relative;
   top: 30px;
  }
 .divHeaderOptions {
   top: 30px;
   right: 20%;
 }

 .cat {
   display: none;
 }

 .catResp {
   display: initial;
 }

 .icon {
   display: block;
   position: absolute;
   top: 25px;
   left: 10px;
 }
 .topnav.responsive ul li{
   float: none;
   display: block;
   text-align: left; 
   left: 15px;
 }
 .menu li{
   padding: 10px;
 }

 .menu ul li ul {
  transform: translate(133px,-35px);
 }

 .allHearts {
   height:30px;
 }

 #divSearch {
  top: 105px;
  width: 100%;
 }

 .divHeaderOptions {
  right: 5px;
  top: 15px;
 }

}

/* FOOTER */
footer {
 border-width: 2px 0px 0px 0px;
 border-style: solid;
 background-color: lightgrey;
 color: black;
 padding-top: 5px;
 display: block;
}
footer h2 {
 font-size: 1.2em;
 margin-bottom: 5px;
 margin-top: 20px;
 text-align: center;
}

footer h4 {
 font-size: 1.0em;
 margin-bottom: 5px;
 margin-top: 20px;
 text-align: center;
}
footer h2 a {
 color: black;
 font-weight: 300;
 text-decoration: none;
}
footer h2 a:hover {
 color: black;
 font-weight: 300;
 text-decoration: none;
}
footer ul {
 padding: 0px;
}
footer ul li {
 margin: 0px 5px;
 list-style: none;
}
footer ul li a {
 font-size: 1em !important;
 text-align: center;
 color: black;
 font-weight: 300;
}
footer ul li a:hover {
 color: black;
 font-weight: 700;
 text-decoration: none;
}

footer span a {
 font-size: 1em !important;
 text-align: center;
 color: #aaa;
 font-weight: 300;
}
footer span a:hover {
 color: black;
 font-weight: 700;
 text-decoration: none;
}

footer .copyright {
 margin-top: 25px;
}
footer .copyright p {
 font-size: 1em;
 text-align: center;
}

/* Sign in/Sign up and Profile */
.signBody{
  background: #43c2c7; 
  width: 100%;   
}

.form-control {
	font-size: 16px;
	transition: all 0.4s;
	box-shadow: none;
}

.form-control:focus {
  border-color: #43c2c7;
}

.form-control, .btn {
    border-radius: 50px;
		outline: none !important;
}

.signup-form {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
	padding: 30px 0;
  background: #43c2c7;
  text-align: center;
}

.signup-form img {
  width: 100px;
  margin: 0 auto;
}

.signup-form form {
  border-radius: 5px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  padding: 40px;
}

.signup-form h2 a {
	color: #43c2c7;
} 

.signup-form h2 {
	text-align: center;
	font-size: 18px;
	margin: 10px 0 20px;
}

.signup-form h6 {
	color: red;
} 

.signup-form span {
	float: left;
  font-size: 12px;
	margin: 2px 16px 2px;  
}

.signup-form .hint-text {
	color: #999;
	text-align: center;
	margin-bottom: 20px;
}

.signup-form .form-group {
	margin-bottom: 20px;
}

.signup-form .form-group .cb {
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  position: relative;
  top: -1px;
}

.signup-form .form-group .chkLabel {
  display: block;
  padding-left: 15px;
  text-indent: 5px;
  float: left;
  font-size: 14px;
  margin-bottom: 20px;
}


.signup-form .btn {        
  font-size: 18px;
	line-height: 26px;
  font-weight: bold;
	text-align: center;
}

.signup-btn {
	text-align: center;
	background: #43c2c7;
  border-color: #43c2c7;
	transition: all 0.4s;
}
	
.signup-btn:hover {
	background: #43c2c7;
	opacity: 0.8;
}

.error {
  display: block;
  color: red;

}

.profileOpt {
  color: white;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: white;
  margin: 20px;
  font-size: 14px;
}

