

.boxNotFound{
  padding: 50px 30px;
  position: relative;
  border: solid 1px  var(--web-color);
  background: #ffffff;
}

.div_notfound {
  text-align: center;
}
.mess_notfound {
  font-weight: bold;
  color:  #ff0000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

.boxNotFound .back a{

}





/*Cart*/

/*Shopping*/



.box-shopping {
  background: #ffffff;
  margin-bottom: 30px;
}
.box-shopping__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  background: #f7f7f7;
  padding: 18px 20px;
}
.box-shopping__content {
  padding: 20px;
  border: solid 1px #f7f7f7;
}

.shopping-tab-customer {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.shopping-tab-customer .tab-item {
  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: 150px;
  font-weight: normal;
  color: #666666;
}
.vnt-shopping-form .form-input {
  width: calc(100% - 150px);
}

.vnt-shopping-form .form-label label {
  margin-bottom: 0;
  font-weight: normal;
}
.vnt-shopping-form .form-label label span{ color: red}

.vnt-shopping-form .form-input input ,
.vnt-shopping-form .form-input select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 0;
}


.vnt-box-choose {

}
.choose-title {
  margin-bottom: 10px;
  position: relative;


  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 15px ;
  background: #f7f7f7;

}
.choose-title .choose-label {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  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-input input { margin: 0}
.choose-title .choose-label .i-icon {
  text-align: right;
  font-size: 18px;
}





.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  .method-title label {
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: normal;
  color: #333333;
}

.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 {

}









.vnt-checkbox{
  position: relative;
}
.vnt-checkbox label{
  margin-bottom: 0;
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 300 !important;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.vnt-checkbox input[type=checkbox] {
  border: none !important;
  width: 1px;
  height: 1px;
  position: absolute;
  cursor: pointer;

  top: 0;
  left: 0;
  -webkit-appearance: checkbox !important;
  margin-left: 0;
}

.vnt-checkbox input[type=checkbox]::before{
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
}
.vnt-checkbox input[type=checkbox]:checked::before{
  background-color: #2d5923;
  border-color: #2d5923;
}
.vnt-checkbox input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 8px;
  opacity: 0;
}
.vnt-checkbox input[type=checkbox]:checked::after{
  opacity: 1;
}


.vnt-checkbox input[type=checkbox]:checked + label:before, .vnt-checkbox input[type=checkbox]:not(:checked) + label:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: none;
  width: 0;
  height: 0;
  border: none;
  background: none;
}
.vnt-checkbox input[type=checkbox]:checked + label:after, .vnt-checkbox input[type=checkbox]:not(:checked) + label:after{
  content: '';
  width: 0;
  height: 0;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  transform:none;
  transition:unset;
}
.vnt-checkbox input[type=checkbox]:not(:checked) + label:after{
  opacity: 0;
  transform: none;
}

.vnt-checkbox a{
  margin: 0 5px;
  text-decoration: underline;
  color: var(--web-color1);
}

.vnt-checkbox.has-error a {
  color: #ff0000 ;
}

.btn-submit {
  display: block;
  background-color: var(--web-color);
  text-align: center;
  padding: 8px 20px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;

  width: 100%;
}
.btn-submit:hover {
  background-color: var(--web-color1);
}

.i-info-more {
  font-size: 12px;
  display: flex;
  margin: 0 -10px;
  margin-top: 5px;
}
.i-product .i-info-more {
  margin-top: 0;
  margin-bottom: 5px;
}

.i-info-more > div{
  padding: 0 10px;
}





/*box-cart*/


.vnt-box-coupon {

}

.vnt-box-coupon .coupon-form{
  display: flex;
  align-content: center;
  align-items: center;
}
.coupon-form input{
  width: calc(100% - 70px);
  border: 1px solid #eeeeee;
  height: 40px;
  padding: 0 10px;
  background-color: #FFFFFF;
  border-radius: 0;


}

.coupon-form input::placeholder {
  color: #999999;
}
.coupon-form button{
  width: 70px;
  height: 40px;
  border-radius: 0;
  background: var(--web-color);
  color:#ffffff;
  border:none;
  text-align: center;
  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;
}







.loading-cart .loading-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border: 0;
  padding: 0;
}

.loading-cart .loading-item .loading-pic {
  width: 20%;
}
.loading-cart .loading-item .loading-pic .loading-img {
  height: 70px;
}

.loading-cart .loading-item  .loading-info {
  width: 80%;
}






.loading-cart .loading-item .loading-text {
  height: 15px;
  background-color: #eeeeee;
}
.loading-cart .loading-item .loading-text:first-child{
  margin-top:0;
}



/*box - method*/


.shopping-tab-customer {}
.shopping-tab-customer .tab-member {}
.shopping-tab-customer .tab-guest {
  padding-left: 38px;
  position: relative;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
  margin-bottom: 12px;
}

.shopping-tab-customer .tab-guest::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-guest.active::before{
  border: 1px solid #2d5923;
}
.shopping-tab-customer .tab-guest.active::after{
  content: '';
  width: 14px;
  height: 14px;
  background: #2d5923;
  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-guest span {

}


.box-form-shopping {
  padding: 50px 30px;
  position: relative;
  border: solid 1px  var(--web-color);
  background: #ffffff;
}


.box-form-title {
  margin-bottom: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #7c8f40;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #7c8f40;
}


.box-form-shopping .form-btn {
  max-width: 320px;
  margin: 30px auto 0;
}
.form-btn a , .form-btn button{
  display: block;
  text-align: center;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 22px;
  background-color: var(--web-color);
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;

  border: none;
  width: 100%;

  margin-top: 5px;
}
.form-btn a:hover , .form-btn button:hover {
  background-color: var(--web-color1);
  color: #FFFFFF;
}

.form-btn a.btn-cancel {
  background-color: #333333;
}
.form-btn a.btn-cancel:hover {
  background-color: #666666;
}




.box-form-payment {
  padding: 50px 30px;
  position: relative;
  border: solid 1px  var(--web-color);
  background: #ffffff;
}
.box-form-payment .payment-title {
  margin-bottom: 15px;
  font-size: 18px;
}
.box-form-payment .payment-title b {
  color: #ff0000;
}

/*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 {}


/*box-payment*/



/*box-finished*/

.box-finished {
  position: relative;

}

.finished-content {}

.finished-content .itsuccesmm .vlink {
  margin: 0 auto;
}



/*checkout-cancel*/

.checkout-cancel {
  text-align: center;
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;

  padding: 50px 30px;
  position: relative;
  border: solid 1px  var(--web-color);
  background: #ffffff;
}
.box_cancel {
  text-align: center;
  padding: 50px 0;
}


.checkout_error  {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 10px 10px;
}

.box-error {
  text-align: center;

}
.hanging-icon.hanging-icon-error {
  stroke: #ff6d6d;
}





.payment-result {
  padding: 15px;
}


.payment-result  .pay-title {
  font-size: 18px;
  line-height: 24px ;
  margin-bottom: 20px;
  text-align: center;

}

.payment-result . .table-responsive {}

.payment-result .form-group  {
  margin-bottom: 10px;
  position: relative;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-start;

}
.payment-result .form-group::after {
  content: '';
  clear: both;
  display: table;
}

.payment-result .form-group  label  {
  font-weight: bold;
  width: 30%;
}



/*box-empty-cart*/
.box-empty-cart {

  padding: 50px 30px;
  position: relative;
  border: solid 1px  var(--web-color);
  background: #ffffff;
}

/** END SHOPPING ***/



@media all and (max-width: 1200px){
  .vnt-product1 .vnt-grid .i-col{
    width: 25%;
  }

}

@media all and (max-width: 991px) {
  .vnt-product .vnt-grid{
    margin: 0 -10px;
  }
  .vnt-product .vnt-grid .i-col{
    width: 33.333333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .vnt-load-product .loading-grid .loading-col {
    width: 33.333333%;
  }

  .boxFilter .menuProduct {
    z-index: 10;
  }
  .boxFilter .filter-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .boxFilter.active .filter-list {
    opacity: 1;
    pointer-events: auto;
  }
}

@media all and (max-width: 767px){
  .vnt-product .vnt-grid{
    margin: 0 -5px;
  }
  .vnt-load-product .loading-grid .loading-col {
    width: 50%;
  }

}

@media all and (max-width: 479px) {
  .vnt-load-product .loading-grid .loading-col {
    width: 100%;
  }
}
