@import url("http://fonts.googleapis.com/css?family=Lato:300,400,700,900|Open+Sans:600,600italic,800,400,400italic,300italic");
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Lato', sans-serif;
}
/* HEADER */
.ct-header {
  color: #222;
  min-height: 250px;
}
.ct-header h1 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 43px;
}
/* BUTTONS */
.btn,
main .ct-cart-checkout,
main .ct-wishlist-checkout,
main .ct-cart-clear,
main .ct-wishlist-clear,
main .ct-cart-add-to-cart,
main .ct-wishlist-add-to-cart {
  transition: all 0.2s ease;
  padding: 0.85em 0.95em;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
.btn-motive,
main .ct-cart-checkout,
main .ct-wishlist-checkout,
main .ct-cart-clear,
main .ct-wishlist-clear,
main .ct-cart-add-to-cart,
main .ct-wishlist-add-to-cart {
  background-color: #735d54;
  color: #fff;
  border: none;
}
.btn-motive:hover,
main .ct-cart-checkout:hover,
main .ct-wishlist-checkout:hover,
main .ct-cart-clear:hover,
main .ct-wishlist-clear:hover,
main .ct-cart-add-to-cart:hover,
main .ct-wishlist-add-to-cart:hover,
.btn-motive:active,
main .ct-cart-checkout:active,
main .ct-wishlist-checkout:active,
main .ct-cart-clear:active,
main .ct-wishlist-clear:active,
main .ct-cart-add-to-cart:active,
main .ct-wishlist-add-to-cart:active,
.btn-motive:focus,
main .ct-cart-checkout:focus,
main .ct-wishlist-checkout:focus,
main .ct-cart-clear:focus,
main .ct-wishlist-clear:focus,
main .ct-cart-add-to-cart:focus,
main .ct-wishlist-add-to-cart:focus {
  background-color: #d1977e;
  color: #fff !important;
  border: none;
}
/* MAIN */
main {
  padding: 100px 0 50px;
  font-size: 12px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
/* PRODUCT */
}
@media (min-width: 768px) {
  main {
    font-size: 14px;
  }
}
main .ct-product {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
main .ct-product .image,
main .ct-product .inner {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
main .ct-product .inner {
  position: relative;
  background: #f5dcce;
  padding: 15px;
  border: 1px solid #ddd;
  border-left: none;
  height: 120%;
}
main .ct-product .btn {
  background-color: #735C53;
  font-size: 14px;
}
main .ct-product .btn:hover {
  background-color: #d1977e;
  color: #fff;
}
main .ct-product input,
main .ct-product select,
main .ct-product option {
  border: none;
  font-size: 20px;
  width: 100%;
}
main .ct-product img {
  width: 100%;
  min-width: 100%;
}
main .ct-product-title {
  font-weight: 900;
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  color: #735C53;
}
main .ct-product-title select {
  background: white;
}
main .ct-product-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #735C53;
  left: 0;
  margin: auto;
}
main .ct-product .description {
  color: #000;
  font-size: inherit;
  line-height: 1.7;
}

main .ct-product .price {
  font-weight: 300;
  display: block;
  font-size: 40px;
  color: #735C53;
  font-family: 'Lato';
  position: relative;
  padding: 10px 0;
}
main .ct-product .price:before,
main .ct-product .price:after {
  text-transform: uppercase;
  font-weight: 700;
  color: #aaa;
  font-size: 20px;
}
main .ct-product .price:after {
  content: attr(data-content);
  text-decoration: line-through;
  margin-left: 15px;
}
@media (max-width: 767px) {
  main .ct-product .image,
  main .ct-product .inner {
    display: block;
    width: 100%;
  }
  main .ct-product .inner {
    border: 1px solid #ddd;
  }
  main .ct-product .ct-product-title input,
  main .ct-product .ct-product-title select {
    display: block;
    padding-left: 0;
    position: relative;
    left: -3px;
    margin-top: 5px;
  }
  main .ct-product .ct-product-title input,
  main .ct-product .ct-product-title select,
  main .ct-product .ct-product-title option {
    font-size: 20px;
  }
}
main .widget {
  margin-bottom: 50px;
}
main .widget-header {
  font-weight: lighter;
  padding: 0.4em 0.5em 0.5em;
  background: #f5dcce;
  font-size: 30px;
}
main .ct-cart,
main .ct-wishlist {
  position: relative;
  background: #f5dcce;
  padding: 15px 20px 20px;
}
main .ct-cart:before,
main .ct-wishlist:before,
main .ct-cart:after,
main .ct-wishlist:after {
  content: '';
  display: table;
  clear: both;
}
main .ct-cart-shipping {
  width: 100%;
  margin-bottom: 2em;
}
main .ct-cart-promo input,
main .ct-wishlist-promo input {
  width: 100% !important;
  margin: 5px 0 10px !important;
}
main .ct-cart-total,
main .ct-wishlist-total {
  font-size: 20px;
  float: left;
  font-weight: 600;
  color: #666;
  padding-bottom: 12px;
}
main .ct-cart-total:before,
main .ct-wishlist-total:before {
  content: 'Total: ';
  margin-right: 5px;
}
main .ct-cart ul,
main .ct-wishlist ul,
main .ct-cart ol,
main .ct-wishlist ol {
  list-style: none;
  padding: 20px 0;
  margin: 0 -20px;
}
main .ct-cart ul:before,
main .ct-wishlist ul:before,
main .ct-cart ol:before,
main .ct-wishlist ol:before,
main .ct-cart ul:after,
main .ct-wishlist ul:after,
main .ct-cart ol:after,
main .ct-wishlist ol:after {
  content: '';
  display: table;
  clear: both;
}
main .ct-cart li,
main .ct-wishlist li {
  position: relative;
  color: #666;
  font-size: 18px;
  padding: 15px 45px 15px 20px;
}
main .ct-cart li:before,
main .ct-wishlist li:before,
main .ct-cart li:after,
main .ct-wishlist li:after {
  content: '';
  display: table;
  clear: both;
}
main .ct-cart li:nth-child(odd),
main .ct-wishlist li:nth-child(odd) {
  background: #faede5;
}
main .ct-cart li:nth-child(even),
main .ct-wishlist li:nth-child(even) {
  background: #d6b29c;
  color: #faede5;
}
main .ct-cart-remove,
main .ct-wishlist-remove {
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -12.5px;
  width: 25px;
  height: 25px;
  line-height: 5px;
  border: none;
  border-radius: 4px;
  color: #FFF;
  transition: all 0.2s ease;
  background: #735C53;
}
main .ct-cart-remove:hover,
main .ct-wishlist-remove:hover,
main .ct-cart-remove:focus,
main .ct-wishlist-remove:focus,
main .ct-cart-remove:active,
main .ct-wishlist-remove:active {
  background: #D1977E;
}

main .ct-cart-add {
  padding: 0.85em 0.95em;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  background: #495259;
  color: #fff;
  border: none;
  margin: 0px;
}

main .ct-cart-add:hover {
  color: #D1977E;
}

main .ct-cart input,
main .ct-wishlist input {
  width: 50px;
  border: none;
  float: left;
  padding: 0 5px;
  margin-left: 15px;
  line-height: 30px;
}
main .ct-cart-price,
main .ct-wishlist-price {
  float: left;
  padding-top: 3px;
}
main .ct-cart-name,
main .ct-wishlist-name {
  display: block;
  font-weight: 600;
}
main .ct-cart-checkout,
main .ct-wishlist-checkout {
  float: left;
}
main .ct-cart-clear,
main .ct-wishlist-clear {
  float: right;
}
main .ct-cart-clear:hover {
  color: #D1977E;
}
main .ct-cart-checkout:hover {
  color: #D1977E;
}
main .ct-cart-add-to-cart,
main .ct-wishlist-add-to-cart {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
main .ct-cart-left,
main .ct-wishlist-left {
  width: 80px;
  float: left;
  padding-right: 10px;
}
main .ct-cart-body,
main .ct-wishlist-body {
  width: calc(100% - 80px);
  float: left;
}
main .ct-wishlist-price {
  display: block;
  float: none;
}
.cart-message-container {
  position: fixed;
  bottom: 0;
  right: 20px;
}
.cart-message-container .cart-message {
  display: block;
}
