/**
 * Single product Page.
 */

/* hide quantity input */
.single-product div.product form.cart .quantity {
  display: none;
}


/**
 * Cart Page.
 */

table.cart .product-quantity {
  display: none;
}


/**
 * Checkout Page.
 */

/* fix column layout (bootstrap owerwrite woo columns) */
#customer_details .col-1,
#customer_details .col-2 {
  width: 100%;
}

body.woocommerce-checkout {
  background: #2a2d2c;
}

body.woocommerce-checkout h1,
body.woocommerce-checkout h2,
body.woocommerce-checkout h3,
body.woocommerce-checkout h4,
body.woocommerce-checkout h5,
body.woocommerce-checkout h6,
body.woocommerce-checkout label,
body.woocommerce-checkout .wc-block-grid__product-title {
  color: #fff;
}

body.woocommerce-checkout .storefront-breadcrumb {
  display: none;
}

body.woocommerce-checkout .checkout-tab-payment,
body.woocommerce-checkout .checkout-tab-payment label,
body.woocommerce-checkout ul.order_details,
body.woocommerce-checkout .order_details {
  color: #43454b;
}

body.woocommerce-checkout #page {
  /* min-height: 1200px; */
}

/* body.woocommerce-checkout #payment {
  display: block !important;
} */

.checkout-steps {
  width: calc(100% - 160px);
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  counter-reset: custom-counter;
  position: relative;
}

.checkout-steps:before {
  content: '';
  display: block;
  height: 5px;
  width: calc(100% - 110px);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #424645;
}

.checkout-steps li {
  display: block;
  max-width: 200px;
  counter-increment: custom-counter;
  padding-top: 50px;
  color: #646464;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  transition: all 0.2 ease-in;
}

.checkout-steps li:hover {
  color: #999;
}

.checkout-steps li:before {
  content: counter(custom-counter);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: #424645;
  border-radius: 50%;
  font-size: 25px;
  line-height: 45px;
  z-index: 1;
}

.checkout-steps li:after {
  display: block;
  opacity: 0;
  content: '';
  width: 250%;
  height: 5px;
  background: red;
  position: absolute;
  top: 20px;
  left: 50%;
  transition: all 0.2s ease-in;
  transform: translateX(-50%);
  background: var(--color-accent);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, var(--color-accent) 50%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, var(--color-accent) 50%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, var(--color-accent) 50%, rgba(0, 0, 0, 0) 100%);
}

.checkout-steps li:first-child:after {
  background: -moz-linear-gradient(left, var(--color-accent) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, var(--color-accent) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, var(--color-accent) 0%, rgba(0, 0, 0, 0) 100%);
  transform: none;
}

.checkout-steps li:last-child {
  z-index: 1;
}

.checkout-steps li:last-child:after {
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, var(--color-accent) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, var(--color-accent) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, var(--color-accent) 100%);
  transform: none;
  left: auto;
  right: 50%;
}

.checkout-steps li.active {
  color: #fff
}

.checkout-steps li.active:before {
  background: var(--color-accent);
}

.checkout-steps li.active:after {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .checkout-steps {
    width: 100%;
  }

  .checkout-steps li::after {
    width: 150%;
  }
}

@media only screen and (max-width: 767px) {
  .checkout-steps {
    margin-top: 30px;
  }

  .checkout-steps li {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 500px) {
  .checkout-steps li {
    font-size: 10px;
    letter-spacing: 0;
  }

  .checkout-steps::before {
    width: calc(100% - 60px);
  }
}

.checkout-content {
  padding-bottom: 160px;
  color: #fff;
}

.checkout-content .checkout-tab {
  display: none;
  outline: none !important;
}

.checkout-content .pre-form-tab,
.checkout-content .after-form-tab {
  display: none;
}


.checkout-content .checkout-summary-prices {
  padding-top: 40px;
}

.checkout-content .order-total {
  color: var(--color-accent);
  font-size: 38px;
  font-weight: 600;
  vertical-align: bottom;
}

.checkout-content .order-total .tax {
  text-transform: uppercase;
  color: #4f5452;
  font-size: 18px;
  vertical-align: bottom;
  position: relative;
  bottom: 9px;
}

.checkout-package-box {
  background: #fff;
  border-radius: 20px;
  border-top-right-radius: 0;
  padding: 20px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
  width: 230px;
  color: #525252;
  margin-bottom: 40px;
  position: relative;
}

.checkout-package-box .title {
  text-align: center;
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 20px;
}

.checkout-package-box .title span {
  display: block;
  font-size: 11px;
  font-weight: 400;
}

.checkout-package-box .price {
  display: block;
  color: var(--color-accent);
  text-align: center;
  font-size: 18px;
}

.checkout-package-box .price .tax {
  font-size: 11px;
  color: #515151;
  text-transform: uppercase;
}

.checkout-package-box .checkout-remove-item {
  display: block;
  position: absolute;
  top: 10px;
  right: -20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.checkout-package-box .checkout-remove-item:hover {
  background: #000;
}

.checkout-package-box .checkout-remove-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.items-addons-header {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.items-addons {
  display: table;
}

.items-addons .item-addon {
  display: table-row
}

.items-addons .item-addon .title,
.items-addons .item-addon .price,
.items-addons .item-addon .for-add,
.items-addons .item-addon .for-remove {
  display: table-cell;
  padding: 3px 10px;
}

.items-addons .item-addon .title {
  padding-left: 0;
  font-size: 18px;
  font-weight: 500;
}

.items-addons .item-addon .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
}

.items-addons .fb-btn {
  font-size: 12px;
  padding: 6px 20px;
  min-width: 225px;
}

.items-addons .fb-btn.add_to_cart_button {
  background: #4f5452;
}

.items-addons .fb-btn.add_to_cart_button:hover {
  background: var(--color-accent);
}

.items-addons .for-remove {
  padding-left: 0;
}

.items-addons .for-remove .checkout-remove-item {
  padding: 5px;
}

.items-addons .for-remove .checkout-remove-item:hover {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  .checkout-footer .fb-btn {
    min-width: auto;
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media only screen and (max-width: 570px) {
  .items-addons {
    display: block;
  }

  .items-addons .item-addon {
    display: block;
    margin-bottom: 10px;
  }

  .items-addons .item-addon .title,
  .items-addons .item-addon .price,
  .items-addons .item-addon .for-add,
  .items-addons .item-addon .for-remove {
    display: inline-block;
    padding: 0;
    padding-right: 5px;
  }

  .items-addons .fb-btn {
    min-width: auto;
  }
}

.woocommerce-checkout .woocommerce-message .button.wc-forward {
  display: none;
}
