/* ------------------------------------------------------------------------------------------------
 *
 * This is where all of the CSS code is handled for your theme.
 *
 * We recommend you break your CSS into multiple files and put them in a separate
 * directory. We've used a "stylesheets" directory in our example below. After that we'll use
 * Sprockets (getsprockets.org) to package them into one file. Sprockets also allows you to
 * use Sass/SCSS (sass-lang.com) by ending your file name with .sass or .scss, and you can also
 * use LESS (lesscss.org) by ending your file with .less.
 *
 * However, if you don't have much CSS, or you're just a glutton for punishment,
 * you could simply put all of your CSS in this file. It's up to you.
 *
 * ------------------------------------------------------------------------------------------------
 */

/*
 * Here we're including a 3rd-party stylesheet we put in stylesheets/vendor written in normal CSS,
 * as well as a few custom Sass stylesheets we've written for different areas of the store
 *
 *= require_directory ./stylesheets/vendor
 *= require stylesheets/layout
 *= require stylesheets/products
 *= require stylesheets/product
 *= require stylesheets/cart
 *
 */

* {
    list-style-type: none;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body {
	background-color: #FFF;
	color: #2e2e2e;
    font-family: 'gt_walsheim_regular', sans-serif;
    font-size: 1em;
    line-height: 1.45;
    margin: 0;
}

a {
   color: #2e2e2e;
   text-decoration: none;
}

a:hover {
	color: #2e2e2e;
}

a:focus {
   outline: none;
}

img {
   max-width: 100%;
}

strong {
   font-family: 'gt_walsheim_promedium';
   font-weight: 400;
}


/****   FONTS   ****/

@font-face {
   font-family: 'gt_walsheim_regular';
   src: url('https://s3.amazonaws.com/uptopstudios/GT-Walsheim-Regular.woff2') format('woff2'),
      url('https://s3.amazonaws.com/uptopstudios/GT-Walsheim-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: 'gt_walsheim_promedium';
   src: url('https://s3.amazonaws.com/uptopstudios/gt-walsheim-pro-medium-webfont.woff2') format('woff2'),
      url('https://s3.amazonaws.com/uptopstudios/gt-walsheim-pro-medium-webfont.woff') format('woff');
   font-weight: normal;
   font-style: normal;

}

h1,
h2 {
   font-family: 'gt_walsheim_promedium';
   font-weight: 400;
   line-height: 1.25;
   margin: 0 0 0.75em 0;
}

h1 {
   font-size: 1.625em;
}

h2 {
   font-size: 1.438em;
}

h3 {
   border-bottom: 1px solid #EEE;
   font-size: 0.913em;
   font-family: 'gt_walsheim_regular';
   line-height: 1.25;
   font-weight: 400;
   margin: 0 0 0.3em 0;
   padding-bottom: 0.5em;
}

p {
   font-size: 0.913em;
   margin-bottom: 0.75em;
}

@media screen and (min-width: 1024px) {

   h1 {
      font-size: 2em;
   }

   h2 {
      font-size: 1.5em;
   }

   p {
      font-size: 1.125em;
   }

}


/****   CONTENT   ****/

.button {
   background-color: #222;
   border: none;
   border-radius: 0;
   color: #FFF;
   cursor: pointer;
   display: inline-block;
   font-family: 'gt_walsheim_promedium';
   font-size: 1.125em;
   margin: 1em 0 1em 0;
   padding: 1.2em 1.7em 1em 1.7em;
   text-transform: capitalize;
}

.buttonDisabled {
   opacity: 0.5;
   pointer-events: none;
}

.clearfix:after {
   clear: both;
   content: ".";
   display: block;
   height: 0;
   visibility: hidden;
}

.wrap {
	margin: auto;
   max-width: 1180px;
   position: relative;
   width: 90%;
}


/****   HEADER  ****/

.header {
	margin: 2em 0;
}

.logo {
	display: block;
	float: left;
	width: 140px;
}

.logo a,
.logo img {
	display: block;
}

.nav {
   display: block;
   float: right;
}

.nav a {
   font-size: 1.063em;
}

.nav li {
   display: inline-block;
   margin-left: 1.5em;
   line-height: 1.25;
   vertical-align: middle;
}

.nav li:hover,
.nav .current {
   border-bottom: 1px solid #2e2e2e;
   color: #2e2e2e;
}


@media screen and (min-width: 1024px) {

	.header {
		margin: 3em 0;
	}

   .logo {
   		width: 220px;
   }

}


/****   PRODUCTS   ****/

.products {
   margin: 1em -1em 0 -1em;
}

.products a {
   display: block;
   margin: auto;
}

.products li {
   display: inline-block;
   font-size: 0.750em;
   line-height: 1.25;
   margin-bottom: 2em;
   position: relative;
   width: 32%;
   text-align: center;
}

.products .sold {
   top: 50%;
   left: 50%;
   margin-top: -30px;
   margin-left: -30px;
   background-color: #000;
   color: #fff;
   display: table;
   position: absolute;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   text-transform: uppercase;
   text-align: center;
}

.products .sold span {
   font-size: 0.875em;
   font-family: 'gt_walsheim_promedium';
   display: table-cell;
   vertical-align: middle;
   padding: 2px 8px 0;
}

.products .sale {
   display: none;
}

@media screen and (min-width: 1024px) {

	.products {
		margin: 2em 0 0 0;
	}

	.products li {
   		margin-bottom: 3em;
		width: 19.5%;
	}

	.products .sold {
		width: 70px;
		height: 70px;
	}

	.products .sold span {
		font-size: 1em;
	}

}


/****   PRODUCT   ****/

.product .description span,
.sizeChart span {
   display: block;
   font-size: 0.875em;
   margin: 2em 0 0.6em 0;
   text-transform: uppercase;
}

.product form select {
   font-size: 1em;
	margin: 1em 0 1em 0;
	width: 150px;
}

.thumbnails {
   position: relative;
   text-align: center;
   width: 90%;
   margin: auto;
   margin-top: 8px;
   z-index: 1;
}

.thumbnails li {
   display: inline-block;
   margin: 0 1%;
   max-width: 90px;
   width: 13%;
}

.thumbnails img:hover,
.thumbnails .selected img {
   opacity: 0.7;
}


@media screen and (min-width: 1024px) {

   .product .details {
      float: right;
      margin-top: 6em;
      width: 38%;
   }

	.product .description span,
   .sizeChart span {
		font-size: 0.913em;
	}

   .product .productImages {
      float: left;
      margin: 0 6% 0 0;
      width: 56%;
   }

}


/****   SIZING CHART   ****/

.sizingChart {
   width: 100%;
   text-align: center;
}

.sizingChart td {
   padding: 0.6em 0.6em 0.5em 0.6em;
}

.sizingChart .tableHeader td {
   font-family: 'gt_walsheim_promedium';
   font-weight: 400;
}

.sizingChart tr:nth-child(even) {
   background-color: #f0f0f0;
}

.sizeChart {
   margin-top: 2em;
}

.sizeChart a,
.shippingInfoWrap a {
   background-image: url('https://s3.amazonaws.com/prolificshop/arrowDown.png');
   background-repeat: no-repeat;
   background-size: 12px;
   background-position: 100% 40%;
   border-bottom: 1px solid;
   display: inline-block;
   font-size: 0.875em;
   margin: 0 0 1em 0;
   padding-right: 1.25em;
   text-transform: uppercase;
}

.sizeChart .sizeChartOpened,
.shippingInfoWrap .sizeChartOpened {
   background-image: url('https://s3.amazonaws.com/prolificshop/arrowUp.png');
   background-repeat: no-repeat;
   background-size: 12px;
   background-position: 100% 40%;
   padding-right: 1.25em;
}

.sizeTable,
.shippingInfo {
   font-size: 0.813em;
}

.shippingInfoWrap {
   margin-top: 1em;
}

@media screen and (min-width: 1024px) {

   .sizeChart a,
   .shippingInfoWrap a {
      font-size: 0.913em;
   }

   .sizeTable,
   .shippingInfo {
      font-size: 0.938em;
   }

}


/****   NEWSLETTER   ****/

.newsletter {
   border-top: 1px solid #DDD;
   line-height: 1.8em;
   padding: 3em 0 2em 0;
}

.newsletter input[type="email"] {
   background-color: transparent;
   border: 1px solid #222;
   border-radius: 0;
   color: #222;
   float: left;
   height: 31px;
   font-size: 1em;
   max-width: 500px;
   padding: 1em 1.25em;
   width: 56%;
   -webkit-appearance: none;
}

.newsletter input[type="email"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
   color: #222;
}
.newsletter input[type="email"]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #222;
   opacity: 1;
}

.newsletter input[type="email"]::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #222;
   opacity: 1;
}

.newsletter input[type="email"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #222;
}

.newsletter .button {
   background-color: transparent;
   border: 1px solid #222;
   border-left: none;
   color: #222;
   float: left;
   font-size: 0.913em;
   font-family: 'gt_walsheim_promedium';
   height: 62px;
   margin: 0;
   width: auto;
}

.newsletter .response {
   margin-top: 1em;
   font-style: italic;
}

.mc-field-group {
   display: inline-block;
   margin: auto;
}

@media screen and (min-width: 1024px) {

   .newsletter {
		padding: 4em 0 3em 0;
   }

   .newsletter input[type="email"] {
   		height: 28px;
		width: 500px;
   }

}

/****   FOOTER   ****/

.footer {
   font-size: 0.913em;
   padding: 5em 0 4em 0;
}

.footer a {
   border-bottom: 1px solid;
   display: inline-block;
   line-height: 1;
   margin-right: 2.25em;
}

.footer a:last-of-type {
   margin-right: 0;
}

@media screen and (min-width: 1024px) {

   .footer {
      font-size: 1em;
   }

   .footer .copyright {
      float: left;
   }

   .footer .footer-nav {
      float: right;
   }

}


/****  CART  ****/

body#cart form ul {
  border-bottom: dashed 1px #dddddd;
  margin-bottom: 2em;
}
body#cart form ul + p {
  float: left;
}
body#cart form button {
  float: right;
  margin: 1.2em 0;
}
body#cart form li {
  overflow: hidden;
}
body#cart form li img {
  display: block;
  float: left;
  margin-right: 30px;
}
body#cart form li h2 {
  float: left;
  width: 60%;
}
body#cart form li p {
  float: left;
  padding-top: 7px;
}
body#cart form li p input {
  margin-right: 10px;
  text-align: center;
  width: 15px;
}
body#cart form li a.remove {
  display: inline-block;
  background: #f1f1f1;
  border-radius: 20px;
  height: 20px;
  line-height: 18px;
  margin-left: 20px;
  text-align: center;
  width: 20px;
}
body#cart form li a.remove:hover {
  background: #dddddd;
}