@keyframes DOTZ {
  0% { 
    background-color: #c1c3c3;
    color: #c1c3c3; 
    transform: translateY(-50px) rotateX(0deg) rotateY(360deg) rotateZ(0deg);
  }
  
  50% { 
    background-color: #000; 
    color: #000; 
    transform: translateY(0px) rotateX(360deg) rotateY(0deg) rotateZ(180deg);
  }
  
  100% {
    background-color: #c1c3c3; 
    color: #c1c3c3; 
    transform: translateY(-50px) rotateX(0deg) rotateY(360deg) rotateZ(0deg);}
}

body {
	color: #000;
	
	
	background-color: #ffffff;
	
	
	
	font-family: 'Roboto', sans-serif;
	
	
	font-weight: 300;
}



body.loading {
  overflow: hidden;
}

strong {
  font-weight: 600;
}

h1 {
	font-size: 72px;
	display: inline-block;
}

h1, h2, h3, h4, h5 {
  
	font-family: 'Roboto', sans-serif;
	
	font-weight: 300;
	letter-spacing: 0.09375em;
	color: #c1c3c3;
}

a { 
  position: relative;
  
  color: #c1c3c3;
  
  font-weight: 300;
  outline: none;
  border: none;
}

a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0px;
  border-top: #000 1px solid;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

a:hover {
  color: #c1c3c3;
}

a:hover:after {
  width: 100%;
}

a.active {
  color: #c1c3c3;
}

a.active:after {
  width: 100%;
}

img {
  max-width: 100%;
  font-size: 0.9rem !important;
  line-height: 0.9rem !important;
}

#loadscreen {
  
  background-color: #ffffff;
  
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; 
}

#loadscreen img {
  width: 400px;
  transform: translateX(-15px);
  animation: DOTZ 2.5s infinite ease-in-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out; 
}

#loadscreen .dots {
  font-size: 72px;
  animation: DOTZ 5s infinite ease-in-out;
  animation-fill-mode: both;
  border-radius: 100px;
  display: inline-block;
}

#loadscreen .dots:nth-of-type(1) {
  animation-delay: 0.2s;
}

#loadscreen .dots:nth-of-type(2) {
  animation-delay: 0.4s;
}

#loadscreen .dots:nth-of-type(3) {
  animation-delay: 0.6s;
}

.loaded #loadscreen {
  opacity: 0;
  pointer-events: none;
}

.loaded #loadscreen .dots, .loaded #loadscreen img {
  animation-play-state: paused;
}

#top-bar {
  width: 100%;
  height: 25px;
  background-color: gray;
  text-align: center;
}

#top-bar p {
  height: 25px;
  line-height: 25px;
  margin: 0;
  padding: 0;
}

#header-wrapper {
  position: relative;
  display: block;
   
  background-color: #ffffff;
  
   
  color: #000000;
  
  width: 100%;
  height: 100px;
  z-index: 5;
}

#header-container {
  max-width: 1280px;
  width: 100%;
  height: 100px;
  line-height: 100px;
  margin: auto;
}

#header-container a {
   
  color: #000000;
  
  display: inline-block;
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  height: 100%;
  line-height: 100px;
}

#header-container a:hover {
  color: #c1c3c3;
}

#header-container #logo {
  vertical-align: middle;
  height: 90px;
  padding: 5px 0;
}

#header-container #logo img {
  height: 90px;
  padding: 0 1rem;
  max-height: 100%;
}

#header-container h1 {
   
  color: #000000;
  
  font-weight: 300;
  font-size: 1.5rem;
  padding-left: 5px;
  margin: auto;
  line-height: 100px;
  display: block;
  margin-top: -10px;
}

#nav {
  position: relative;
  display: inline-block;
  float: right;
}

#nav ul {
  padding: 0;
  margin: 0;
}

#nav ul li {
  display: inline-block;
}

#nav ul li .cornercart {
  position: relative;
  top: auto;
  right: auto;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0 15px 3px 0;
  z-index: 1;
}

#header-container #nav .desktop-categories {
  display: table;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
   
  background-color: #ffffff;
  
  border-top: 1px #000 solid;
  -webkit-box-shadow: 0px 25px 32px -6px rgba(0,0,0,0.6);
  -moz-box-shadow: 0px 25px 32px -6px rgba(0,0,0,0.6);
  box-shadow: 0px 25px 32px -6px rgba(0,0,0,0.6);
  -webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

#header-container #nav .desktop-categories ul li {
  display: block !important;
  text-align: center;
  padding: 10px 0;
  white-space: nowrap;
  height: auto;
  width: 100%;
  line-height: 2rem;
}

#header-container #nav .desktop-categories ul li a {
  display: inline;
  height: auto;
  line-height: 1rem;
}

#header-container #nav .category-trigger {
  position: relative;
}

#header-container #nav .category-trigger:hover {
  z-index: 11;
}

#header-container #nav .category-trigger:hover .desktop-categories {
  opacity: 1;
  pointer-events: auto;
}

.nav li {
  display: inline-block;
  margin: auto 2.8rem;
}

.nav li:hover a:not(.category-trigger a):after {
  width: 100%;
}

.nav ul li a {
  padding: auto 10px auto;
  font-size: 0.9rem;
}

#flex-wrapper {
  min-height: 75vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;		
  
}

#content-wrapper {
  
	border-radius: 15px;
  width: 1280px;
  max-width: 100%;
  margin: 30px auto;
  padding: 1rem;
}

#footer {
  max-height: 150px;
  height: 15vh;
  text-align: center;
  position: relative;
  margin: auto;
  font-size: 0.8rem;
  
	 
  background-color: #ffffff;
  
  
  
  color: #000000;
  
}

#footer a {
   
  color: #000000;
  
}

#footer a:hover {
  color: #c1c3c3;
}

.cornercart {
	position: fixed;
	right: 15px;
	top: 30px;
	font-size: 1.6rem;
	 
  background-color: #ffffff;
  
	z-index: 101;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.cornercart:hover {
  box-shadow: 0 2px 20px 5px rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
}

.cornercart:hover .cart-count {
  width: 100%;
}

.cart-count {
  opacity: 1;
  position: absolute;
  right: 0;
  width: 50%;
  text-align:center;
  font-size: 1.25rem;
  color: #ffffff;
	background-color: #c1c3c3;	
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
}

.nav {
  text-align: center;
  margin-top: 0;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.socials {
  text-align: center;
	font-size: 1.5rem;
}

.socials li {
	display: inline-block;
	width: 30px;
	margin: auto 7px;
	font-size: 1.2em;
}

.socials li a {
  font-weight: 400;
}

.mobile-copyright {
  position: absolute;
  bottom: 60px;
  text-align: center;
}

/* SPLASH PAGE */
.splash {
  text-align: center;
}

.splash h1 {
  text-align: center;
  margin: auto auto 20px;
}

.splash hr {
  margin: 20px auto 20px auto;
}

.carousel {
  height: auto;
  max-height: none;
}

.caption {
  position: absolute;
  bottom: 0px;
  padding: 0 20px;
  z-index: 2;
  background-color: #ffffff;
}

.caption h2 {
  font-size: 1.3rem;
  margin: 20px auto;
}

.caption-container {
  position: relative;
  max-height: 600px;
}

.slick-slide {
  max-height: 600px;
  overflow: hidden;
}

.slick-slide > div {
  max-height: 600px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev {
  left: 0;
  z-index: 1;
  width: 50px;
  height: 100%;
}

.slick-next {
  right: 0;
  width: 50px;
  height: 100%;
}

/* SIDENAV */
.btn-floating.sidenav-trigger {
  display: block;
  position: fixed;
  top: 30px;
  right: 75px;
	 
  background-color: #ffffff;
  
	z-index: 101;
}

.slide-out-logo {
  margin: auto;
  text-align: center;
}

.slide-out-logo h1 {
  margin: auto;
  font-size: 1rem;
}

#category-slide-out {
  
  color: #000000;
  
  
  
  background-color: #ffffff;
  
}

#slide-out {
  
  color: #000000;
  
  
  
  background-color: #ffffff;
  
}

.divider {
  
  background-color: #000000;
  
}

.sidenav li > a, .sidenav a {
  
  color: #000000;
  
}

.sidenav li > a:hover, .sidenav a:hover {
  color: #c1c3c3;
}

/* STORE */

.right-sticker {
  position: absolute;
  width: 65px;
  height: 65px;
  top: 0;
  right: 0;
  background-color: #c1c3c3;
  color: #000;
  z-index: 3;
  font-size: 15px;
	text-transform: none;
}

.left-sticker {
  position: absolute;
  width: 65px;
  height: 65px;
  top: 0;
  left: 0;
  background-color: #c1c3c3;
  color: #000;
  z-index: 3;
  font-size: 15px;
	text-transform: none;
}

.product-wrapper {
	padding: 1rem;
}

.product-wrapper a {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.product-item {
	position:relative;
	padding-top:100%;
	border: 2px #c1c3c3 solid;
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
}



.product-item img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.product-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: 0.5s ease-in;
	z-index: 2;
}

.product-overlay:before {
  content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: white;
	opacity: 0.8;
	z-index: 5;
}

.product-overlay p {
  
	font-family: 'Roboto', sans-serif;
	
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #000;
	text-align: center;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	text-transform: none;
	z-index: 6;
}

.grid-item:hover .product-overlay {
  opacity: 1;
}

.item-name {
  display: block;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 2rem;
}

.old-price {
  opacity: 0.5;
  text-decoration: line-through;
}

.price {
  color: black;
}

/* PRODUCT DROPDOWNS */

.input-wrapper {
	padding: 0rem 1rem 0rem;
}

.input-wrapper .col {
  margin: auto;
  padding: 0;
}

.grid-item .btn {
  height: 3.2rem;
  line-height: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
}

.grid-item a.btn:not(.disabled):after {
  width: 100%;
  border-top: #c1c3c3 1px solid;
}

.grid-item a.btn:hover:after {
  width: 100%;
  border-top: #000 1px solid;
}

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

.select-wrapper input.select-dropdown {
	border: 2px #c1c3c3 solid;
	padding-left: 1rem;
	width: calc(100% - 1.2rem);
	color: transparent;
	text-shadow: 0 0 0 #000;
	background-color: #ffffff;
	font-style: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select-wrapper input.select-dropdown:focus {
    border-bottom: 1px solid #000;
}

.select-wrapper .caret {
	fill: #c1c3c3;
	z-index: 1;
	pointer-events: none;
}

.disabled .caret {
  display: none;
}

.select-dropdown li.disabled, .select-dropdown li.disabled > span, .select-dropdown li.optgroup {
  opacity: 0.7;
	color: #000 ;
	background-color: transparent;
}		

.select-wrapper input.select-dropdown:disabled {
  opacity: 0.7;
  width: 99%;
  color: #000 ;
  border: none !important;
}

.dropdown-content li > span {
	color: #000 ;
}

.dropdown-content {
  background-color: #ffffff;
	border: 2px #c1c3c3 solid;
	box-sizing: content-box;
}

/* GRID SIZING OPTIONS */

@media screen and (max-width: 45em) {
 .grid-sizer, .grid-item {
	width: 100%;
  } 
}

@media screen and (min-width: 45.1em) and (max-width: 63.9375em) {
 .grid-sizer, .grid-item {
	width: 50%;
  } 
}



@media screen and (min-width: 64em) {
 .grid-sizer, .grid-item {
	width: 33%;
  } 
}


	
/* PRODUCT PAGE */

#product {
	margin: auto;
}

.single-image {
  padding: 0;
  margin-bottom: 20px;
}

.single-image img {
  height: auto;
  width: 100%;
}

.product-description {
	padding: 2em;
}

.product-description h5 {
	text-align: center;
}

.product-boxes {
  display: block;
  margin: auto auto 0;
}

.product-boxes .col.s6.m3 {
  height: 150px;
}

.product-boxes .material-placeholder {
  height: 150px;
}

.product-boxes img {
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

/* OVERRIDES */

.loading .glass-case {
  transform: translateX(500vw);
}

.glass-case {
  margin: auto;
  width: 100% !important;
}

.gc-display-area {
  background-color: transparent;
  width: 100% !important;
  border: 0;
}

.gc-icon {
  background: #ffffff;
  border: #c1c3c3;
  color: #000;
  border-radius: 20px;
}

.gc-icon-next {
  right: 0;
}

.gc-icon-prev {
  left: 0;
}

.gc-icon-next::before, .gc-icon-prev::before .gc-icon-close::before {
  top: 0;
}

.gc-icon-close::before {
  right: 0;
}

.gc-icon-next::before {
  right: 0;
}
  
.gc-icon-prev::before {
  left: 0;
}

.gc-zoom-area {
  background-color: transparent;
  border-color: #c1c3c3;
}

.glass-case ul li {
  background-color: transparent;
  border: 0;
}

.glass-case ul li.gc-active {
  border: 2px solid #c1c3c3;
}

.glass-case ul li:hover, .glass-case ul li.gc-active:hover {
  border: 2px solid #000;
}

.glass-case ul li .gc-display-container img {
  width: 100% !important;
  height: auto !important;
}


/* OPTIONS */
.nav li a, .item-name, h1, h2, h3, h4, h5 {
  text-transform: none;
}

/* MEDIA QUERIES - TABLET AND BELOW */
@media only screen and (max-width:720px) {	
  #loadscreen {
    height: 100%;
  }

  #header-wrapper {
    height: 50px;
  }
  
  #header-container {
    height: 50px;
    line-height: 50px;
  }
  
  #header-container a {
    line-height: 50px;
  }
  
  #header-container #logo {
    vertical-align: middle;
    height: 40px;
    padding: 5px 0;
  }
  
  #header-container #logo img {
  height: 40px;
  max-height: 100%;
  }
  
  #header-container h1 {
    line-height: 40px;
    margin-top: -5px;
  }
  
  .product-overlay {
	  opacity: 1;
  }
  
  .product-overlay:before {
	  background-color: transparent;
  }
  
  .product-overlay p {
    font-size: 1rem;
    position: absolute;
    top: 85%;
	  background-color: #ffffff;
  }
  
  .input-wrapper .select-wrapper input.select-dropdown {
    height: 3.1rem;
  }
  
  .grid-item .btn {
    height: 3.3rem;
  }
  
  .btn-floating.sidenav-trigger {
    top: 5px;
  }
  
  .cornercart {
    top: 5px;
  }
  
  .nav {
    display: none;
  }
	
	.socials li {
	  margin: auto;
	}
}

@media only screen and (max-width:590px) {
  h1 {
    font-size: 40px;
  }
  .caption {
    display: none;
  }
}

/* MATERIALIZE OVERRIDES */
.btn {
	text-transform: none;
  display: block;
	background-color: #c1c3c3;
	color: #000;
	
	font-family: 'Roboto', sans-serif;
	
	font-weight: 800;
	margin: 15px auto auto;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	
}

.btn:hover, .btn:focus {
	background-color: #000;
	color: #c1c3c3;
}

.cornercart:hover, .btn-floating:hover, .btn-floating:active, .btn-floating:focus {
	background-color: #c1c3c3;
}

a.btn-floating:after {
  width: 0;
}

.btn-floating i {
	
  color: #000000;
  
	cursor: pointer;
}

.btn-floating:hover i {
	
  color: #000;
  
}

.splash .btn {
  display: inline-block;
  margin-bottom: 20px;
}

.row {
	margin-bottom: 0;	
}

/* GC OVERRIDES */
.gc-slide-container-current {
  z-index: 9 !important;
}

/* GENERAL OVERRIDES */

button, input, optgroup, select, textarea { 
	
	font-family: 'Roboto', sans-serif;
	
}