@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  box-sizing: border-box;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: block;
  width: 120px;
  height: 24px;
  background-image: url(../images/logo_w@svg.svg);
  text-indent: 101%;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 42px;
}
@media (max-width: 1024px) {
  .header .logo {
    margin-left: 17px;
  }
}
.header .menu {
  display: flex;
  margin-right: 32px;
}
@media (max-width: 1024px) {
  .header .menu {
    margin-right: 0;
  }
}
@media (max-width: 430px) {
  .header .menu {
    max-height: 0;
    display: block;
    overflow: hidden;
    transition: 1.3s ease;
    position: absolute;
    z-index: 100;
    top: 60px;
    width: 100%;
  }
}
.header .menu a {
  display: block;
  text-align: center;
  padding: 18px 15px 17px 15px;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
@media (max-width: 430px) {
  .header .menu a {
    background: rgba(0, 0, 0, 0.75);
    border-bottom: none;
  }
}
.header .menu a:hover {
  border-bottom: 2px solid #fff;
}
@media (max-width: 430px) {
  .header .menu a:hover {
    background: #fff;
    color: #000;
    border-bottom: none;
  }
}

.fa-bars {
  color: #fff;
  display: none;
  font-size: 24px;
}
@media (max-width: 430px) {
  .fa-bars {
    display: block;
    padding: 18px 16px;
    cursor: pointer;
  }
}

@media (max-width: 430px) {
  .menu-show .menu {
    max-height: 153px;
  }
}

.banner {
  background-image: url(../images/header_desktop.png);
  background-size: cover;
  background-position: center;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 430px) {
  .banner {
    background-image: url(../images/header_mobile.png);
  }
}
.banner .banner-box {
  color: #FFFFFF;
  text-align: center;
  width: 460px;
  height: 152px;
  background-color: rgba(0, 0, 0, 0.35);
}
@media (max-width: 430px) {
  .banner .banner-box {
    width: 95%;
    height: 194px;
  }
}
.banner .banner-box h1 {
  font-size: 36px;
  margin: 25px 0 16px 0;
}
@media (max-width: 430px) {
  .banner .banner-box h1 span {
    display: block;
    line-height: 60px;
  }
}
.banner .banner-box p {
  line-height: 1.6;
}

.footer {
  background: #EFE9E7;
}
.footer .container {
  padding: 50px 42px;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footer .container {
    padding: 50px 10px;
  }
}
@media (max-width: 768px) {
  .footer .container {
    display: block;
  }
}
.footer .footer-content {
  display: flex;
  width: 70%;
}
@media (max-width: 768px) {
  .footer .footer-content {
    display: block;
    width: 100%;
  }
}
.footer .footer-content li {
  margin-right: 21px;
  width: 60%;
}
@media (max-width: 430px) {
  .footer .footer-content li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .footer-content p {
  font-size: 24px;
  color: #3D1101;
  margin-bottom: 16px;
}
.footer .footer-content .content {
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}
.footer .contact li {
  color: #3D1101;
  list-style: disc;
  margin-left: 20px;
  line-height: 1.3;
  width: 100%;
}
@media (max-width: 768px) {
  .footer .contact li {
    margin-bottom: 0;
    margin-left: 0;
  }
}
.footer .contact li a {
  color: #3D1101;
}
.footer .contact li a:hover {
  color: #FFFFFF;
}
.footer .footer-logo {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer .footer-logo {
    width: 100%;
    text-align: end;
  }
}
.footer .logo {
  display: block;
  width: 243px;
  height: 48px;
  background-image: url(../images/logo_l@svg.svg);
  text-indent: 101%;
  white-space: nowrap;
  overflow: hidden;
}
.footer .social-icon {
  display: flex;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .footer .social-icon {
    justify-content: flex-end;
  }
}
.footer .social-icon li {
  margin-left: 12px;
  font-size: 36px;
}
.footer .google-icon {
  color: #DB4437;
}
.footer .x-icon {
  color: #000000;
}
.footer .facebook-icon {
  color: #3A5795;
}

.feature {
  background: #EFE9E7;
}
.feature .container {
  padding: 50px 62px;
}
@media (max-width: 1024px) {
  .feature .container {
    padding: 50px 25px;
  }
}
.feature h2 {
  text-align: center;
  font-size: 20px;
  color: #3D1101;
  line-height: 1.6;
  position: relative;
  margin-bottom: 31px;
}
.feature h2::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background-color: #979797;
  top: 50%;
  left: 24%;
}
@media (max-width: 834px) {
  .feature h2::before {
    left: 20%;
  }
}
@media (max-width: 768px) {
  .feature h2::before {
    left: 17%;
  }
}
@media (max-width: 430px) {
  .feature h2::before {
    content: none;
  }
}
.feature h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background-color: #979797;
  top: 50%;
  right: 24%;
}
@media (max-width: 834px) {
  .feature h2::after {
    right: 20%;
  }
}
@media (max-width: 768px) {
  .feature h2::after {
    right: 17%;
  }
}
@media (max-width: 430px) {
  .feature h2::after {
    content: none;
  }
}
.feature .item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 430px) {
  .feature .item {
    display: block;
  }
}
.feature .item li {
  text-align: center;
  width: 30%;
  color: #3D1101;
  font-size: 18px;
}
.feature .item li img {
  border-radius: 50%;
}
.feature .item li h3 {
  margin: 20px 0 11px 0;
}
.feature .item li p {
  text-align: justify;
  line-height: 1.4;
  letter-spacing: 1px;
  font-size: 16px;
}
@media (max-width: 430px) {
  .feature .item li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.chef {
  background: #3D1101;
}
.chef .container {
  display: flex;
  padding: 0 42px;
}
@media (max-width: 1024px) {
  .chef .container {
    padding: 0 10px;
  }
}
@media (max-width: 834px) {
  .chef .container {
    display: block;
    padding: 0;
  }
}
.chef img {
  margin-right: 25px;
  width: 53%;
}
@media (max-width: 1024px) {
  .chef img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 834px) {
  .chef img {
    width: 100%;
    margin-right: 0;
  }
}
.chef .chef-content {
  color: #EFE9E7;
  line-height: 1.3;
  width: 46.9%;
  margin: 81px 0 49px 0;
}
@media (max-width: 1024px) {
  .chef .chef-content {
    margin-top: 49px;
  }
}
@media (max-width: 834px) {
  .chef .chef-content {
    width: 100%;
    padding: 30px;
    margin: 0;
    box-sizing: border-box;
  }
}
.chef .chef-content h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.chef .chef-content h4 span {
  font-size: 16px;
}
.chef .chef-content p {
  width: 95%;
  text-align: justify;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .chef .chef-content p {
    line-height: 2;
  }
}
@media (max-width: 430px) {
  .chef .chef-content p {
    width: 100%;
  }
}

.feedback {
  background: #EFE9E7;
}
.feedback .container {
  padding: 50px 42px;
}
@media (max-width: 1024px) {
  .feedback .container {
    padding: 50px 10px;
  }
}
.feedback h5 {
  text-align: center;
  font-size: 24px;
  color: #3D1101;
  margin-bottom: 32px;
}
.feedback .item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .feedback .item {
    display: block;
  }
}
.feedback .item li {
  display: flex;
  width: 30%;
}
@media (max-width: 768px) {
  .feedback .item li {
    width: 100%;
  }
}
.feedback .item img {
  width: 67px;
  height: 67px;
  border-radius: 50%;
}
.feedback .item-content {
  color: #3D1101;
  margin-left: 13px;
}
.feedback .item-content .title {
  font-size: 18px;
  margin-bottom: 22px;
  text-align: left;
}
.feedback .item-content .content {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 16px;
}
.feedback .item-content .name {
  color: rgba(61, 17, 0, 0.75);
  text-align: right;
}

.booking {
  background: rgba(250, 250, 250, 0.7);
}
.booking .container {
  padding: 50px 42px;
}
@media (max-width: 1024px) {
  .booking .container {
    padding: 50px 10px;
  }
}
.booking h6 {
  font-size: 24px;
  color: #3D1101;
  text-align: center;
  margin-bottom: 38px;
  line-height: 1.4;
}
.booking .booking-box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 430px) {
  .booking .booking-box {
    display: block;
  }
}
.booking .booking-box img {
  width: 48%;
}
@media (max-width: 430px) {
  .booking .booking-box img {
    width: 100%;
  }
}
.booking .booking-box form {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  width: 48%;
}
@media (max-width: 430px) {
  .booking .booking-box form {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.booking .booking-box label {
  font-family: PingFangTC-Light;
  font-size: 14px;
  color: #3D1101;
}
.booking .booking-box .input {
  border: 1px solid #CCCCCC;
  box-shadow: inset 0px 1px 0px 0px #ECECEC;
  border-radius: 3px;
  height: 32px;
  margin: 6px 0 12px 0;
}
.booking .booking-box .radio {
  margin: 6px 0 12px 0;
  display: flex;
  align-items: center;
}
.booking .booking-box .radio input {
  margin-right: 36px;
}
.booking .booking-box .button {
  margin-top: 25px;
  text-align: end;
}
@media (max-width: 430px) {
  .booking .booking-box .button {
    margin-top: 30px;
  }
}
.booking .booking-box .button input {
  font-size: 14px;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 3px;
  width: 70px;
  height: 32px;
  cursor: pointer;
  margin-left: 11px;
  /*移除預設樣式*/
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於 iOS 移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none;
}
.booking .booking-box .button .btn-cancel {
  background: #8E8E8E;
}
.booking .booking-box .button .btn-cancel:hover {
  background: #7B7B7B;
}
.booking .booking-box .button .btn-submit {
  background: #F56C23;
}
.booking .booking-box .button .btn-submit:hover {
  background: #F75000;
}

.login {
  background: #EFE9E7;
}
.login .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3D1101;
  padding: 50px 0;
}
.login p {
  font-family: NotoSansCJKtc-Medium;
  font-size: 20px;
  margin: 5px 0 35px 0;
}
.login .login-box {
  width: 300px;
  border-top: 3px solid #FF5E45;
  box-shadow: 3px 3px 3px #D0D0D0;
  padding: 15px 15px 21px 15px;
}
@media (max-width: 430px) {
  .login .login-box {
    width: 85%;
  }
}
.login .login-box h1 {
  font-family: NotoSansCJKtc-Black;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 16px;
}
.login .login-box a {
  display: block;
  font-size: 14px;
  color: #FF5E45;
  text-decoration: none;
  margin-top: 3px;
}
.login .login-box label {
  display: block;
  margin-bottom: 3px;
}
.login .input-group {
  position: relative;
}
.login .input-group input {
  display: block;
  width: 100%;
  padding: 8px 25px;
  border: 1px solid #CCCCCC;
  box-shadow: inset 0px 1px 0px 0px #ECECEC;
  border-radius: 3px;
  text-indent: 0.5em;
  box-sizing: border-box;
}
.login .input-group i {
  position: absolute;
  top: 8px;
  left: 8px;
}
.login .email-margin-bottom {
  margin-bottom: 15px;
}
.login .button {
  display: flex;
  justify-content: space-between;
}
.login .button a,
.login .button input {
  border-radius: 3px;
  line-height: 16px;
  font-size: 16px;
  color: #FFFFFF;
  padding: 10px 55px;
  margin-top: 36px;
  border: none;
  cursor: pointer;
  /*移除預設樣式*/
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於 iOS 移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none;
}
.login .button .btn-register {
  background: #8E8E8E;
}
.login .button .btn-register:hover {
  background: #7B7B7B;
}
.login .button .btn-login {
  background: #F56C23;
}
.login .button .btn-login:hover {
  background: #F75000;
}

.register {
  background: #EFE9E7;
}
.register .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3D1101;
  padding: 50px 0;
}
.register p {
  font-family: NotoSansCJKtc-Medium;
  font-size: 20px;
  margin: 5px 0 35px 0;
}
.register .register-box {
  width: 620px;
  border-top: 3px solid #FF5E45;
  box-shadow: 3px 3px 3px #D0D0D0;
  padding: 15px 15px 21px 15px;
}
@media (max-width: 430px) {
  .register .register-box {
    width: 85%;
  }
}
.register .register-box h1 {
  font-family: NotoSansCJKtc-Black;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 16px;
}
.register .register-box-2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 430px) {
  .register .register-box-2 {
    display: block;
  }
}
.register .register-box-2 .terms {
  width: 48.5%;
}
@media (max-width: 430px) {
  .register .register-box-2 .terms {
    width: 100%;
  }
}
.register .register-box-2 .terms .terms-p {
  font-size: 18px;
  margin: 0;
}
.register .register-box-2 .terms .terms-p-2 {
  font-size: 16px;
  line-height: 1.4;
}
.register .register-box-2 form {
  width: 48.5%;
}
@media (max-width: 430px) {
  .register .register-box-2 form {
    width: 100%;
  }
}
.register .register-box-2 a {
  display: block;
  font-size: 14px;
  color: #FF5E45;
  text-decoration: none;
  margin-top: 3px;
}
.register .register-box-2 label {
  display: block;
  margin-bottom: 3px;
}
.register .input-group {
  position: relative;
}
.register .input-group input {
  display: block;
  width: 100%;
  padding: 8px 25px;
  border: 1px solid #CCCCCC;
  box-shadow: inset 0px 1px 0px 0px #ECECEC;
  border-radius: 3px;
  text-indent: 0.5em;
  box-sizing: border-box;
}
.register .input-group i {
  position: absolute;
  top: 8px;
  left: 8px;
}
.register .email-margin-bottom {
  margin-bottom: 15px;
}
.register .pwd-margin-bottom {
  margin-bottom: 12px;
}
.register .button {
  display: flex;
  justify-content: end;
}
.register .button a {
  border-radius: 3px;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 36px;
  border: none;
  padding: 9px 55px;
  cursor: pointer;
  /*移除預設樣式*/
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於 iOS 移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none;
}
.register .button .btn-register {
  background: #F56C23;
}
.register .button .btn-register:hover {
  background: #F75000;
}

.cart {
  background: #EFE9E7;
}
.cart .container {
  display: flex;
  justify-content: space-between;
  padding: 48px 42px 0 42px;
}
@media (max-width: 430px) {
  .cart .container {
    display: block;
    padding: 48px 11px 0px 11px;
  }
}
.cart .cart-menu {
  width: 220px;
}
@media (max-width: 1024px) {
  .cart .cart-menu {
    width: 200px;
  }
}
@media (max-width: 430px) {
  .cart .cart-menu {
    width: 100%;
  }
}
.cart .cart-menu h1 {
  color: #3D1101;
  padding: 20px 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.cart .cart-menu h1 .fa-leaf {
  font-size: 26px;
  padding-right: 15px;
}
.cart .cart-menu li a {
  display: block;
  text-decoration: none;
  padding: 8px 0;
  color: #3D1101;
  border-bottom: #3D1101 1px solid;
  padding-left: 8px;
}
.cart .cart-menu li a:hover {
  color: #ffffff;
  background: #3D1101;
}
.cart .content {
  max-width: 700px;
}
@media (max-width: 834px) {
  .cart .content {
    max-width: 67%;
  }
}
@media (max-width: 430px) {
  .cart .content {
    max-width: 100%;
  }
}
.cart .content .toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}
@media (max-width: 430px) {
  .cart .content .toolbar {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
}
.cart .content .search {
  display: flex;
  flex-direction: row;
  position: relative;
}
@media (max-width: 430px) {
  .cart .content .search {
    width: 100%;
    margin: 23px 0 20px 0;
  }
}
.cart .content .search .text {
  width: 428px;
  height: 32px;
  border: solid 2px #3D1101;
  outline: none;
  background-color: #EFE9E7;
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於 iOS 移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none;
}
@media (max-width: 834px) {
  .cart .content .search .text {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .cart .content .search .text {
    width: 280px;
  }
}
@media (max-width: 430px) {
  .cart .content .search .text {
    width: 90%;
  }
}
.cart .content .search .submit {
  width: 32px;
  height: 32px;
  background-color: #3D1101;
  border: transparent;
}
@media (max-width: 430px) {
  .cart .content .search .submit {
    width: 10%;
  }
}
.cart .content .search .fa-magnifying-glass {
  position: absolute;
  right: 7px;
  top: 6px;
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 430px) {
  .cart .content .search .fa-magnifying-glass {
    right: 10px;
  }
}
.cart .content .search .submit,
.cart .content .search .fa-magnifying-glass:hover {
  cursor: pointer;
}
.cart .content .checkout-buylist {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 14px;
  position: relative;
}
@media (max-width: 430px) {
  .cart .content .checkout-buylist {
    margin: 15px 0;
  }
}
.cart .content .checkout-buylist li {
  padding: 0 15px;
}
.cart .content .checkout-buylist li a {
  text-decoration: none;
  color: #3D1101;
}
.cart .content .checkout-buylist .checkout {
  border-right: 1.9px solid #3D1101;
}
.cart .content .checkout-buylist .buylist {
  font-size: 27px;
}
.cart .content .checkout-buylist .circle {
  width: 16px;
  height: 16px;
  color: #ffffff;
  background-color: #FF5E45;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -13px;
  right: 8px;
}
.cart .content .productlist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  color: #3D1101;
}
.cart .content .productlist li {
  box-shadow: 3px 3px 10px #BEBEBE;
  margin: 15px 0;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 430px) {
  .cart .content .productlist li {
    width: 100%;
  }
}
.cart .content .productlist .ribbon-wrap {
  overflow: hidden;
  width: 90px;
  height: 90px;
  position: absolute;
  top: -6px;
  right: -6px;
}
.cart .content .productlist .ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  transform: rotate(45deg);
  width: 120px;
  height: 24px;
  line-height: 24px;
  background: #00CC99;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.cart .content .productlist .ribbon-wrap::before {
  content: "";
  position: absolute;
  border-bottom: 6px solid #078F6D;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  left: 11px;
}
.cart .content .productlist .ribbon-wrap::after {
  content: "";
  position: absolute;
  border-top: 6px solid transparent;
  border-left: 6px solid #078F6D;
  border-bottom: 6px solid transparent;
  bottom: 11px;
  right: 0px;
}
.cart .content .productlist .heart {
  width: 35px;
  height: 33px;
  position: absolute;
  border: transparent;
  background-color: transparent;
  top: 2px;
  left: 2px;
}
.cart .content .productlist .fa-heart {
  font-size: 23px;
  color: #ffffff;
}
.cart .content .productlist .heart:hover {
  cursor: pointer;
}
.cart .content .productlist img {
  width: 220px;
}
@media (max-width: 430px) {
  .cart .content .productlist img {
    width: 100%;
  }
}
.cart .content .productlist .product {
  margin-top: 26px;
}
@media (max-width: 430px) {
  .cart .content .productlist .product {
    margin-top: 11px;
  }
}
.cart .content .productlist .name {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
.cart .content .productlist .name span {
  font-size: 12px;
  margin: 7px 0 10px 0;
}
.cart .content .productlist .line {
  width: 91px;
  border: 1px solid #3D1101;
  margin: auto;
}
.cart .content .productlist .price {
  font-size: 20px;
  font-family: Roboto-Light;
  margin: 20px 0 13px 0;
  font-style: italic;
}
.cart .content .productlist .addcart {
  display: block;
  border: 2px solid #FF5E45;
  border-radius: 3px;
  width: 200px;
  padding: 4px 0;
  margin: auto;
  text-decoration: none;
  color: #FF5E45;
}
@media (max-width: 430px) {
  .cart .content .productlist .addcart {
    width: 95%;
  }
}
.cart .content .productlist .fa-cart-shopping {
  margin-right: 9px;
}
.cart .content .productlist .addcart:hover {
  background-color: #FF5E45;
  color: #ffffff;
  cursor: pointer;
}/*# sourceMappingURL=all.css.map */