

.cart table, .myaccount table {
  width: 100%;
}

.cart table thead td, .myaccount table thead td {
  padding: 30px 0;
  border-bottom: 1px solid #EEEEEE;
}

.cart table thead td:last-child, .myaccount table thead td:last-child {
  text-align: right;
}

.cart table tbody td, .myaccount table tbody td {
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}

.cart table tbody td:last-child, .myaccount table tbody td:last-child {
  text-align: right;
}

.cart table .img, .myaccount table .img {
  width: 80px;
}

.cart table .remove, .myaccount table .remove {
  color: #777777;
  font-size: 12px;
  padding-top: 3px;
}

.cart table .remove:hover, .myaccount table .remove:hover {
  text-decoration: underline;
}

.cart table .price, .myaccount table .price {
  color: #999999;
}

.cart table a, .myaccount table a {
  text-decoration: none;
  color: #555555;
}

.cart table input[type="number"], .myaccount table input[type="number"] {
  width: 68px;
  padding: 10px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}

.cart .subtotal, .cart .shipping, .cart .discount, .myaccount .subtotal, .myaccount .shipping, .myaccount .discount {
  text-align: right;
  padding: 15px 0 0 0;
}

.cart .subtotal .text, .cart .shipping .text, .cart .discount .text, .myaccount .subtotal .text, .myaccount .shipping .text, .myaccount .discount .text {
  padding-right: 80px;
  font-size: 16px;
}

.cart .subtotal .price, .cart .shipping .price, .cart .discount .price, .myaccount .subtotal .price, .myaccount .shipping .price, .myaccount .discount .price {
  font-size: 16px;
  color: #999999;
}

.cart .shipping, .cart .discount, .myaccount .shipping, .myaccount .discount {
  padding: 10px 0 0 0;
}

.cart .shipping-methods, .cart .discount-code, .myaccount .shipping-methods, .myaccount .discount-code {
  display: flex;
  flex-flow: column;
  align-self: flex-end;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0;
  border-bottom: 1px solid #EEEEEE;
  padding: 20px 0;
  max-width: 600px;
}

.cart .shipping-methods h2, .cart .discount-code h2, .myaccount .shipping-methods h2, .myaccount .discount-code h2 {
  font-weight: 200;
  margin: 0;
  padding-bottom: 5px;
}

.cart .shipping-methods .shipping-method, .cart .discount-code .shipping-method, .myaccount .shipping-methods .shipping-method, .myaccount .discount-code .shipping-method {
  padding-top: 10px;
}

.cart .discount-code, .myaccount .discount-code {
  padding: 20px 0;
}

.cart .discount-code input, .myaccount .discount-code input {
  padding: 10px;
  border: 1px solid #ccc;
  color: #555555;
  border-radius: 5px;
}

.cart .discount-code .result, .myaccount .discount-code .result {
  padding-top: 10px;
}

.cart .total, .myaccount .total {
  text-align: right;
  padding: 20px 0 40px 0;
}

.cart .total .text, .myaccount .total .text {
  padding-right: 40px;
  font-size: 18px;
}

.cart .total .price, .myaccount .total .price {
  font-size: 18px;
  color: #999999;
}

.cart .buttons, .myaccount .buttons {
  text-align: right;
  padding-bottom: 0px;
}

.cart .buttons input[type="submit"], .myaccount .buttons input[type="submit"] {
  margin: 0 0 5px 5px;
  padding: 12px 20px;
  border: 0;
  background: #4e5c70;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
    max-width: 600px;
}

.cart .buttons input[type="submit"]:hover, .myaccount .buttons input[type="submit"]:hover {
  background: #434f61;
    max-width: 600px;
}

.placeorder h1 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 10px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

.placeorder p {
  text-align: center;
}

.checkout h1, .myaccount h1 {
  display: block;
  font-weight: normal;
  margin: 0;

  font-size: 24px;
  text-align: center;
  width: 100%;
}

.checkout form, .myaccount form {
  width: 600px;
  display: flex;
  flex-flow: wrap;
  padding-bottom: 0px;
}

.checkout form h2, .myaccount form h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 50px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

.checkout form h2:first-child, .myaccount form h2:first-child {
  padding: 20px 0 20px 0;
}

.checkout form label, .myaccount form label {
  display: block;

}

.checkout form input, .checkout form select, .myaccount form input, .myaccount form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.checkout form input, .checkout form radio, .myaccount form input, .myaccount form radio {
  width: 100%;
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.checkout form input[type="submit"], .checkout form button, .myaccount form input[type="submit"], .myaccount form button {
  width: 100%;
  border: 0;


  background: #4e5c70;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.checkout form input[type="submit"]:hover, .checkout form button:hover, .myaccount form input[type="submit"]:hover, .myaccount form button:hover {
  background: #434f61;
}
.checkout form input[type="radio"]:hover, .checkout form button:hover, .myaccount form input[type="radio"]:hover, .myaccount form button:hover {
  background: #434f61;
}

.checkout form .row1, .checkout form .row2, .myaccount form .row1, .myaccount form .row2 {
  width: 50%;
    padding-bottom: 0px;
        padding-top: 0px;
  display: inline-block;
}

.checkout form .row1, .myaccount form .row1 {
  padding-right: 10px;
      padding-bottom: 0px;
        padding-top: 0px;
}

.checkout form .row2, .myaccount form .row2 {
  padding-left: 10px;
      padding-bottom: 0px;
        padding-top: 0px;
}

.checkout .paypal, .checkout .stripe, .myaccount .paypal, .myaccount .stripe {
  padding-bottom: 40px;
  width: 100%;
}

.checkout .paypal button, .checkout .stripe button, .myaccount .paypal button, .myaccount .stripe button {
  display: inline-block;

  padding: 10px 20px 7px 20px;
  background-color: #FFC439;
  width: inherit;
}

.checkout .paypal button:hover, .checkout .stripe button:hover, .myaccount .paypal button:hover, .myaccount .stripe button:hover {
  background-color: #f3bb37;
}

.checkout .stripe, .myaccount .stripe {
  padding-bottom: 0;
}

.checkout .stripe button, .myaccount .stripe button {

  background-color: #4381cf;
}

.checkout .stripe button:hover, .myaccount .stripe button:hover {
  background-color: #3374c6;
}

.myaccount form {
  width: 100%;
}

.myaccount h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

.myaccount table {
  padding-bottom: 40px;
}

.myaccount table tr:last-child td {
  border-bottom: 0;
}

.myaccount table a {
  font-size: 14px;
  color: #de0000;
}

.myaccount table a:hover {
  color: #ab0000;
}

.myaccount .login-register {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.myaccount .login-register h1 {
  text-align: left;
  padding-top: 15px;
}

.myaccount .login-register .login {
  width: 100%;
  border-right: 1px solid #f6f6f6;
  padding-right: 10px;
}

.myaccount .login-register .register {
  width: 100%;
  padding-left: 10px;
}

p.error {
  color: red;
}

footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid #EEEEEE;
  padding: 20px 0;
  width: 100%;
}

/* Responsive CSS below */
@media screen and (max-width: 1050px) {
  .rhide {
    display: none;
  }
  .content-wrapper {
    width: 100%;
    padding: 0 10px;
  }
  header {
    justify-content: space-between;
  }
  header h1 {
    font-size: 16px;
    flex-basis: auto;
  }
  header nav {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    width: 100%;
    background-color: #FFFFFF;
  }
  header nav a {
    display: block;
    padding: 10px 10px;
    margin: 0;
    border-bottom: 1px solid #EEEEEE;
  }
  header .link-icons {
    display: inline-flex;
    width: 100px;
  }
  header .link-icons .responsive-toggle {
    display: block;
  }
  .recentlyadded .products, .products .products-wrapper {
    justify-content: center;
  }
  .recentlyadded .products .product, .products .products-wrapper .product {
    width: auto;
  }
  .featured {
    height: 300px;
  }
  .featured h2 {
    font-size: 48px;
    width: 100%;
    padding: 0 10px;
  }
  .featured p {
    font-size: 22px;
    width: 100%;
    padding: 0 10px;
  }
  .products .products-header {
    flex-flow: column;
  }
  .products .products-header p {
    padding-bottom: 10px;
  }
  .products .products-header form {
    display: flex;
    flex-flow: column;
  }
  .products .products-header form label {
    padding-top: 15px;
  }
  .product {
    padding: 0 10px;
    flex-flow: column;
  }
  .product .product-imgs {
    padding: 0 10px;
  }
  .product .product-imgs .product-img-large {
    width: 100%;
    height: auto;
  }
  .product .product-imgs .product-small-imgs .product-img-small {
    width: 50px;
    height: 50px;
  }
  .product form input[type="number"], .product form input[type="submit"], .product form select {
    width: 100%;
  }
  .product .product-wrapper {
    padding: 0;
  }
  .cart table input[type="number"] {
    width: 40px;
  }
  .checkout form, .myaccount form {
    width: 100%;
  }
  .myaccount .login-register {
    flex-flow: column;
  }
  .myaccount .login-register .login {
    border-right: 0;
    padding: 10px;
  }
  .myaccount .login-register .register {
    padding: 10px;
  }
}
