@import url("../components/checkout-form.css?v=1.0.0.5");

/* ======= Checkout steps */

.shopping-steps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  margin-top: 20px;
}
.shopping-steps .steps-wrapper {
  display: flex;
  flex-direction: row;
}
.shopping-steps .steps-wrapper .steps {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.shopping-steps .steps-wrapper .steps .step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--secondary_text);
  position: relative;
}
.shopping-steps .steps-wrapper .step-in-progres .step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
}
.shopping-steps .steps-wrapper .step-in-progres .step .points {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--background);
}
.shopping-steps .steps-wrapper .step-succes-done .step .points::before {
  content: "";
  position: absolute;
  top: 8.5px;
  left: 8.5px;
  width: 11px;
  height: 8px;
  border: 1px solid var(--white);
  border-radius: 1px;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}
.shopping-steps .steps-wrapper .steps .text {
  margin-left: 12px;
  margin-right: 8px;
  color: var(--secondary_text);
  text-decoration: none;
}

.shopping-steps .steps-wrapper .step-in-progres .text {
  color: var(--main_text);
  font-weight: 500;
  margin-right: 8px;
  margin-left: 12px;
}
.shopping-steps .steps-wrapper .step-succes-done .text {
  color: var(--srep_success);
  text-decoration: none;
}
.shopping-steps .steps-wrapper .step-succes-done .step {
  background-color: var(--srep_success);
  border: var(--srep_success);
}
.shopping-steps .steps-wrapper hr {
  width: 50px;
  height: 2px;
  background-color: var(--secondary_text);
  border-radius: 5px;
  margin-right: 12px;
  border-top: none;
}
.shopping-steps .steps-wrapper .step-succes-done hr {
  background-color: var(--srep_success);
  /* border: var(--srep_success); */
}
.shopping-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .shopping-steps {
    display: none;
  }
  .shopping-mobile {
    padding-top: 10px;
    display: block;
    background-color: var(--header_background);
    width: 100vw;
    margin-left: -15px;
    margin-bottom: 20px;
    width: calc(100% - -30px);
  }
  .shopping-mobile .shopping-mobile-steps {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-bottom: 10px;
  }
  .shopping-mobile .shopping-mobile-steps .step-circle {
    margin-right: 12px;
    width: 28px;
    height: 28px;
    background-color: var(--main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shopping-mobile .shopping-mobile-steps .step-circle .points {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
  }
  .shopping-mobile .shopping-mobile-steps .step-number-wrapper {
    display: flex;
    align-items: center;
  }
  .shopping-mobile .shopping-mobile-steps .step-number-wrapper .text-xs {
    margin-bottom: 0;
    margin-right: 5px;
  }
  .shopping-mobile
    .shopping-mobile-steps
    .step-number-wrapper
    .text-xs
    .step-color {
    margin-left: -3px;
    color: var(--secondary_text);
  }
  .shopping-mobile .shopping-mobile-steps .text-sm {
    font-weight: 500;
  }
  .shopping-mobile .shopping-mobile-row {
    background-color: var(--step_border);
    height: 12px;
  }
  .shopping-mobile .shopping-mobile-row .row-success {
    width: 25%;
    background-color: var(--srep_success);
    height: 12px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .ch-3step {
    width: 33% !important;
  }
  .shopping-mobile .shopping-mobile-row .row-success-2 {
    width: 50%;
  }
  .shopping-mobile .shopping-mobile-row .row-success-3 {
    width: 75%;
  }
  .shopping-mobile .shopping-mobile-row .row-success-4 {
    width: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

/* ======= Shopping Cart Empty ======= */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin: 0 15px;
}
.page-wrapper .text-lg {
  color: var(--main);
}
.cart-img--padding {
  padding-top: 30px;
}

.emptyCart {
  fill: var(--main);
}
.cart-img svg {
  max-width: 100%;
  object-fit: contain;
}
.page-wrapper .continue-btn {
  margin: 60px 0;
  min-width: 225px;
}
/* ======= Shoping Cart ======= */

.checkout-cart {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 146px;
}
.box-shadow-wrapper {
  width: 68%;
}
.title {
  margin-bottom: 25px;
}
.boxShadow {
  background-color: var(--block_background);
  border-radius: var(--block_radius);
  box-shadow: 0 3px 10px var(--checkout_boxshadow);
}
.boxShadow .sellect-all {
  padding: 10px 20px 0;
  width: 100%;
}

.boxShadow .all {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}
.wrap-color {
  display: none;
}
.wrap-color a {
  color: var(--main);
}
.boxShadow .products {
  display: flex;
}
.select-product {
  margin-top: 10px;
}
/* .select-product .checkmark{
  background-color: var(--white);
} */
.boxShadow .products .prod-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  /* margin-left: 10px; */
  justify-content: space-between;
  width: 100%;
}
.boxShadow .product-discription {
  display: flex;
  width: 85%;
}
.boxShadow .product-img {
  height: 100px;
  max-width: 100px;
  width: 100%;
  margin-right: 10px;
  margin-left: 20px;
}
.boxShadow .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.no-image {
  height: 100px;
}
.no-image::before {
  font-size: 50px;
}
.boxShadow .width {
  width: 82%;
}
.boxShadow .nameQty {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.boxShadow .nameQty .name {
  max-width: 280px;
}
.boxShadow .name-wrapper {
  margin-bottom: 10px;
}
.boxShadow .name-wrapper .text-sm {
  color: var(--main);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.boxShadow .product-characteristics span {
  margin-bottom: 6px;
}
.boxShadow .product-characteristics:last-child {
  margin-bottom: 10px;
}
.boxShadow .product-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.boxShadow .remove-price {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.boxShadow .remove-price .remove {
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.boxShadow .remove-price .remove:hover {
  color: var(--main);
}
.boxShadow .product-price button {
  display: none;
}
.boxShadow .qty-wrapper {
  width: 110px;
  text-align: center;
}
.boxShadow .add-plus {
  width: 50px;
  display: flex;
  margin-right: 1px;
  vertical-align: top;
}
.boxShadow .add-plus .material-icons {
  /* min-width: 30px; */
  /* height: 30px; */
  padding: 3px 4px 4px 3px;
  min-width: 20px !important;
  width: 20px;
  height: 20px;
  padding: 7px 6px 6px 6px;
  /* background-color: var(--background);
    color: var(--secondary_text); */
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}
.boxShadow .add-plus:disabled {
  background-color: var(--background);
  cursor: not-allowed;
}
.boxShadow .add-plus input {
  border: none;
  padding: 0;
  width: 34px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: text;
  text-align: center;
  margin-top: 1px;
  background-color: var(--block_backround);
}
.boxShadow .add-plus input:hover,
.boxShadow .add-plus input:focus {
  background-color: var(--block_background);
}
.boxShadow .qty-wrapper .font-lg {
  font-weight: bold;
}
.boxShadow .qty-wrapper .font-md {
  font-weight: bold;
  text-align: center;
}
.boxShadow .price-wrapper {
  text-align: right;
}
.boxShadow .price-wrapper .text-md {
  font-weight: bold;
}
.boxShadow .price-wrapper .text-sm {
  text-decoration: line-through;
}
.boxShadow .products + .products {
  border-top: 1px solid var(--checkout_border);
  padding-top: 20px;
}
.paypal-wrapper {
  width: 100%;
}
.paypal-wrapper .paypal-title .text-sm {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 12px;
}
/* .cardWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} */
.checkout-payments-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.checkout-payments-icon img {
  width: 33px;
  height: 25px;
  margin-right: 5px;
  margin-bottom: 5px;
  object-fit: cover;
  border-radius: 5px;
}
.labels {
  background-size: contain;
  background-color: var(--white);
  background-position: center;
  height: 30px;
  width: 47px;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin-right: 7px;
  margin-top: 7px;
}
.label-size {
  width: 70px;
  height: 40px;
  margin-top: 0;
}
.visa {
  background-image: url(../../img/visa.svg);
}
.master {
  background-image: url(../../img/master.svg);
}
.amex {
  background-image: url(../../img/amex.svg);
}
.arca {
  background-image: url(../../img/arca.svg);
}
.pay_pal {
  background-image: url(../../img/paypal.svg);
}
.yandex_many {
  background-image: url(../../img/yandexmany.svg);
}
.payfast {
  background-image: url(../../img/payfast.svg);
}
.paystack {
  background-image: url(../../img/paystack.svg);
}
.idram {
  background-image: url(../../img/idram.svg);
}
.cash {
  background-image: url(../../img/cash.svg);
}
.banktransfer {
  background-image: url(../../img/bank-transfer.svg);
}
.telcell {
  background-image: url(../../img/telcell.svg);
}
.myameriapay {
  background-image: url(../../img/myameriapay.svg);
}

@media screen and (max-width: 991px) {
  .box-shadow-wrapper .title {
    display: none;
  }
  .boxShadow {
    background-color: var(--background);
    box-shadow: none;
  }
  .boxShadow .sellect-all {
    padding: 0;
    background-color: var(--body_background);
  }
  .boxShadow .title {
    display: none;
  }
  .boxShadow .sellect-all .all {
    margin-bottom: 10px;
    padding-left: 15px;
  }
  .boxShadow .sellect-all .checkbox-style label {
    background-color: var(--white);
  }
  .boxShadow
    .sellect-all
    .checkbox-style
    input[type="checkbox"]:checked
    + label {
    background-color: var(--main);
  }
  .boxShadow .sellect-all .all .checkmark {
    background-color: var(--white);
  }
  .boxShadow .products {
    flex-direction: column;
    border-radius: var(--block_radius);
    background-color: var(--block_background);
    margin-bottom: 12px;
    box-shadow: 0 3px 10px var(--checkout_boxshadow);
    padding: 15px 15px 0 15px;
  }
  .boxShadow .products + .products {
    border-top: none;
    padding-top: 15px;
  }
  .boxShadow .products .prod-row {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: -10px;
  }
  .boxShadow .product-discription {
    width: 100%;
  }

  .boxShadow .nameQty {
    flex-direction: column;
  }
  .boxShadow .nameQty .name {
    max-width: 100%;
  }
  .boxShadow .product-price {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--checkout_border);
    padding-top: 15px;
    margin-top: 15px;
  }
  .boxShadow .remove-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
  }

  .boxShadow .sellect-all .product-hr {
    display: none;
  }
  .boxShadow .sellect-all .price-wrapper {
    display: flex;
    flex-direction: column;
  }
  .boxShadow .price-wrapper .sale {
    margin-left: 10px;
    margin-bottom: 0;
  }
  .boxShadow .price-wrapper .text-md {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .shopping-steps {
    display: none;
  }
  .checkout-cart {
    margin-top: 20px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .box-shadow-wrapper {
    width: 100%;
  }
  .checkout-cart {
    flex-direction: column;
  }
  .boxShadow {
    width: 100%;
  }
  .boxShadow .sellect-all .all {
    padding-left: 0;
  }
  .select-product {
    margin-top: 0;
    margin-bottom: 10px;
    display: none;
  }
  .select-product .checkbox-label label {
    font-size: 14px;
    color: var(--main);
  }
  .select-product .checkmark {
    background-color: var(--white);
    border: 1.5px solid var(--main);
  }
  .boxShadow .select-wrap {
    margin-left: 85vw !important;
    margin-bottom: 10px;
  }

  .boxShadow .all .links-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .boxShadow .wrap-color {
    display: block;
  }
  .boxShadow .wrap-color + .wrap-color {
    margin-left: 23px;
  }
  .boxShadow .wrap-color a {
    text-decoration: none;
    cursor: pointer;
  }
  .checkout-cart .boxShadow .all .checkbox-style {
    display: none;
  }
  .checkout-cart .boxShadow .all .checkbox-style .none {
    display: none;
  }
  .checkout-cart .boxShadow .all .text-sm {
    display: none;
    color: var(--main);
    font-weight: 400;
  }
  .checkout-cart .boxShadow .products {
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
    border-top: transparent;
    padding-top: 0;
    padding: 0;
    align-items: flex-start;
  }
  .checkout-cart .boxShadow .products .checkbox-style {
    display: none;
  }
  .checkout-cart .boxShadow .products .prod-row {
    padding: 10px;
    border-radius: var(--block_radius);
    background-color: var(--block_background);
    position: relative;
    flex-direction: column;
    transition: all 1s ease 0s;
    margin-bottom: 10px;
  }
  .checkout-cart .nameQty {
    flex-direction: column;
  }
  .boxShadow .price-wrapper .sale {
    margin-left: 0;
  }
  .cardWrap-padding {
    padding: 0 20px;
  }
  .boxShadow .product-img {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .boxShadow .select-wrap {
    margin-left: 80vw !important;
    margin-bottom: 10px;
  }
}
/*======= Checkout right side =======*/
.right_payment {
  height: 100%;
  position: sticky;
  top: 80px;
  width: 30%;
  margin-left: 30px;
}
.boxShadow1 {
  width: 100%;
}
.boxShadow1 .payment-content {
  max-width: 340px;
}
.boxShadow1 .payment-total-wrapper {
  padding: 6px 23px 0px 23px;
}
.boxShadow1 .payment-total {
  width: 100%;
  border-bottom: 1px solid var(--checkout_border);
  padding: 10px 0;
}

.promo-close-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  z-index: 1;
  color: var(--white);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--checkout_border);
  margin-left: 2px;
}
.promo-close-icon:hover{
  text-decoration: none;
  color: var(--white);
 }
 .promo-close-icon:active{
  text-decoration: none;
  color: var(--white);
 }
.boxShadow1 .payment-total .promocode-apply-wrapper {
  display: flex;
  gap:5px;
}
.promocode-apply-wrapper .checkout-btn .text-sm {
  margin-bottom: 0 !important;
}
.promocode-apply-wrapper .checkout-btn {
  margin-top: 0 !important;
}
.boxShadow1 .payment-total:last-child {
  border-bottom: none;
}
.boxShadow1 .text-sm {
  font-weight: bold;
  margin-bottom: 10px;
}

/* .boxShadow1 .apply {
display: flex;
flex-direction: row;
}
.boxShadow1 .apply-input {
width: 66%;
margin-right: 10px;
}
.boxShadow1 .apply-input .form-group input {
margin-right: 10px;
}
.boxShadow1 .apply .button-wrapper {
width: 34%;
} */

.boxShadow1 .payment-total .text-xs {
  color: var(--secondary_text);
}
.boxShadow1 .payment-total .item {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}
.boxShadow1
  .payment-content
  .payment-total-wrapper
  .payment-total
  .items-total
  .item
  .discount {
  color: var(--srep_success);
  display: flex;
  align-items: center;
}

.items-total span:last-child {
  text-align: right;
  margin-left: 5px;
}
.boxShadow1 .font-big {
  font-weight: bold;
  color: var(--main_text);
}
.boxShadow1 .reward {
  color: var(--main);
}
.boxShadow1 .user-bonus {
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 23px;
  padding-right: 23px;
}
.boxShadow1 .user-bonus img {
  margin-right: -30px;
}
.boxShadow1 .user-bonus .payment-total {
  width: 85%;
}
.boxShadow1 .user-bonus .item {
  display: flex;
  justify-content: space-between;
}
.user-bonus {
  background-color: rgba(88, 70, 185, 0.1);
  display: flex;
  justify-content: space-between;
}
.user-bonus span {
  color: var(--main);
}
.right_payment .checkout {
  width: 100%;
}
.right_payment .checkout {
  width: 100%;
}
.checkout-mobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .checkout-mobile {
    position: static !important;
  }
}
.right_payment .checkout-btn {
  margin-top: 20px;
}
.right_payment .btn {
  flex-direction: column;
}
.right_payment .checkout .text-xs {
  font-weight: 400;
}
.right_payment .text-wrapper .text-xs {
  text-align: center;
  color: var(--secondary_text);
  padding: 10px;
}
.right_payment--mt {
  margin-top: 30px;
}
.details-wrapper-width .right_payment {
  width: 91%;
}
.details-wrapper-width .right_payment {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .right_payment {
    width: 42%;
    margin-left: 15px;
  }
  .right_payment .boxShadow1 {
    width: 100%;
    box-shadow: 0 3px 10px var(--checkout_boxshadow);
    background-color: var(--block_background);
  }
}

@media screen and (max-width: 576px) {
  .checkout-wrapper {
    overflow-x: hidden;
  }
  .details-wrapper-width .right_payment {
    width: calc(100% - -30px);
    margin-top: 40px;
    margin-left: 0;
    margin-left: -15px;
  }
  .right_payment {
    width: calc(100% - -30px);
    margin-top: 40px;
    margin-left: 0;
    margin-left: -15px;
  }
  .right_payment .boxShadow1 .payment-content {
    max-width: 100%;
  }
  .details-wrapper-width .right_payment .boxShadow1 .payment-content {
    max-width: 100%;
  }
  .checkout-cart .right_payment .boxShadow1 {
    border-radius: 0;
  }
  .checkout-cart .right_payment .boxShadow1 .payment-content {
    max-width: 100%;
  }
  .checkout-cart .right_payment .boxShadow1 .payment-content .items {
    font-size: 16px;
  }
  .checkout-cart .right_payment .boxShadow1 .payment-content .items .font-big {
    font-size: 20px;
  }
  .checkout-cart .right_payment .checkout {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 25px;
  }
  .checkout-cart .right_payment .checkout .checkout-btn {
    width: 319px;
  }
  .right_payment .boxShadow1 {
    border-radius: 0;
  }
}

.error {
  border: 1px solid var(--error);
  border-radius: 6px;
}
.error:hover {
  border: 1px solid var(--error);
  border-radius: 6px;
}
.modal .modal-dialog .modal-content .modal-body span {
  display: flex;
  justify-content: center;
  color: var(--secondary_text);
  font-size: 18px;
  margin-top: 40px;
}

.box-services {
  margin-top: 20px;
}
.box-services .sellect-all {
  padding: 0;
}
.box-services .sellect-all .products {
  padding: 20px 20px 5px 20px;
}
.box-services .name-wrapper .text-sm {
  cursor: auto;
}
@media (max-width: 991px) {
  .box-services {
    margin-top: 10px;
  }
  .box-services .sellect-all {
    padding: 0;
  }
}
.services-wrapper {
  margin-left: 25px;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .services-wrapper {
    width: calc(100% - 25px) !important;
  }
  .services-wrapper .product-discription {
    width: 100% !important;
  }
}
@media (max-width: 576px) {
  .services-wrapper {
    margin-left: 0px;
    width: 100% !important;
    margin-bottom: 10px !important;
  }
}
.services-wrapper .product-discription {
  width: 90%;
}
.services-wrapper .product-discription .width {
  width: 100% !important;
}
.services-wrapper .nameQty .name {
  max-width: 100%;
}
