* {
  box-sizing: border-box;
}

html {
    height: 100%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
body {
    padding: 0;
    margin: 0;
    color: #000;
    height: 100%;
    background-color: #f6f6f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}
body.fixed {
    position: fixed;
}
div.page {
  flex: 1 0 auto;
}

h1, h2, h3, input, label, textarea {
    /*font-family: 'Lato', sans-serif;*/
    /*font-family: 'Source Sans Pro', sans-serif;*/
    font-family: 'Playfair Display', serif;
    
}
button {
    font-family: 'Source Sans Pro', sans-serif; 
}

p {
    /*font-family: 'Old Standard TT', serif;*/
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
}
h1 { font-size: 40px; font-weight: 400; }
h2 { font-size: 30px; font-weight: 400; }
h3 { font-size: 20px; }
a, p {
  text-decoration: none;
  color: black;
}
a:hover {
    text-decoration: inherit;
    color: inherit;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

div.mainContent {
    width:100%;
    
    /*max-width:1200px;*/
    margin:0 auto;
    /*padding: 0 15px 0 15px;*/
}
div.section {}
div.section-space { /*This is used for section spacing (eg. in a block with 'startsNewSection' = true)*/
    margin-top:75px;
}
div.section-nospace { /*This is used for section spacing (eg. in a block with 'startsNewSection' = true)*/
    margin-top:0px;
}


/*C5 EDIT MODE BLOCK INFO BOX*/
div.isInEditModeInfo {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    text-align: center;
    background-color: black;
    opacity: .7;
    color: white;
    padding:20px;
}
div.isInEditModeInfo p {
    font-size: 25px !important;
    text-transform: uppercase;
    display: block;
}

/*CSS Image preloader spinner*/
.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: black;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}




/*Contact page*/
div.contact h3 {
  margin-top:30px;
  margin-bottom: 10px;
}

/*Press page*/
div.press h3 {
  margin-top:30px;
  margin-bottom: 5px;
}
div.press p {
  margin-top:5px;
}
div.press p.status {
  margin-top:10px;
}
div.press p.status.positive {
  color: green;
}
div.press p.status.negative {
  color: red;
}
div.press a {
  font-weight: 700;
}
div.press div.signup {
  margin-top:10px;
  text-align: center;
  margin-bottom: 60px;
}
div.press input {
  width:300px;
  margin-top:20px;
  border:0;
  background-color: transparent;
  border-bottom:1px solid #CCC;
  font-size: 14px;
  padding:8px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
}
div.press p.signup {
  font-size: 16px;
  cursor: hand; cursor: pointer;
}


@media (max-width:700px) {
    /*Phone*/
    div.contact h1, div.press h1, div.about h1, div.dealers h1 {
      margin-top:30px !important;
    }
}







/*Bottom*/
div.footer {
  width:100%;
  background-color: white;
  padding: 50px;
  position: relative;
  flex-shrink: 0;
}
div.footer div {
  display: inline-block;
}
div.footer div.left, div.footer div.mid {
  padding-right:60px;
  position: relative;
}
div.footer div h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size:13px;
  font-weight: 700;
}
div.footer ul {
    list-style-type: none;
}
div.footer ul li {
    padding:15px 0 0 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: black;
    text-transform: uppercase;
}
div.footer div.last ul li {}
div.footer div.manchet {
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
}
div.footer div.manchet img { width:150px; }
div.footer div.copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: inherit;
  padding-right: inherit;
}
div.footer div.copyright p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
}



div.checkout-progress {
    display: flex;
    text-align: center;
    margin: 3px 0 20px 0;
}
div.checkout-progress > div {
    flex-basis:25%;
    background-color: #DDD;
    margin: 2px;
    padding:7px 0 7px 0;
    color: black;
}
div.checkout-progress > div p {
    font-size: 15px;
    color:inherit;
}
div.checkout-progress > div.current {
    background-color: black;
    color: white;
}
div.checkout-progress > div.current p {
    font-size: 15px;
    font-weight: 700;
}
div.checkout-progress > div.complete {
    cursor: hand;
    cursor: pointer;
    transition: all .3s;
}
div.checkout-progress > div.complete:hover {
    background-color: #CCC;
}













/*@media (max-width:599px) {*/
@media (max-width:700px) {
    /*Phone*/
    div.section-space { /*This is used for section spacing (eg. in a block with 'startsNewSection' = true)*/
        margin-top:30px;
    }
    div.section-nospace { /*This is used for section spacing (eg. in a block with 'startsNewSection' = true)*/
      margin-top:0px;
  }
    div.footer {
      padding: 15px;
    }
    div.footer ul li.hide-mobile { display: none; }
    div.footer div.manchet {
      top: 35px;
      bottom: auto;
      margin-right: -50%;
      transform: translate(-50%, 0);
    }
    div.footer div.manchet img { width:100px; }
    div.footer div.left {
      margin-top: 75px;
    }
    div.footer div.left, div.footer div.mid {
      width:45%;
      padding:0;
      padding-bottom: 30px;
      text-align:center;
      display: inline-block;
    }
    div.footer div.mid h3 {
      display: none;
    }
    div.footer div.last {
      margin-bottom: 20px
    }
    div.footer div.copyright {
      position: static;
      margin: 0 auto;
      width: 100%;
      text-align: center;
      padding: 0;
      margin:0;
    }
}

@media (min-width:600px) and (max-width:899px) {
    /*Tablet Portrait*/
    div.footer {
      padding: 30px;
    }
    div.footer div.left, div.footer div.mid {
      padding-right:25px;
    }

}

@media (min-width:900px) and (max-width:1199px) {
    /*Tablet Landscape*/
    
}

@media (min-width:1200px) { /*Desktop*/ }

