#cart {
    padding: 100px 0;
}

#cart h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
 #contTit {
    font-size: 35px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

#cart .tableBox {
    width: 100%;
    overflow-x: auto;
}

#cart .tableBox table {
    width: 100%;
    min-width: 600px;
}

#cart .good {
    position: relative;
    text-align: center;
    padding-left: 30px;
    width: 120px;
}

#cart .good i {
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 30%;
}

#cart .good img {
    width: 60px;
}

#cart .productName {
    color: #227d0c;
    font-weight: bold;
}

#cart .quantity {
    width: 100px;
}

#cart .bTableBox {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

#cart .bTableBox .bTable {
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 0px 15px rgba(37, 143, 103, 0.1);
    padding: 36px 36px 0 36px;
}

#cart .bTableBox .bTable .tit {
    font-size: 36px;
    font-weight: 800;
    color: #214842;
    line-height: 1.2;
}

#cart .bTableBox .bTable .item {
    padding: 20px 0;
    width: 94%;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    margin: 0 auto;
}

#cart .bTableBox .bTable .item:nth-last-of-type {
    border-bottom: none;
}

#cart .bTableBox .bTable .item .label,
#cart .bTableBox .bTable .item .price {
    width: 50%;
}

#cart .bTableBox .bTable .item .label {
    font-weight: bold;
}

#cart .bTableBox .bTable .item .price {
    color: #258f67;
    font-weight: 800;
}

#cart .bTableBox .bTable a {
    display: block;
    width: 94%;
    max-width: 207px;
    line-height: 46px;
    color: #214842;
    background: #efc360;
    text-align: center;
    margin: 30px 0;
    border-radius: 25px;
    transition: all 0.5s;
}

#cart .bTableBox .bTable a:hover {
    background: #214842;
    color: #fff;
}

#Checkout {
    padding: 100px 0;
}

#Checkout .rightBox {
    border: 1px solid #dddddd;
    padding: 2em;
}

#Checkout .coupon {
    display: none;
    border: 1px solid #cfc8d8;
    padding: 20px;
    border-radius: 6px;
}

#Checkout .coupon p {
    font-family: Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #7A7A7A;
}

#Checkout .coupon .item {
    margin-top: 20px;
    display: flex;
}

#Checkout .coupon .item input {
    width: 300px;
    margin-bottom: 0;
    border-radius: 25px;
}

#Checkout .coupon .item .cbtn {
    margin-left: 20px;
    display: inline-block;
    border: none;
    font-size: 17px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    background: #efc360;
    text-align: center;
    transition: all 0.5s ease;
    line-height: 46px;
    cursor: pointer;
    border-radius: 26px;
    text-transform: none;
    font-family: 'Nunito Sans';
    color: #214842;
    outline: none;
    width: 200px;
}

#Checkout .coupon .item .cbtn:hover {
    background: #258f67 !important;
    color: #fff !important;
}

#Checkout .formCont {
    margin-top: 40px;
}

#Checkout .formCont .tit , #Checkout .order .tit{
    color: #000000;
    margin-bottom: 16px;
    font-size: 1.2rem;
    line-height: 1.22;
    padding-top: 0;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

#Checkout .formCont .formItemGroup {
    display: flex;
    justify-content: space-between;
}

#Checkout .formCont .formItemGroup .formItem {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    flex: 1;
}

#Checkout .formCont .formItemGroup .formItem label {
    font-weight: 400;
    line-height: 2;
}

#Checkout .formCont .formItemGroup .formItem label i {
    color: red;
    font-style: normal;
}

#Checkout .formCont .formItemGroup .formItem textarea {
    margin-top: 12px;
}

#Checkout .formCont .formItemGroup .formItem input,
#Checkout .formCont .formItemGroup .formItem select {
    border-radius: 20px;
    margin-top: 12px;
    height: 44px;
}

#Checkout .order .tit {
    color: #000000;
    margin-bottom: 16px;
    font-size: 1.2rem;
    line-height: 1.22;
    padding-top: 0;
    font-weight: 800;
}

#Checkout .order tbody tr td {
    font-weight: 300;
}

#Checkout .payment {
    background: #ebe9eb;
    border-radius: 5px;
    padding: 20px;
}

#Checkout .payment .top {
    display: flex;
    align-items: center;
}

#Checkout .payment .top .imgs {
    display: flex;
    margin-left: 40px;
    flex-wrap: wrap;
    gap: 2px;
}

#Checkout .payment .top .imgs img {
    display: block;
    width: 30px;
}

#Checkout .payment .payCont {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    font-size: 0.92em;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #dfdcde;
    color: #515151;
}

#Checkout .payment p.b {
    padding-top: 20px;
    /* font-weight: 300; */
    border-top: 1px solid #cfc8d8;
    margin-top: 28px;
    line-height: 1.6;
}

#Checkout .payment p.b a {
    color: #227d0c;
    margin: 0 3px;
}

#Checkout .payment p.b a:hover {
    text-decoration: underline;
}

#Checkout .payment .button {
    margin-top: 20px;
    width: 100%;
    line-height: 52px;
    background: #ffd936;
    color: #214842;
    cursor: pointer;
}

#Checkout .payment .button:hover {
    background: #227d0c;
    color: #fff;
}

#checkoutSuccess {
    background: #fff;
    padding: 20px 0;
}

#checkoutSuccess .cont {
    background: #fff;
}

#checkoutSuccess .cont .box {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

#checkoutSuccess .cont .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0px 0 20px;
}

#checkoutSuccess .cont .top .left .t {
    font-size: 20px;
    color: #12521b;
    margin-bottom: 10px;
}

#checkoutSuccess .cont .top .left p.b {
    font-size: 14px;
}

#checkoutSuccess .cont .top .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
}

#checkoutSuccess .cont .top .right .t {
    color: #212121;
}

#checkoutSuccess .cont .top .right .t span {
    color: #a61f22;
    font-size: 22px;
}

#checkoutSuccess .cont .top .right a {
    color: #227d0c;
}

#checkoutSuccess .cont .bottom {
    padding-top: 20px;
}

#checkoutSuccess .cont .bottom .item {
    display: flex;
    font-size: 14px;
    margin: 5px 0;
}

#checkoutSuccess .cont .bottom .item .label {
    width: 200px;
}

#actionTip {
    background: #f6f5f8;
    border-top: 2px solid #227d0c;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: 300;
}

#actionTip i {
    color: #227d0c;
    margin-right: 20px;
}

#actionTip a {
    color: #227d0c;
    font-weight: bold;
    display: block;
    background: #efc360;
    min-width: 120px;
    line-height: 46px;
    text-align: center;
    border-radius: 23px;
    transition: all 0.5s;
}

#actionTip a:hover {
    background: #227d0c;
    color: #fff;
}

#actionTip.error {
    display: none;
    border-top: 2px solid #a61f22;
    color: #a61f22;
}

#actionTip.error i {
    color: #a61f22;
}

#checkoutSuccess {
    background: #fff;
    padding: 100px 0 20px;
}

#checkoutSuccess .cont {
    background: #fff;
}

#checkoutSuccess .cont .box {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

#checkoutSuccess .cont .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0px 0 20px;
}

#checkoutSuccess .cont .top .left .t {
    font-size: 20px;
    color: #12521b;
    margin-bottom: 10px;
}

#checkoutSuccess .cont .top .left p.b {
    font-size: 14px;
}

#checkoutSuccess .cont .top .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
}

#checkoutSuccess .cont .top .right .t {
    color: #212121;
}

#checkoutSuccess .cont .top .right .t span {
    color: #a61f22;
    font-size: 22px;
}

#checkoutSuccess .cont .top .right a {
    color: #227d0c;
}

#checkoutSuccess .cont .bottom {
    padding-top: 20px;
}

#checkoutSuccess .cont .bottom .item {
    display: flex;
    font-size: 14px;
    margin: 5px 0;
}

#checkoutSuccess .cont .bottom .item .label {
    width: 200px;
}

#privacy {
    padding: 150px 0;
}

#privacy .title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

#privacy .text {
    line-height: 1.8;
    font-weight: 300;
}