/*nav-shopping*/
.vnt-nav-shopping{
    padding: 5px;
    border: 1px solid #cccccc;
    margin-bottom: 15px;
}
.vnt-nav-shopping ul{
    text-align: center;
}
.vnt-nav-shopping ul li{
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
.vnt-nav-shopping ul li:before{
    content: "\f101";
    font-family: fontAwesome;
    position: absolute;
    right:-17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color:#333333;
}
.vnt-nav-shopping ul li:last-child:before{
    content: initial;
}
.vnt-nav-shopping ul li.active ,
.vnt-nav-shopping ul li.active a{
    color:#de0059;
}



/*cart*/
.vnt-order-cart {}

.vnt-table-cart {
}
.vnt-table-cart .vnt-table-cart__thead {
    font-weight: bold;
}
.vnt-table-cart .vnt-table-cart__thead .vnt-table-cart__tr {
    display: grid;
    grid-template-columns: 80px 10% 32% 20% auto;
}

.vnt-table-cart .vnt-table-cart__tr > div {
    padding: 10px;
}
.vnt-table-cart .vnt-table-cart__tr > div:first-child {
    padding-left: 0;
}
.vnt-table-cart .vnt-table-cart__tr > div:last-child {
    padding-right: 0;
}


.vnt-table-cart .vnt-table-cart__tbody {

}

.vnt-table-cart .vnt-table-cart__tbody .vnt-table-cart__tr {
    display: grid;
    grid-template-columns: 80px  auto;

    margin-bottom: 10px;
    border-bottom: 1px solid #d6c9b0;
}



.vnt-table-cart .vnt-table-info {
    display: grid;
    grid-template-columns:  10% 40% 20% auto;
    align-items: center;
}
.vnt-table-cart .vnt-table-info > div {
    text-align: center;
}

.vnt-table-cart .i-img {
    text-align: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}
.vnt-table-cart .i-img a {
    display: block;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.vnt-table-cart .i-img a img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;

}

.vnt-table-cart .i-product {
    margin-top: 5px;
}

.vnt-table-cart .i-product .pro-item {
    display: grid;
    grid-template-columns:  80px auto;
    margin-top: 5px;
    align-items: center;
}
.vnt-table-cart .i-product .pro-item .pro-item__label {
    font-weight: bold;
}


.vnt-table-cart .i-product .i-title { }
.vnt-table-cart .i-product .i-title a { }
.vnt-table-cart .i-product .i-title a:hover {
    color: var(--web-color);
}
.vnt-table-cart .i-product .i-code{
    color: #333333;
}

.vnt-table-cart .i-product .i-size {
    width: auto;
    min-width: 135px;
}


.vnt-table-cart .i-product .i-info-more {
    display: flex;
    margin: 0 -10px;
    margin-bottom: 5px;
}

.vnt-table-cart .i-product .i-info-more > div{
    padding: 0 10px;
}

.vnt-table-cart .i-quantity{
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    width: 70px;

    /*border: solid 1px rgba(0,0,0,0.08);*/

}
.vnt-table-cart .i-quantity button,
.vnt-table-cart .i-quantity input{
    height: 40px;
    text-align: center;
    background: transparent;
    border:none;
}
.vnt-table-cart .i-quantity button{
    width: 40px;
}
.vnt-table-cart .i-quantity input{
    width: calc(100% - 60px);
    border:none;
    text-align: center;
    border-left: solid 1px rgba(0,0,0,0.08);
    border-right: solid 1px rgba(0,0,0,0.08);
    font-size: 16px;
}

.vnt-table-cart .i-quantity select {

}

.vnt-table-cart .i-price {
    text-align: center;
}
.vnt-table-cart .i-price .price-old {
    text-decoration: line-through;
    color: #999999;
}
.vnt-table-cart .i-price .price {
     font-weight: bold;
    color: var(--web-color);
    font-size: 20px;
}
.vnt-table-cart .i-total {
    font-size: 20px;
    text-align: right;
    color: var(--web-color);
    font-weight: bold;
}

.vnt-table-cart .i-remove {
    font-size: 16px;
    text-align: left;
}

.vnt-table-cart__tfoot {}
.vnt-table-cart__tfoot .vnt-table-cart__tr {
    grid-template-columns: auto 15% 80px;
}

.vnt-table-cart__tfoot .price-item {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;

}
.vnt-table-cart__tfoot  .i-label{
    text-align: right;
}
.vnt-table-cart__tfoot .i-price {
    text-align: center;
    font-weight: bold;
}
.vnt-table-cart__tfoot .i-price .i-label {
    display: inline-block;
    margin-right: 15px;
}
.vnt-table-cart__tfoot .i-price  .price {
    font-size: 18px;
    font-weight: bold;
}

.vnt-table-cart__tfoot .i-price .price-total {
    font-size: 20px;
    line-height: 30px;
    color: #d42626;
}


.order-cart-summary {
    display: flex;
    justify-content: flex-end;
}

.order-cart-support {
   margin-top: 20px;
}
.order-cart-support .support-order { }
.order-cart-support .support-order .note_cart {
    padding: 15px;
    background: #ff8315;
    color: #fff;
    border-bottom: 1px solid #d26c11;
    margin-bottom: 15px;
}





.order-cart-summary .order-cart-total {}
.order-cart-total { }

.order-cart-total .order-cart-total__list{

}
.order-cart-total .price-item {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.order-cart-total .price-item .i-label{
    font-weight: bold;

    padding-right: 10px;
    width: 130px;
}
.order-cart-total .price-item .i-price{
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
}
.order-cart-total .price-item .total_cart {

}

.order-cart-total .price-item .total_price {
    font-size: 22px;
    font-weight: bold;
    color: var(--web-color);
}


.vnt-cart-button {
    margin-top: 15px ;
}
.vnt-cart-button__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
}

.vnt-cart-button__list > .vnt-cart-button__col {
     width: 50%;
}

.vnt-cart-button__list button {
    width: 100%;
    border: none;
    font-weight: bold;
    background: var(--web-btn-color);
    color: #ffffff;
    padding: 5px 15px;
    line-height: 25px;

    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vnt-cart-button__list button:hover {
    background: var(--web-btn-hover-color);
}


.vnt-cart-button__list button.btn-cancel {
    background: #666;
    color: #ffffff;
}
.vnt-cart-button__list button.btn-cancel:hover {
    background: #333333;
}


/*loadding*/
.loading-cart {}
.loading-cart .loading-pic {

}
.loading-cart  .loading-img {
    height: 70px;
}

.loading-cart .loading-item .loading-text {
    height: 15px;
    background-color: #eeeeee;
}
.loading-cart .loading-item .loading-text:first-child{
    margin-top:0;
}


/*method*/

.vnt-shopping {

}

.vnt-shopping-grid {
    display: grid;
    grid-template-columns: 1fr 480px ;
    grid-column-gap: 30px;
}
.vnt-shopping-grid__col {

}

.box-shopping {
    margin-bottom: 30px;
}
.box-shopping__title {
    font-size: 20px;
    color: #73af39;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d6c9b0;
}
.box-shopping__content {

}


.shopping-tab-customer {
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.shopping-tab-customer .tab-item {
    line-height: 25px;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}

.shopping-tab-customer .tab-item::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border: 1px solid #9c9c9c;
    border-radius: 100%;
    background: #fff;
}
.shopping-tab-customer .tab-item.active::before{
    border: 1px solid var(--web-color);
}
.shopping-tab-customer .tab-item.active::after{
    content: '';
    width: 14px;
    height: 14px;
    background: var(--web-color);
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
}

.shopping-tab-customer .tab-item a {
    text-decoration: underline;

}


.vnt-shopping-form {}
.vnt-shopping-form .form-group {
    display: flex;
    align-items: center;
}
.vnt-shopping-form .form-label {

    width: 30%;
}
.vnt-shopping-form .form-input {
    width: 70%;
}

.vnt-shopping-form .form-label label {
    font-weight: normal;
    margin-bottom: 0;
}
.vnt-shopping-form .form-label label span{ color: red}

.vnt-shopping-form .form-input input ,
.vnt-shopping-form .form-input select {
    width: 100%;
    height: 35px;
    font-size: 14px;
    line-height: 22px;
    border-radius: 0;
}

.vnt-shopping-form .form-btn {
    text-align: center;
    margin: 15px;
}

.vnt-box-choose {

}
.choose-title {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 21px;
    position: relative;
    cursor: pointer;
}
.choose-title .choose-label {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
    cursor: pointer;

    display: grid;
    grid-template-columns: 20px 1fr 20px ;
    grid-column-gap: 10px;
    align-items: center;
}


.choose-title .choose-label .i-icon {
    text-align: right;
}


/*
.i-same::after {
    content: "\f0d1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 15px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.i-invoice::after {
    content: "\f1ad";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 15px;

    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
*/
.choose-content {
    padding-top: 10px;
}







.vnt-cart-summary {}
.vnt-cart-summary table {
    width: 100%;
    border-collapse: collapse;

}


.vnt-cart-summary table tr {
    border-bottom: 1px solid #e0e0e0 ;
}
.vnt-cart-summary table th {
    padding: 7px 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #666;
    font-size: 12px;
    white-space: nowrap;
}
.vnt-cart-summary table td {
    padding: 7px 0;
}
.vnt-cart-summary table td a {

}


.vnt-cart-summary .order-cart-total {
    padding: 0;
}

.vnt-cart-summary .order-cart-total__list {
    padding-top: 10px;
}


/*Shipping*/

.vnt-shopping-method {}
.vnt-shopping-method .item-method {
    display: flex;

}
.vnt-shopping-method .item-method .i-input {
    width: 20px;
    margin-right: 10px;
}
.vnt-shopping-method .item-method .i-content {
    width: calc(100% - 30px);
}
.vnt-shopping-method .item-method label {
    cursor: pointer;
}
.vnt-shopping-method .item-method .i-title {}
.vnt-shopping-method .item-method .i-desc {}
.vnt-shopping-method .item-method .i-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--web-color);
}



/*Payment*/
.vnt-box-coupon {

}
.vnt-box-coupon .promotion-title {
    margin-bottom: 10px;
    font-weight: bold;
}
.vnt-box-coupon .coupon-form{
    display: flex;
    align-content: center;
    align-items: center;
}

.coupon-form .i-label {
    white-space: nowrap;
    padding-right: 10px;
}
.coupon-form input{
    max-width: 200px;
    border: 1px solid #eeeeee;
    height: 40px;
    padding: 0 10px;
    background-color: #FFFFFF;
    border-radius: 0;


}

.coupon-form input::placeholder {
    font-size: 11px;
    color: #999999;
}
.coupon-form button{
    width: 70px;
    height: 40px;
    border-radius: 0;
    background: var(--web-color);
    color:#ffffff;
    border:none;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}
.coupon-form button:hover{
    background: #333333;
}


.box-coupon {
    margin-bottom: 10px;
}
.coupon-info {
    padding: 5px 10px;
    min-height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 10px;
}

.coupon-info .coupon-mess {
    line-height: 30px;
    margin-right: 20px;
}

.coupon-info .coupon-code {
    color: #ed1c24;
}

.coupon-mess a {
    position: absolute;

    color: #ed1c24;
    line-height: 30px;

    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}



.coupon-mess a {
    position: absolute;
    right: 10px;
    color: #ed1c24;
}






.vnt-method-list {}
.vnt-method__item {
    margin-bottom: 15px;
}
.vnt-method__item.active {}
.vnt-method__item .item-method {}
.vnt-method__item .method-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;

}

.vnt-method__item.active  .method-title label {
    color: var(--web-color);
}

.vnt-method__item .method-desc {
    display: none;
    padding-left: 30px;
    margin-top: 5px;
}
.vnt-method__item.active .method-desc {
    display: block;
}







.vnt-box-payment { }
.payment-card {
    margin: 10px 0;
}

.vnt-box-payment__title {}
.vnt-box-payment__content {}
.vnt-box-payment__form {
    max-width: 700px;
}
.vnt-box-payment__form label.form-label {
    font-weight: normal;
}

.vnt-box-payment__form input ,
.vnt-box-payment__form select {
    width: 100%;
    height: 35px;
    font-size: 14px;
    line-height: 22px;
    border-radius: 0;
}



/*box-process*/

.box-process {
    padding: 50px 30px;
    position: relative;
    border: solid 1px  var(--web-color);
    background: #ffffff;
}

.process-content {
    text-align: center;
    padding: 50px 0;
}

.process-loading {}



/*shopping finished*/

.vnt-box-finished {
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #f0f0f0;
}

.vnt-box-finished__content {
    max-width: 580px;
    margin: 0 auto;
}

.box-success {}
.box-success .txt1 {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.box-success .txt2 {
    font-size: 15px;
    line-height: 23px;
    max-width: 450px;
    margin: auto;
    margin-bottom: 10px;
}
.box-success .txt3 {
    font-size: 20px;
    line-height: 30px;
    background: #fff;
    padding: 15px 37px;
    text-align: center;
    color: #333333;
}
.box-success .box-code {
    background: var(--web-color1);
    color: #ffff;
    text-align: center;
    padding: 9px 10px;
    margin-bottom: 25px;
}

.box-success .box-code .txt {
    font-size: 14px;
    line-height: 22px;
}
.box-success .box-code .code {
    font-size: 40px;
    line-height: 50px;

}

.finished-btn {
    margin: 15px auto;
    text-align: center;
}
.finished-btn__grid {
    display: inline-flex;
    align-items: center;
}
.finished-btn__grid > a {
    margin: 0 5px;
}




/*RES*/
