/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.7rem; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.7;
  font-weight: 400;
  font-family: "Georgia", "Times New Roman", serif;
  color: #222;
  background-color:#FFF;

   }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #466095; text-decoration:none;border-bottom:1px dotted #bbc6cf;}
a:hover {
  color: #000; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #bbc6cf;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #FFF;
  background-color:#6c7073;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #bbc6cf;
  background-color: #FFF;
  border-color: #bbc6cf; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

dl{
  margin:0;
}
dl img{
  border:0;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 4rem;
  margin-bottom: 5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

#portfolio img{
  margin: 2rem 0 1rem 0;
}
#portfolio h3{
  text-align:center;
  letter-spacing:.4rem;
  font-size:2rem;
  margin-bottom:1rem;
}
#portfolio h4{
  text-align:center;
  font-size:1.8rem;
  color:#333232;
}
#portfolio h3 a{
  color:#333232;
  border:0;
  text-transform:uppercase;

}
#nav li{
  margin: 0;
}
#magic img{
  margin:0;
  border:0;
}
section#magic a{
  border:0;
  text-decoration:none;
}
#portfolio a:hover,#magic a:hover,#sketches a:hover{
  color:#CCC;
}
#topbar{
  background-color:#FFF;
  vertical-align:baseline;
  margin:0;
}
#topbar ul{
  float:left;
  margin: .5rem 0 0 0;
}
#topbar ul li{
  margin:0;
}
#topbar li{display:block;float:left; padding:0;}
#topbar ul li a{
  font-size:1.4rem;
  line-height:1.2rem;
  padding:.6rem 2.5rem .7rem 1.5rem;
  text-decoration:none;
  border:0;
  color:#6c7073;
  display:block;
  margin:0;
}
#topbar p{
  font-size:1.4rem;
  line-height:1.2rem;
}
#topbar a:active,#topbar a:hover{
  color:#111111 !important;
  background-color:#e5ebef;
}
#topbar #logo a{
  padding:2.5rem 4rem .5rem 0;
}
#topbar #logo a:active,#topbar #logo a:hover
{
  background:transparent;
}
#topbar ul ul{
  display:block;
  border-left:1px solid #e5ebef;
}
#topbar ul ul li{
  display:block;
  float:none;
}


div.mailinglist{
  padding:1rem 2rem 1rem 2rem;
  background-color:#FAFAFA;
  float:right;
  border:0;
  margin-top:.5rem;

}
#topbar div.mailinglist p{
  font-size:.1.1rem;
  line-height:1.9rem;
  margin-bottom:.3rem;
}

div.mailinglist form{
  color:#835c40;

}
div.mailinglist form input{
  font-size:1.4rem;
  height: 2.8rem;
  line-height:2rem;
}
.mailinglist form .email{
  background-color:#FFF;
  border:1px solid #bbc6cf;
  border-radius:0;
  color:#6c7073;
}
div.mailinglist form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #6c7073;
}
div.mailinglist form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #6c7073;
}
div.mailinglist form input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #6c7073;
}
div.mailinglist form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #6c7073;
}
div.mailinglist .button{
  color:#6c7073;
  border:0;
  border-radius:0;
  background-color:#FFF;
  font-size:1.2rem;
  letter-spacing:.1rem;

}
div.mailinglist .button:hover{
  color:#364150;

}

.widget_shopping_cart{

}

nav.woocommerce-breadcrumb{
  background-color:#FAFAFA;
  font-size:1.4rem;
  color:#6c7073;
  display:block;
  padding:.5rem;
}
nav.woocommerce-breadcrumb a{
  color:#6c7073;
  text-decoration:none;
  border:0;
}
div.woocommerce-message{
  background-color:#FAFAFA;
  border-bottom:1px solid #e5ebef;
  font-weight:bold;
  color:#cba135;
  padding:3rem 2rem 2rem 2rem;
  text-align:center;
  margin-bottom:1rem;
}
div.woocommerce-message a.button{
  background-color:#FFF;
  border-color:#bbc6cf;
  margin-right:2rem;
  color:#cba135;
}
.post-type-archive h1.cattitle{
  display:none;
}
h1.cattitle{
  font-size:4.5rem;
  color:#835c40;
  padding-top:2rem;
  margin-bottom:.5rem;
}
h1.cattitle a{
  color:#222222;
}
.term-description{
  text-align:left;
  margin-bottom:1rem;
}
h1.bigtitle, .page-title{
  text-transform:uppercase;
  text-align:center;
  margin-top:3rem;
  margin-bottom:2rem;
  letter-spacing:.6rem;
  border-bottom:1px solid #e5ebef;
  font-size:4rem;
  color:#111111;
}
h1.bigtitle a{
  color:#111111;
  border:0;
}
h1.woocommerce-thankyou-order-received{
  line-height:1.6;
  margin-top:2rem;
}
#store{
  background:#FAFAFA;
  color:#888;
  margin:0;
}
#store .description{
  margin-bottom:1rem;
  border-bottom:1px solid #e5ebef;
}
#store .description p{
  font-size:1.4rem;
  line-height:2.2rem;
  margin-bottom:.5rem;
}
.images img{
  width:100%;
  padding:0;
  background:#6c7073;
}
.row.producttypes{
  background-color:#e5ebef;
  padding:5rem 4% 2rem 4%;
  border-bottom:1px solid #bbc6cf;
  margin-top:2rem;
  margin-bottom:2rem;
}
.producttypes img{
  width:98%;
  padding:1%;
}
.producttypes a{
  text-decoration:none;
  line-height:0;
  border:0;
  display:block;
  background:#222222;
  border-bottom:3px solid #050505;

}
.producttypes a:hover, .producttypes a:active{
  background-color:#111111;
}

.products img{
  width:100%;
  background:#6c7073;
}
.products h3{
  font-size:1.6rem;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:.1rem;
  color:#835c40;
  margin-bottom:1rem;
  margin-top:1rem;
}
.products .four.columns{
  display:inline-block;
  background:#FFF;
  border-bottom:2px solid #FFF;
  border-left:1px solid #FFF;
  border-right:1px solid #FFF;
  width:33.33%;
  margin-left:0;
  padding-bottom:1rem;
}
.row.products{
  vertical-align:baseline;
}
.images img.thumbnailgallery{
  width:22%;
  padding:1%;
  clear:none;
  margin-left:1%;
  margin-bottom:1rem;
}
#store .images a,#store .products a{
  text-decoration:none;
  border:0;
}
#store .images a:hover,#store .products a:hover{
background:none;
}
table.variations{
  font-size:1.4rem;
  width:100%;
  border-bottom:1px solid #e5ebef;

}
table.variations thead td{
  border:0;
}
table.variations tbody td{
border-top:0;
border-bottom:0;
padding: 0;
line-height:1.4rem;
background-color:#FFF;
}
table.variations tbody td.productname{
  padding-left:1rem;
}
table.variations tbody tr.alt td{
  background-color:#FAFAFA;

}

table.variations tbody tr:hover{
  background-color:#FAFAFA;
}
td.addtocart{
  padding:0;
  vertical-align:center;
}
td.pricegrid{
  text-align:right;  
}
.price{margin-right:1rem;}

.single_add_to_cart_button{
  background:none;
  border:0;
  padding:0;
  width:100%;
  font-size:1.2rem;
  background-color: #FFF;
  color:#cba135;
  height:100%;
  margin:0;
  border-radius:0;
  text-transform:none;
}
.single_add_to_cart_button i{
  color:#cba135;
  margin-left:.5rem;
}
table.variations tbody tr.alt .single_add_to_cart_button{
  background-color:#FAFAFA;

}
.single_add_to_cart_button:hover,.single_add_to_cart_button:active, table.variations tbody tr.alt .single_add_to_cart_button:hover,table.variations tbody tr.alt .single_add_to_cart_button:active{
  color:#835c40;
  background-color:#e5ebef;
}
#store ul{
  margin-left:0;
}
ul.producttags.single{
  margin-bottom:3rem;
}
ul.producttags, ul.collection{
  list-style-type:none;
  text-align:center;
  font-size:1.4rem;
  margin-bottom:.5rem;
  line-height:2rem;
}
ul.producttags li{
  display:inline-block;
  color:#bbc6cf;
  padding:.2rem;
  margin:0 1rem 0 0;
  background:transparent;
}
ul.producttags li a{
  color:#bbc6cf;
  
  border:0;
}
ul.producttags li a:hover,ul.producttags.single li a:hover,ul.collection.single li a:hover{

color:#364150;
}
ul.producttags.single li, ul.producttags.single li a{
  color:#ba6b33;
}
ul.collection{
  margin-bottom:0;
  margin-top:3rem;
}
ul.collection li a{
  color:#6c7073;
  text-decoration:none;
  border:0;
  display:block;
  padding:1rem;
  background-color:#e5ebef;
}
#portfolio ul.producttags li{
  color: #364150;
}
#portfolio ul.producttags li a{
  font-size:1.6rem;
  color: #364150;
}
#portfolio a:hover{
  color:#364150;
}
footer#footer{
  text-align:center;
  font-size: 1rem;
  letter-spacing:.2rem;
  text-transform:uppercase;
  border:0;
  background:transparent !important;
}
div.now{
  color:#6c7073;
  background: #FAFAFA;

  float:right;
  padding:1rem 3rem;
  font-size:1.6rem;
}
.now h5{
  margin-left:-1rem;
  margin-bottom:0;
  font-size:2rem;
}
.now p{
  line-height:2.5rem;
}
.now li{

}
.follow li a{
  display:block;
  background-color:#e5ebef;
  color:#FFF;
  border:0;
  padding: .5rem 1rem;
}

#portfoliofooter h3{
  color:#333232;
  font-size:3rem;
  padding-bottom:1rem;
  margin:0 0 2.5rem 0;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.4rem;
  border-bottom:1px solid #333232;
}
#portfoliofooter img{
  margin-bottom:5rem;
}


ul.cart_list.product_list_widget{
  border-left: 1px solid #e5ebef;
  list-style-type: none;
  padding:2rem;
  background-color:#e5ebef;
}
ul.cart_list.product_list_widget img{
  float:left;
  margin-right:1rem;
}
li.mini_cart_item{
  display:block;
  border-top:1px solid #bbc6cf;
  background:#FFF;
  height:128px;
}
dt.variation-Material{
  display:none;
}
dd.variation-Material{
  margin-left:0;
}

.types h3{
  margin-bottom:0;
}
.types h3 a{
  border-bottom:1px solid #FAFAFA;
  color:#222222;
}
.types h4{
  font-size:1.4rem;
  font-style:italic;
  color:#6c7073;
  margin-bottom:0;
  border-bottom:1px solid #e5ebef;

}
.types img{
  margin-left:1rem;
}
.types{
  margin-bottom:2rem;
  margin-top:2rem;
}
.alignright{
  float:right;
}
.alignleft{
  float:left;
}
.product-quantity{
  width:2rem;
}
.qty{width:6rem;}

div.cart-collaterals{
  text-align:right;
  padding: 1rem 2rem;
  background-color:#FAFAFA;
  border-bottom:1px solid #e5ebef;
}

.loop{
  padding:0 1rem;
}
.box{
  background-color:#FFF;
  padding:1rem 2rem;
}
.sidebar{
  color:#364150;
  font-size:1.8rem;
}
.related{
  margin-top:4rem;
}
#magic{
  line-height:0;
}
#magic img{
  margin:0;
}

.woocommerce-checkout-review-order{
  background-color:#FFF;
  padding:1rem 1.5rem;
  color:#111111;
}
.page-description{
  margin: 0;
  padding:0;
}
.category-image a{
  border:0;
  text-decoration:none;
}
.myfooter{
  text-align:center;
  color:#835c40;
  padding:6rem 0;
}
.myfooter a{
  color:#cba135;
  border-color:#333232;
}
section{
margin:0;
}
section#cart,section#checkout{
  margin-top:-2.5rem;
}
section#cart{
  background-color:#FAFAFA;
}
section#cart input[type="radio"]{
  display:none;
}
section#cart p{
  margin-bottom:0;
}
section#cart p.form-row{
  margin-bottom:.2rem;
  display:block;
  clear:both;
}
section#cart p.form-row label{
font-weight:normal;
font-size:1.4rem;
line-height:1.9;
margin-bottom.4rem;
color:#6c7073;
width:20%;
float:left;
text-align:right;
}
label .required{
  border:0;
  color:#f3883d;
  margin-right:-1rem;
}

.wc_payment_method.payment_method_stripe input,section#cart .woocommerce-shipping-fields input,section#cart .woocommerce-shipping-fields textarea, section#cart .woocommerce-billing-fields input,section#cart .woocommerce-shipping-fields select{
width:70%;
float:right;
border-radius:0;
line-height:1.6;
height:3.4rem;
background-color:#FAFAFA;
border-color:#e5ebef;
}
.countrylabel{
  width:25%;
  margin-right:10%;
}
.countrylabel.required{
  margin-right:0;
}
.country{
  width:100%;
}
section#cart .woocommerce-billing-fields select{
}
.select2-drop.select2-display-none.select2-with-searchbox.select2-drop-active{
  width:60%;
}
ul.wc_payment_methods{
  list-style-type:none;
}
 .wc_payment_method.payment_method_stripe p{
 display:none;
}
.wc_payment_method.payment_method_stripe label[for="payment_method_stripe"] img{
  display:inline-block;
}


section#cart h3#ship-to-different-address label{
  font-weight:400;
}
div#billing_details, div#shipping_details{
  background-color:#FFF;
  padding:1rem;
}
#order_review table{
}
.product-remove a{
  display:block;
  border-bottom:0;
  background:#bbc6cf;
  font-size:3rem;
  padding: .1rem .1rem;
  border-radius:5px;
  color:#FFF;
  text-align:center;
  font-weight:bold;
  width:4rem;
  height:4rem;
  line-height:1.2;

}
td.actions{
  padding-top:0;
}
.product-remove a:hover{
  background-color:#6c7073;
}

input[type="submit"].button.primary#place_order{
  background-color:#ffd362;
  border: 0;
}
input[type="submit"].button.primary#place_order:hover{
  background-color:#cba135;
}
table.woocommerce-checkout-review-order-table{
  width:100%;
}
section#cart .woocommerce-shipping-fields input[type="checkbox"]{
float:left;
width: 3rem;
margin: .8rem 0 0 1rem;
}
section#cart .woocommerce-shipping-fields label[for="ship-to-different-address-checkbox"]{
  float:left;
}
section#cart .woocommerce-shipping-fields label[for="ship-to-different-address-checkbox"]:hover{
  color:#111111;
}
section#cart .woocommerce-shipping-fields input[type="checkbox"] + div{
  display:none;
}
section#cart .woocommerce-shipping-fields input[type="checkbox"]:checked + div{
  display:block;
}

section#blog header{
  text-align:center;
}
section#blog h1.entry-title{
  margin-top:5rem;
  font-size:5rem;
  font-weight:normal;
  margin-bottom:0;
}
section#blog h1.entry-title em{
  font-weight:normal;
}
section#blog h1.entry-title a{
  text-decoration:none;
  border:0;
  color:#111111;
}
section#blog .entry-meta{
  margin-bottom:3rem;
  padding-bottom:1rem;
  color:#bbc6cf;
  font-size:1.6rem;
  text-align:center;
  line-height:1.5;
}
section#blog .entry-meta a{
  color:#6c7073;
  text-transform:uppercase;
  text-decoration:none;
  border:0;
  font-size:2.5rem;
  letter-spacing:.03rem;
}
section#blog .entry-footer{
  margin-top:5rem;
  padding:2rem;
  background-color:#FAFAFA;
  border-top:1px solid #bbc6cf;
  color:#6c7073;
}
section#blog h3{
  font-size:2rem;
  margin-bottom:0;
}
section#gear table th{
  vertical-align:bottom;
}

section#gear table td{
  vertical-align:top;
}

section#gear table tr:nth-child(even) {background-color: #FAFAFA}
section#archive{
  background-color:#FAFAFA;
}
section#archive h2.entry-title{
  margin-top:1rem;
  margin-bottom:2.5rem;
  font-size:3rem;
  border-bottom:1px solid #FAFAFA;
}
section#archive h2.entry-title em{
  font-weight:normal;
}
section#archive h2.entry-title a{
  color:#222222;
  border:0;
}
section#archive p{
  margin-bottom:1.5rem;
}
h1 span.entry-subtitle{
  font-size: 2.5rem;
  color:#6c7073;
  font-weight:normal;
  margin-bottom:2rem;
  font-style:italic;
}
h2 span.entry-subtitle{
  margin-top:1rem;
  font-weight:normal;
  font-size:2rem;
  color:#6c7073;
}
section#archive span.entry-date{
  color:#bbc6cf;
  font-size:1.4rem;
  line-height:1.4;
  margin-bottom:1rem;
}
section#archive .box{
  margin-top:3rem;
}


/* Individual post styling */

/* How I became an artist */
.postid-5004020 section#blog header{
  margin-top:3rem;
}

.postid-5004020 #topbar{
  background-color:#FFF;
  border:0;

}
.postid-5004020 #topbar .mailinglist{
  background-color:#FAFAFA
}


/* 10 books */
section#archive #post-107 h2.entry-title a,section#archive #post-619 h2.entry-title a{
  font-weight:bold;
}
section#archive #post-107.box, section#archive #post-619.box{
  border-bottom:1px solid #bbc6cf;
  border-top:1px solid #bbc6cf;

}

/* Don't go to art school */
section#archive #post-620 h2.entry-title a{
  font-weight:bold;
}
section#archive #post-620.box{
  border-bottom:1px solid #bbc6cf;
  border-top:1px solid #bbc6cf;

}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
