/*----------------------------------------*/
/*  24. shop
/*----------------------------------------*/
.woocommerce-content-wrap {
  border: 1px solid #e7e9ee;
  padding: 25px;
  padding-top: 0;
}
@media (max-width: 767px) {
  .woocommerce-content-wrap {
    padding-top: 10px;
  }
}

.woocommerce-toolbar-top {
  margin-bottom: 30px;
  border-bottom: 1px solid #e7e9ee;
  margin-left: -25px;
  margin-right: -25px;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .woocommerce-toolbar-top {
    justify-content: center;
  }
}
.woocommerce-toolbar-top .woocommerce-ordering {
  margin-left: 20px;
}
.woocommerce-toolbar-top .woocommerce-ordering select {
  background-color: transparent;
  width: auto;
  margin: 0;
  padding: 10px 20px;
  height: 50px;
  border: 0;
  cursor: pointer;
  color: #818181;
  background-position: calc(100% - 0px) 50%;
}
.woocommerce-toolbar-top .woocommerce-ordering select option {
  color: #191b1e;
}

@media (max-width: 767px) {
  .woocommerce-toolbar-top-right {
    justify-content: center;
  }
}

.products .product {
  text-align: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  margin-bottom: 30px;
}
.products .product--img {
  position: relative;
}
.products .product--img img {
  width: 100%;
}
.products .product--img::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.products .product--btn {
  padding: 0 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  margin-top: 0;
  visibility: visible;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.products .product--btn a {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  padding: 15px 21px;
  text-transform: capitalize;
  background-color: var(--webex-primary-color);
  line-height: 1;
  color: #fff;
}
.products .product--btn a:hover {
  color: #fff;
}
.products .product--btn a i {
  color: #fff;
  font-size: 16px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  margin: 0;
  margin-right: 4px;
}
.products .product:hover .product--img::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background-color: rgba(0, 0, 0, 0.4);
}
.products .product:hover .product--btn a {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.1s;
}
.products .product--holder {
  padding: 22px 15px 0px;
}
.products .product--title {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .products .product--title {
    font-size: 18px;
    margin-bottom: 0px;
  }
}
.products .product--title a {
  color: var(--heading-font-color);
  transition: all 300ms 0s;
}
.products .product--title a:hover {
  color: var(--webex-primary-color);
}
.products .product--price {
  font-size: 16px;
  font-weight: 500;
  color: var(--webex-primary-color);
  display: inline-block;
}

.widget-product {
  list-style: none;
}
.widget-product .widget-product__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.widget-product__item:not(:last-child) {
  margin-bottom: 20px;
}
.widget-product__item .thumb {
  width: 92px;
  height: 92px;
  margin-right: 15px;
}
.widget-product__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 20px;
}
.widget-product__item .content {
  width: calc(100% - 107px);
}
.widget-product__item .content h3 {
  font-size: 16px;
  color: #05092b;
  font-weight: 500;
  margin: 0;
  margin-bottom: 5px;
}
.widget-product__item .content h3 a {
  color: inherit;
}
.widget-product__item .content .price {
  font-size: 14px;
}
.widget-product__item .content .rating {
  position: absolute;
  right: 15px;
  bottom: 20px;
}
@media (max-width: 1199px) {
  .widget-product__item .content .rating {
    position: unset;
  }
}
.widget-product__item .content .rating li {
  font-size: 11px;
  color: #fc7632;
}
.widget-product__item .content .rating li:not(:last-child) {
  margin-right: 2px;
}

.shop-sidebar .widget_price_filter .filter-price {
  position: relative;
  font-size: 15px;
  font-size: 1rem;
}

.shop-sidebar .widget_price_filter .filter-price input {
  border: 0;
  padding: 0;
  display: inline-block;
  width: auto;
  position: absolute;
}

.shop-sidebar .widget_price_filter .filter-price input:focus {
  border: 0;
  outline: none;
}

.shop-sidebar .widget_price_filter .filter-price button {
  background-color: transparent;
  color: #05092b;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  border: 0;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
}

.shop-sidebar .widget_price_filter .filter-price #amount {
  color: var(--color-default);
  font-weight: 500;
  height: auto;
  box-shadow: none;
  background: transparent;
  margin: 0;
  padding-left: 3px;
  color: #6e6d79;
}

.shop-sidebar .widget_price_filter #slider-range {
  height: 6px;
  background: #eeeeed;
  border: 0;
  border-radius: 50px;
  margin-bottom: 12px;
}

.shop-sidebar .widget_price_filter .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default {
  width: 5px;
  height: 14px;
  margin: 0;
  border: none;
  background: var(--webex-primary-color);
  border-radius: 0;
  top: -4px;
}

.shop-sidebar .widget_price_filter .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default:focus,
.shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default:focus {
  outline: none;
}

.shop-sidebar .widget_price_filter #slider-range .ui-slider-range {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: var(--webex-primary-color);
}

.product-single-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-right: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .product-single-wrap {
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .product-single-wrap {
    padding-right: 10px;
  }
}

.product_details_img {
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.shop_thumb_tab {
  margin-top: 10px;
}

.shop_thumb_tab ul {
  flex-wrap: wrap;
  margin: -10px;
  margin-top: 0;
}

.shop_thumb_tab ul li {
  margin-bottom: 20px;
}

.shop_thumb_tab ul li .nav-link {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 10px;
}

.shop_thumb_tab ul li:last-child {
  margin-bottom: 0;
}

.shop_thumb_tab ul li button {
  padding: 0;
  border: transparent;
  overflow: hidden;
}

.shop_thumb_tab ul li button {
  max-width: 145px;
  height: auto;
  background: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .shop_thumb_tab ul li button {
    max-width: 130px;
  }
}
@media (max-width: 1199px) {
  .shop_thumb_tab ul li button {
    max-width: 100px;
  }
}

.shop_thumb_tab ul li button.active {
  border-color: var(--webex-primary-color);
}

.product_details_img .pl_thumb img {
  width: 100%;
}

.shop_details .details_content {
  padding-left: 40px;
}

.details_content .title {
  font-size: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.details_content .pl_list {
  margin-top: 25px;
  margin-bottom: 30px;
}

.details_content .price {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 700;
}

.details_content .review_wrap {
  margin-bottom: 22px;
}

.details_content .review_wrap .review li {
  color: #ffab50;
  font-size: 13px;
  margin-right: 6px;
}

.product-details p {
  font-size: 17px;
  color: #4a4c51;
  line-height: 30px;
}

.product-details h2 {
  font-size: 36px;
  margin-bottom: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .product-details h2 {
    font-size: 24px;
  }
}

.shop-single-section {
  font-weight: 500;
}

.shop-single-section .product-details .price {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--heading-font-color);
}
.shop-single-section .product-details .price span {
  color: currentColor;
}

.shop-single-section .product-details .price .old {
  font-size: 18px;
  font-weight: normal;
  color: var(--color-default);
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
}

.product-details .rating i::before {
  font-size: 12px;
  color: #ffab50;
}

.shop-single-section .product-details .color-size span {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: bold;
  color: var(--color-default);
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  display: block;
  margin-bottom: 5px;
}

.shop-single-section .product-details .color-size select {
  min-width: 80px;
  height: 40px;
  border: 1px solid var(--color-border);
  color: #05092b;
  outline: 0;
  padding: 6px 15px;
  background-position: calc(100% - 15px) 17px;
}

.shop-single-section .product-details .color-size > div + div {
  margin-top: 15px;
}

.product-details .product-option .product-row {
  display: flex;
  align-items: center;
}

.product-details .product-option .product-row input {
  margin-bottom: 0;
}

.product-details .product-option .product-row .add-to-cart-btn button {
  margin-left: 20px;
  padding: 17px 30px;
  font-weight: 600;
  height: 50px;
  max-width: 300px;
  width: 100%;
  background: var(--webex-primary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.product-details .product-option .product-row .add-to-cart-btn button i {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  font-size: 13px;
  margin-left: 0;
  margin-right: 10px;
}

.shop-single-section .product-option .product-row > div:first-child {
  width: 150px;
  height: 50px;
}

.shop-single-section .color-size {
  margin-bottom: 30px;
}

.shop-single-section .product-option .bootstrap-touchspin {
  border: 1px solid #e7e9ee;
  background-color: transparent;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.shop-single-section .product-option .bootstrap-touchspin button {
  text-decoration: none;
  height: 50px;
  width: 50px;
  line-height: 50px;
  padding: 0 15px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: #191b1e;
}

.shop-single-section .product-option .bootstrap-touchspin-down {
  left: 0;
  border-right: 1px solid #e7e9ee;
}

.shop-single-section .product-option .bootstrap-touchspin-up {
  right: 0;
  border-left: 1px solid #e7e9ee;
}
.shop-single-section .product-option .bootstrap-touchspin input {
  border: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: #191b1e;
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
}

.shop-single-section .product-details .product-count:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.shop-single-section .thb-product-meta-after .product_meta > span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  display: block;
  margin-bottom: 10px;
}

.shop-single-section .thb-product-meta-after .product_meta > span a {
  font-weight: 400;
  font-size: 15px;
  color: #4a4c51;
}

.shop-single-section .product-details .product-option {
  margin-top: 25px;
}
.shop-single-section .single-product-info {
  margin-top: 20px;
}

.product-share-wrap a {
  margin-left: 15px;
}

.product-share-wrap a:hover {
  color: var(--webex-primary-color);
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tablist {
    margin-bottom: 25px;
  }
}
.shop-single-section .single-product-info h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.7em;
  font-weight: 500;
}

.shop-single-section .single-product-info p {
  margin-bottom: 1.3em;
}

.shop-single-section .single-product-info .tab-pane p:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .nav-tabs {
  border: 0;
  display: inline-block;
  margin-top: 5px;
}

.shop-single-section .single-product-info .nav-tabs {
  margin-top: -10px;
}

.shop-single-section .single-product-info .nav-tabs li {
  float: left;
  margin-right: 30px;
  margin-top: 10px;
}

.shop-single-section .single-product-info .nav-tabs li:last-child {
  margin-right: 0;
}

.shop-single-section .single-product-info .nav-tabs button {
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  display: block;
  border: 1px solid #e0dde5;
  padding: 13px 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop-single-section .single-product-info .nav-tabs button.active {
  color: #fff;
  border-color: var(--webex-primary-color);
  background-color: var(--webex-primary-color);
}

.shop-single-section .single-product-info .nav-tabs button.active::before {
  opacity: 1;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .nav-tabs button {
    font-size: 12px;
    padding: 8px 25px;
  }
}
.shop-single-section .single-product-info .nav-tabs a:hover,
.shop-single-section .single-product-info .nav-tabs .active a {
  background-color: transparent;
  color: #00394f;
}

.shop-single-section .single-product-info .tab-content {
  padding: 35px 0;
  margin-top: -1px;
  text-align: left;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}
.shop-single-section .single-product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-single-section .single-product-info .client-rv:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .client-rv .client-pic {
  width: 60px;
  float: left;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}
.shop-single-section .single-product-info .client-rv .details {
  width: calc(100% - 80px);
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}
@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}
.shop-single-section .single-product-info .client-rv .name-rating-time > div,
.shop-single-section .single-product-info .client-rv .name-rating > div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.9333333333rem;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time > div,
  .shop-single-section .single-product-info .client-rv .name-rating > div {
    font-size: 12px;
    font-size: 0.8rem;
    display: block;
  }
}
.shop-single-section .single-product-info .client-rv .rating .fi:before {
  font-size: 12px;
}

.shop-single-section .single-product-info .client-rv .rating {
  font-size: 12px;
  color: #e0a500;
  padding-left: 12px;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}
.shop-single-section .single-product-info .client-rv .name-rating-time .time {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-top: 3px;
  display: block;
  color: #b3b3b3;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .client-rv .name-rating-time .time {
    float: none;
  }
}
.shop-single-section .single-product-info .client-rv .review-body {
  padding-top: 12px;
}

.shop-single-section .single-product-info .review-form-wrapper {
  margin-top: 50px;
}

@media screen and (min-width: 1200px) {
  .shop-single-section .single-product-info .review-form-wrapper {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .shop-single-section .single-product-info .review-form {
    margin-top: 45px;
  }
}
.shop-single-section .single-product-info .review-form h4 {
  margin-bottom: 1.73em;
  font-weight: 500;
}

.shop-single-section .single-product-info .review-form form input,
.shop-single-section .single-product-info .review-form form textarea {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 15px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .shop-single-section .single-product-info .review-form form input,
  .shop-single-section .single-product-info .review-form form textarea {
    padding: 10px 15px;
  }
}
.shop-single-section .single-product-info .review-form form input:focus,
.shop-single-section .single-product-info .review-form form textarea:focus {
  border: 1px solid var(--webex-primary-color);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shop-single-section .single-product-info .review-form form textarea {
  height: 130px;
}

.shop-single-section .single-product-info .review-form form > div {
  margin-bottom: 27px;
}

.shop-single-section .single-product-info .review-form form > div:last-child {
  margin-bottom: 0;
}

.shop-single-section .single-product-info .review-form form .rating-wrapper > div {
  display: inline-block;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper > div {
    display: block;
    float: none !important;
  }
}
.shop-single-section .single-product-info .review-form form .rating-wrapper > div:last-child {
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating-wrapper > div:last-child {
    margin-top: 20px;
  }
}
.shop-single-section .single-product-info .review-form form .rating a {
  font-size: 14px;
  color: #cccccc;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .shop-single-section .single-product-info .review-form form .rating a {
    font-size: 12px;
  }
}
.shop-single-section .single-product-info .review-form form .rating a:last-child {
  margin: 0;
}

.shop-single-section .single-product-info .review-form form .rating a:hover {
  color: #e0a500;
}

.shop-single-section .single-product-info .review-form .submit button {
  border: 0;
  outline: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.shop-single-section .realted-porduct {
  margin-top: 20px;
}

.shop-single-section .realted-porduct .title {
  font-size: 28px;
  line-height: 0.95em;
  margin: 0 0 0.7em;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.account-form {
  border: 1px solid #e0dde5;
  padding: 30px;
}
@media (max-width: 767px) {
  .account-form {
    padding: 20px 15px;
  }
}
.account-form label {
  color: #05092b;
  margin-bottom: 10px;
}
.account-form .form-check-input {
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  box-shadow: none;
}
.account-form .form-check-input:focus {
  border-color: var(--webex-primary-color);
}
.account-form .form-check-input:checked {
  background-color: var(--webex-primary-color);
  border-color: var(--webex-primary-color);
}
.account-form__inner h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .account-form__inner h3 {
    font-size: 24px;
  }
}
.account-form__btn button {
  padding: 15px 50px;
}
.account-form__chekbox {
  display: flex;
  align-items: center;
}
.account-form .lost-password {
  color: #4a4c51;
  margin-top: 15px;
  display: inline-block;
}
.account-form .lost-password:hover {
  color: #05092b;
}
.account-form__content a {
  color: #05092b;
}
.woocommerce-content-wrap {
  border: 1px solid #e7e9ee;
  padding: 25px;
  padding-top: 0;
}
.woocommerce-content-wrap .pagination_wrap {
  padding-top: 25px;
  margin-bottom: -114px;
}
.woocommerce-content-wrap .post-pagination ul li {
  margin-right: 0;
}
.woocommerce-cart .grop-page-content_warp .woocommerce {
  margin-top: 20px;
  margin-bottom: 41px;
}

.woocommerce-cart .woocommerce table.shop_table th {
  padding: 15px 19px 13px;
  text-transform: uppercase;
  color: #191b1e;
  font-weight: 500;
}

.woocommerce table.shop_table {
  border: 0;
  border-radius: 0;
}

.shop_table tfoot tr th {
  font-weight: normal;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 500;
}

.shop_table {
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left;
}

.shop_table thead tr th:first-child {
  text-align: left;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.shop_table th,
.shop_table td {
  padding: 25px 0;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.shop_table tbody tr td {
  padding-right: 25px;
}

.shop_table th,
.shop_table td {
  padding: 25px 0;
}

.add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f5f5f5;
  border-radius: 0;
  padding: 25px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  list-style: none;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #e6e6e6;
}

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid rgba(22, 29, 57, 0.1);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding-left: 0;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(22, 29, 57, 0.1);
}

.woocommerce-cart .woocommerce table.shop_table td.actions {
  padding-top: 19px;
  padding-bottom: 19px;
  text-align: right;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  font-size: 15px;
  font-size: 1rem;
  padding: 17px 19px 15px;
  color: #191b1e;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name,
.woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name a {
  color: var(--color-default);
}

.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
  float: left;
}

.woocommerce table.cart td.actions .coupon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .woocommerce table.cart td.actions .coupon {
    display: unset;
  }
}

.widget_products .product-list-widget > li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.widget_products .product-list-widget > li:last-child {
  margin-bottom: 0;
}

.widget_products .product-thumb {
  width: 80px;
  margin-right: 15px;
}

.rating_star li {
  font-size: 12px;
  color: #ffab50;
  margin-right: 2px;
}

.widget_products .rating_star {
  margin-bottom: 6px;
}

.widget_products .procuct-title {
  font-size: 16px;
  margin-bottom: 7px;
}

.widget_products .woocommerce-Price-amount.amount {
  font-size: 14px;
}

.widget_products .prodcut-content del {
  font-size: 15px;
  padding-left: 5px;
  color: var(--color-default);
}

.widget_products .prodcut-content ins {
  text-decoration: none;
  color: #05092b;
}

.woocommerce-cart .woocommerce table.shop_table td.actions .coupon label:first-child {
  display: none;
}

.woocommerce-cart .woocommerce table.shop_table td.actions #coupon_code {
  height: 52px;
  padding-left: 18px;
  width: 227px;
  box-shadow: none;
  border: 1px solid rgba(22, 29, 57, 0.1);
  color: #05092b;
  margin: 0;
  margin-right: 20px;
  padding: 10px 20px;
}

.woocommerce-cart .woocommerce table.shop_table td.actions input:focus {
  border-color: var(--webex-primary-color) !important;
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*="Subtotal"],
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*="Subtotal"],
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*="Subtotal"] {
  color: #05092b;
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*="Subtotal"]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*="Subtotal"]::-webkit-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*="Subtotal"]::-webkit-input-placeholder {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*="Subtotal"]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*="Subtotal"]::-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*="Subtotal"]::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*="Subtotal"]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*="Subtotal"]:-ms-input-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*="Subtotal"]:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td[data-title*="Subtotal"]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td[data-title*="Subtotal"]:-moz-placeholder,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td[data-title*="Subtotal"]:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  color: var(--color-default);
}

.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal th,
.woocommerce-cart .woocommerce table.shop_table tr.cart-subtotal td,
.woocommerce-cart .woocommerce table.shop_table tr.shipping th,
.woocommerce-cart .woocommerce table.shop_table tr.shipping td,
.woocommerce-cart .woocommerce table.shop_table tr.order-total th,
.woocommerce-cart .woocommerce table.shop_table tr.order-total td {
  padding: 16px 15px 14px;
}

.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button {
  color: #05092b;
  margin-top: 6px;
  display: block;
  margin-bottom: 12px;
}

.woocommerce-cart .shipping-calculator-form .form-row {
  margin: 0 0 13px;
}

.woocommerce-cart .shipping-calculator-form button.button {
  background-color: #000 !important;
  color: #ffffff !important;
  height: 45px;
  line-height: 45px;
  padding: 1px 27px 0;
  margin-top: 4px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 70px;
  object-fit: cover;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td a.remove {
  width: 18px;
  height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 17px;
  color: #fff;
  border-radius: 50%;
  background: #dbdbdb;
}

.woocommerce-cart .woocommerce table.shop_table .cart_single td a.remove:hover {
  background-color: #000;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit[disabled]:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button[disabled]:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button[disabled]:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button[disabled]:disabled {
  padding-top: 0;
  padding-bottom: 0;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  margin-top: 50px;
}

.woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2 {
  font-size: 24px;
  font-size: 1.6rem;
  margin: 0 0 1.3em;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  border: 1px solid rgba(22, 29, 57, 0.1);
  color: var(--color-default);
  font-size: 14px;
  height: 50px;
  width: 100%;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
  text-align: right;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  margin-bottom: 0;
  margin-top: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  padding: 5px 50px;
  height: 62px;
  font-size: 18px;
}

.woocommerce-cart .input-text.qty.text {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.woocommerce-cart input::-webkit-outer-spin-button,
.woocommerce-cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 600px) {
  .woocommerce-cart thead {
    display: none;
  }

  .woocommerce-cart table,
  .woocommerce-cart th,
  .woocommerce-cart td,
  .woocommerce-cart tr,
  .woocommerce-cart tbody {
    width: 100%;
    display: block;
    border: 0;
    text-align: center;
  }

  .woocommerce table.shop_table {
    border: 1px solid rgba(22, 29, 57, 0.1);
  }

  .quantity {
    margin: 0 auto;
  }

  .woocommerce table.shop_table td {
    border: 0;
  }

  .woocommerce-cart tbody > tr {
    position: relative;
  }

  .woocommerce-cart tbody > tr + tr {
    border-top: 1px solid rgba(22, 29, 57, 0.1);
  }

  .woocommerce-cart tbody > tr {
    padding: 30px 20px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td {
    padding: 8px 10px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-remove {
    border-right: 0;
    width: auto;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-remove {
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions {
    text-align: center;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions input,
  .woocommerce-cart .woocommerce table.shop_table td.actions button {
    display: block;
    float: none;
  }

  .woocommerce-cart .coupon {
    float: none !important;
  }

  .woocommerce-cart .woocommerce table.shop_table td.actions input,
  .woocommerce-cart .woocommerce table.shop_table td.actions button {
    display: inline-block;
    float: none;
    margin-top: 10px;
  }

  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td.product-name a,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td,
  .woocommerce-cart .woocommerce table.shop_table .cart_single td a {
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .cart-section .container {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .cart-section .wc-proceed-to-checkout {
    text-align: center;
  }
}
.cart-section .btn {
  padding: 7px 4px 7px 6px;
  font-size: 8px;
  font-weight: normal;
  position: relative;
}

.cart-section .btn:hover {
  background-color: #000 !important;
}

.cart-section .bootstrap-touchspin {
  border: 1px solid rgba(22, 29, 57, 0.1);
  width: 100px;
}

.cart-section .bootstrap-touchspin button {
  text-decoration: none;
  border: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
}

.cart-section .bootstrap-touchspin input {
  border: 0;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
  background: transparent;
}

.cart-section .bootstrap-touchspin-up {
  right: 10px;
}

.cart-section .bootstrap-touchspin-up:hover {
  background: transparent !important;
}

.cart-section .bootstrap-touchspin-down {
  left: 10px;
}

.cart-section .bootstrap-touchspin-down:hover {
  background: transparent !important;
}

/* Firefox */
.woocommerce-cart input[type="number"] {
  -moz-appearance: textfield;
}

.woocommerce strong {
  font-weight: 500;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
}

.checkout-section .checkout.woocommerce-checkout {
  overflow: hidden;
  clear: both;
}

@media screen and (min-width: 992px) {
  .checkout-section .checkout.woocommerce-checkout .col2-set {
    width: 70%;
    float: left;
    padding-right: 85px;
  }

  .checkout-section .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 30%;
    float: right;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    width: 50%;
    float: left;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-first,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-first {
    padding-right: 15px;
  }

  .checkout-section .checkout.woocommerce-checkout .form-row label,
  .woocommerce .form-row label {
    color: #191b1e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .checkout-section .checkout.woocommerce-checkout form .form-row.form-row-last,
  .checkout-section .checkout.woocommerce-checkout .form-row.form-row-last {
    padding-left: 15px;
  }
}
.checkout-section .checkout.woocommerce-checkout .form-row label.checkbox,
.checkout-section .checkout.woocommerce-checkout .woocommerce-shipping-fields label.checkbox {
  display: inline-block;
}

.checkout-section .checkout.woocommerce-checkout .form-row textarea {
  height: 180px;
}

.woocommerce-cart .actions .xb-btn {
  border: 0;
  height: 52px;
  padding: 10px 50px;
}

.woocommerce table.shop_table {
  border: 1px solid #e7e9ee;
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid #e7e9ee;
}

/*** woocommerce ***/
.woocommerce-Button,
.woocommerce-button {
  background: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  font-weight: 500;
  padding: 12px 30px;
  color: #fff;
  margin-top: 20px;
  color: white;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 0;
}

.woocommerce-Button:hover,
.woocommerce-button:hover {
  background: #000;
}

.woocommerce-info:before {
  display: none;
}

.woocommerce-privacy-policy-text a {
  font-weight: 500;
  color: #e0a500;
  text-decoration: underline;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.lost_password a {
  color: #191b1e;
}

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover,
.lost_password a:hover {
  text-decoration: underline;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: #2029bd0f;
  width: auto;
  padding: 15px 15px 15px 35px;
  margin: 0 0 2em;
  position: relative;
  color: #191b1e;
  list-style: none;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    padding: 15px;
  }
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 34px 35px 33px;
  border: 1px solid #eee;
  margin: 19px 0;
  text-align: left;
  border-radius: 0;
}

.woocommerce .login p {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    padding: 34px 20px 33px;
  }
}
.woocommerce form .form-row .required {
  color: red;
  font-weight: 600;
  border: 0;
}

.woocommerce form.login > p:not(.form-row) {
  margin-bottom: 2em;
}

#customer_login form.login > p:not(.form-row) {
  margin-top: 2em;
  margin-bottom: 0;
}

.woocommerce form.login input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff;
  font-size: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.woocommerce .checkout_coupon input[type="submit"] {
  padding: 18px 30px;
  border: 0;
  margin-top: 10px;
}

.woocommerce form.login input[type="submit"]:hover,
.woocommerce form.login input[type="submit"]:focus,
.woocommerce form.login input[type="submit"]:active,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:active,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active {
  color: var(--tg-common-white);
  background-position: 100% 100%;
  background-image: linear-gradient(to right, var(--webex-primary-color), var(--tg-gradient-2), var(--tg-gradient-2), var(--webex-primary-color));
}

.woocommerce form .form-row label.inline {
  display: inline;
  padding-left: 15px;
}

abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

@media (max-width: 767px) {
  .woocommerce form .form-row label.inline {
    padding-left: 5px;
  }
}
.checkout-section input[type="text"],
.checkout-section input[type="password"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section select,
.checkout-section textarea {
  height: 55px;
  box-shadow: none;
  padding: 10px 20px;
  border: 2px solid transparent;
}
.checkout-section input[type="text"]:focus,
.checkout-section input[type="password"]:focus,
.checkout-section input[type="email"]:focus,
.checkout-section input[type="tel"]:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
  border-color: var(--webex-primary-color);
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  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: #e6e6e6;
  color: var(--color-default);
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 0.5em;
  padding: 0;
  position: relative;
  box-shadow: none;
}

#add_payment_method #payment .payment_method_paypal img,
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}

#add_payment_method #payment .payment_method_paypal .about_paypal,
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: 0.83em;
  color: var(--color-default);
  margin-left: 10px;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 5px 0 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid var(--color-border);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

.woocommerce-billing-fields p {
  margin-bottom: 15px;
}
/*========*/
.woocommerce div.product {
  margin-bottom: 30px;
}
.woocommerce div.product p.price {
  display: flex !important;
}
.woocommerce div.product span.price {
  display: inline-flex !important;
}
.tp-product-details-wrapper .price {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--webex-primary-color);
}
.tp-product-details-wrapper .price del {
  opacity: 1;
  margin-right: 5px;
  color: #777b83;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.woocommerce .all-products .modal-body div.price {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--webex-primary-color);
}
.woocommerce div.product p.price,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce div.product span.price {
  font-size: 20px;
  font-weight: 500;
  color: var(--webex-primary-color);
  display: block;
}
.woocommerce .all-products .modal-body div.price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: 1;
  margin-right: 5px;
  color: #777b83;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,
.woocommerce .added_to_cart {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0 25px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  border-radius: 5px;
  color: var(--tg-common-white);
  background-size: 300% 100%;
  background-position: 0% 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-image: linear-gradient(to right, var(--webex-primary-color), var(--tg-gradient-2), var(--tg-gradient-2), var(--webex-primary-color));
  letter-spacing: 0;
  text-transform: capitalize;
}
.woocommerce .added_to_cart {
  margin-top: 10px;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}
.woocommerce-toolbar-top {
  margin-top: 0;
}
.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0;
}
.woocommerce .products ul li,
.woocommerce ul.products li {
  line-height: normal;
}

.shop-sidebar .widget {
  padding: 0;
  border: 0;
  box-shadow: none;
}
.woocommerce-product-search input {
  height: 60px;
  background-color: rgba(44, 26, 78, 0.05);
  padding: 20px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.woocommerce-product-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 83px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--webex-primary-color);
  background-image: linear-gradient(to right, var(--webex-primary-color), var(--tg-gradient-2), var(--tg-gradient-2), var(--webex-primary-color));
  background-size: 300% 100%;
  background-position: 0% 100%;
}
form.woocommerce-product-search {
  position: relative;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  border-radius: 0;
  background-color: var(--webex-primary-color);
  background-image: linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -moz-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -ms-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -o-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -webkit-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 6px;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  opacity: 1;
  padding: 0px 19px;
  font-size: 14px;
  color: #fff;
  margin-top: -9px;
  height: 30px;
  line-height: 11px;
}
.price_label {
  font-size: 16px;
  line-height: normal;
  margin-top: 8px;
  float: right;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  z-index: 98;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100px;
}

.woocommerce div.product div.images .flex-control-thumbs li:not(:last-child) {
  margin-right: 20px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  margin-top: 15px;
}
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  width: 100%;
}
.woocommerce .woocommerce-product-rating .star-rating {
  color: #ffab50;
  width: 95px;
  height: 20px;
  margin: 5px 0;
}
.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  font-size: 16px;
}
.windowy_product_modal form.cart .button,
.woocommerce div.product form.cart .button {
  opacity: 1;
  transform: translate(0);
  padding: 18px 30px;
  font-weight: 600;
  height: 58px;
  min-width: 200px;
  background: var(--webex-primary-color);
  border-radius: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.windowy_product_modal form.cart .button:hover,
.woocommerce div.product form.cart .button:hover {
  background: var(--webex-primary-color2);
}
.windowy_product_modal form.cart .button:focus,
.woocommerce div.product form.cart .button:focus {
  color: #fff;
}
.windowy_product_modal form.cart div.quantity,
.shop-single-section div.product form.cart div.quantity {
  margin-right: 20px;
  width: 150px;
  display: flex;
  align-items: center;
  float: left;
}
@media (max-width: 768px) {
  .windowy_product_modal form.cart div.quantity,
  .shop-single-section div.product form.cart div.quantity {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .woocommerce div.product form.cart .button {
    width: auto;
  }
}
a.woocommerce-review-link {
  color: #6e6d79;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 20px;
}
a.woocommerce-review-link {
  color: #6e6d79;
}
.product-details-col .price span {
  font-size: 20px;
  margin: 0.4em 0 0.7em;
  font-weight: 500;
  color: #777b83;
}
.woocommerce-message {
  border-top-color: currentColor;
}

/* Woocommerce Tab */
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  display: block;
  border: 1px solid #e0dde5;
  padding: 9px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: relative;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  box-shadow: none;
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
  text-shadow: inherit;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0;
  margin: 0;
  margin-right: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 30px;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel h1,
.woocommerce div.product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h4,
.woocommerce div.product .woocommerce-tabs .panel h5,
.woocommerce div.product .woocommerce-tabs .panel h6 {
  margin-bottom: 20px;
}
/* related */
section.related.products h2 {
  font-size: 28px;
  line-height: 0.95em;
  margin: 0 0 0.7em;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

section.related.products {
  margin-top: 30px;
}
.woocommerce-Reviews input#submit {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* cart */
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 60px;
}
#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
  min-width: 60px;
}
.woocommerce table.shop_table td a {
  color: #000;
}
td.product-quantity button {
  text-decoration: none;
  border: 0;
  height: 48px;
  line-height: 50px;
  padding: 0 15px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  color: var(--color-default);
}

td.product-quantity input {
  width: 34% !important;
  flex: inherit !important;
}
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  width: 56%;
}
.cart_totals h2 {
  margin-bottom: 15px;
  font-weight: 600;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px 12px;
  color: #000;
}
.select2-container--default .select2-selection--single {
  width: 100%;
  height: 60px;
  border-radius: 0;
  padding: 20px;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 20px;
  color: #05092b;
  font-weight: 400;
  background-color: #f4f3f6;
  line-height: 1;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #131212 transparent transparent transparent;
  border-width: 10px 10px 0 10px;
  margin-left: -19px;
  margin-top: 12px;
}
.woocommerce-billing-fields h3 {
  margin-bottom: 50px;
}
#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li:hover:before {
  width: 100%;
}
.woocommerce-MyAccount-navigation ul li a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  color: var(--color-fourty);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.woocommerce-MyAccount-navigation ul li:hover a {
  color: #ffffff;
}
.woocommerce-account .woocommerce-MyAccount-content {
  font-size: 16px;
}

/*************My Account Page**********************/
.woocommerce-MyAccount-navigation ul {
  position: relative;
  padding: 0px;
  margin: 0px;
}
.woocommerce-MyAccount-navigation ul li {
  position: relative;
  display: block;
  padding: 13px 10px 12px 25px;
  border: 1px solid var(--webex-primary-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.woocommerce-MyAccount-navigation ul li:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 5px;
  height: 100%;
  background: var(--webex-primary-color);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  transform: translate(0);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  float: left;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  margin-right: 30px;
  margin-top: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #121416;
  display: block;
  border: 1px solid #f2f2f2;
  padding: 10px 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border: 0;
  display: inline-block;
  margin-top: -10px;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  box-shadow: none;
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  box-shadow: none;
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
  text-shadow: inherit;
  background-color: var(--webex-primary-color);
  border-color: var(--webex-primary-color);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-bottom: 15px;
  display: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after {
  top: 1px;
}
.woocommerce .shop-sidebar .widget-title {
  font-size: 22px;
  margin-top: 0;
}
/* Remove increment and decrement arrow icons from quantity input */
.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type="number"] {
  -moz-appearance: textfield;
}

/* Optionally, hide the up/down arrow icons in Firefox */
.quantity input[type="number"] {
  -moz-appearance: textfield;
}

@media (min-width: 992px) {
  .related .products .col-lg-4 {
    width: 25%;
  }
}
@media (max-width: 992px) {
  .related .products .col-lg-4 {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .related .products .col-lg-4 {
    width: 100%;
  }
}
.woocommerce .wc-block-components-notice-banner.is-info {
  background-color: #fff;
  border-color: #2029bd;
}
.woocommerce .wc-block-components-notice-banner.is-info > svg {
  background-color: #2029bd;
}
.woocommerce #reviews #comment {
  height: 120px;
}
.woocommerce p.stars a,
.woocommerce .star-rating {
  color: #ffab50;
  width: 6rem;
}
.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 60px;
  background: transparent;
  border: 0;
}
.woocommerce div.product .product_title {
  font-size: 36px;
  margin-bottom: 15px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 80px;
}
.woocommerce #reviews #comments h2 {
  font-size: 30px;
  margin-bottom: 18px;
}
.woocommerce .comment-form input[type="text"],
.woocommerce .comment-form input[type="email"],
.woocommerce .comment-form textarea {
  background: #eee;
}
.woocommerce #review_form_wrapper {
  margin: 0 0 2em;
  padding: 0;
  padding: 50px;
  background: #f3f4f5;
}
.woocommerce .comment-reply-title {
  font-size: 25px;
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}
.woocommerce .commentform label {
  margin-bottom: 5px;
}
.woocommerce p.woocommerce-noreviews {
  margin-bottom: 10px;
}
.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward {
  transform: translate(0);
}
.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward:hover,
.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward:active,
.woocommerce .wc-block-components-notice-banner > .wc-block-components-notice-banner__content .wc-forward:focus {
  background: none;
}
.woocommerce .wc-block-components-notice-banner.is-success {
  background-color: #2029bd0f;
  border-color: var(--webex-primary-color);
}
.woocommerce .wc-block-components-notice-banner.is-success > svg {
  background-color: var(--webex-primary-color);
}

.woocommerce-cart-form .quantity input {
  width: 50px !important;
  height: 50px;
  padding: 0;
  background: none;
  border-left: 1px solid #e7e9ee;
  border-right: 1px solid #e7e9ee;
}
.woocommerce-cart-form .bootstrap-touchspin .input-group-btn {
  border: 1px solid #e7e9ee;
}
.woocommerce-cart-form .quantity .qty {
  background: none;
  border-top: 1px solid #e7e9ee;
  border-bottom: 1px solid #e7e9ee;
}
.woocommerce-cart-form .cart .button,
.woocommerce-cart-form .cart input.button {
  float: none;
  transform: translate(0);
  color: #fff !important;
}

.woocommerce-billing-fields input[type="text"],
.woocommerce-billing-fields input[type="email"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-billing-fields input[type="number"],
.woocommerce-billing-fields textarea,
.woocommerce-additional-fields textarea {
  height: 60px;
  padding: 15px;
  border: 2px solid transparent;
}
.woocommerce-additional-fields textarea {
  min-height: 180px;
}
.woocommerce-billing-fields input[type="text"]:focus,
.woocommerce-billing-fields input[type="email"]:focus,
.woocommerce-billing-fields input[type="tel"]:focus,
.woocommerce-billing-fields input[type="number"]:focus,
.woocommerce-billing-fields textarea:focus,
.woocommerce-additional-fields textarea:focus,
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--webex-primary-color);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 50px;
}
.select2-container--open .select2-dropdown--below {
  margin-top: -32px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 6px 6px 0 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 6px 6px 6px;
}
.select2-container--default .select2-selection--single {
  margin-bottom: 0;
}
.select2-container--default .select2-selection--single {
  background-color: #f3f4f5;
}
.select2-container--default .select2-selection--single {
  padding: 15px;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: var(--webex-primary-color);
  padding: 0px 38px;
  height: 55px;
}
.woocommerce form .form-row input.input-text {
  height: 60px;
  border: 2px solid transparent;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49.5%;
}
.woocommerce .checkout_coupon button {
  transform: translateY(0px);
  height: 58px;
}
.woocommerce-page .woocommerce-message .button {
  opacity: 1;
  transform: translate(0);
  padding: 18px 30px;
  font-weight: 600;
  height: 58px;
  min-width: 200px;
  background: var(--webex-primary-color);
  color: var(--text-webex-primary-color);
  border-radius: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-message .button:focus {
  background: var(--webex-primary-color3);
  color: var(--text-webex-primary-color3);
}
.woocommerce-message {
  padding-left: 50px;
  border-top-color: #8fae1b;
  line-height: 48px;
}
.woocommerce-notices-wrapper .woocommerce-error {
  padding-left: 50px;
  line-height: 48px;
}
.woocommerce-notices-wrapper .woocommerce-message {
  padding-left: 50px;
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  top: 15px;
}
.woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: #8fae1b;
}
.woocommerce .woocommerce-info {
  border-top-color: var(--webex-primary-color);
}
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #eeeeed;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 6px;
}
.price_slider_wrapper .price_label {
  float: left;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  float: right;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  margin-top: 2px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: #f3f4f5;
}
.wc-block-components-button {
  border-radius: 10px;
  background: var(--webex-primary-color);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 30px;
  border: none !important;
  transition: all 0.4s ease !important;
  box-shadow: none !important;
}
.wc-block-components-button:hover,
.wc-block-components-button:focus,
.wc-block-components-button:active {
  color: #fff;
  background: var(--webex-secondary-color2);
}
td.wc-block-cart-item__product .wc-block-cart-item__wrap a.wc-block-components-product-name,
.woocommerce-cart-form td.product-name {
  font-family: var(--heading-font) !important;
  color: var(--heading-font-color) !important;
  font-weight: bold !important;
  font-size: 16px;
  font-style: normal;
}
table.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block tr th {
  font-family: var(--heading-font) !important;
  color: var(--heading-font-color) !important;
  font-weight: bold !important;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize !important;
}
.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-cart .single-content .entry-content .woocommerce {
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 40px 0px rgba(200, 200, 200, 0.3);
  padding: 30px;
}

.woocommerce .woocommerce-cart-form .quantity,
.woocommerce .cart .quantity {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 11px 0 0;
}
.woocommerce .woocommerce-cart-form .quantity .qty,
.woocommerce .cart .quantity .qty {
  width: 100%;
  border-radius: 100px;
  height: calc(1.8rem + 30px);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  border: 1px solid #e7e9ee;
}
.woocommerce .woocommerce-cart-form .quantity .qty:active,
.woocommerce .woocommerce-cart-form .quantity .qty:focus,
.woocommerce .cart .quantity .qty:active,
.woocommerce .cart .quantity .qty:focus {
  box-shadow: none;
}
.woocommerce .woocommerce-cart-form .quantity .minus,
.woocommerce .woocommerce-cart-form .quantity .plus,
.woocommerce .cart .quantity .minus,
.woocommerce .cart .quantity .plus {
  width: 35px;
  height: 35px;
  font-size: 10px;
  line-height: 0;
  position: absolute;
  right: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: var(--webex-primary-color);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.woocommerce .woocommerce-cart-form .quantity .minus:hover,
.woocommerce .woocommerce-cart-form .quantity .plus:hover,
.woocommerce .cart .quantity .minus:hover,
.woocommerce .cart .quantity .plus:hover {
  background-color: var(--webex-primary-color2);
  color: #fff;
  border-color: var(--webex-primary-color2);
}
.woocommerce .woocommerce-cart-form .quantity .minus,
.woocommerce .cart .quantity .minus {
  left: 10px;
  right: auto;
}
.woocommerce div.product form.cart .quantity {
  float: left;
  margin-right: 20px;
}
@media (max-width: 575.98px) {
  .woocommerce div.product form.cart .quantity {
    margin-bottom: 20px;
  }
}
.woocommerce-MyAccount-content .u-columns > div {
  display: block;
  width: 100%;
}
.woocommerce-account .addresses .title .edit {
  float: left;
}
.woocommerce .woocommerce-ordering .nice-select {
  width: 240px;
}

.product--btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.product--img {
  position: relative;
  overflow: hidden;
}

.product--img:hover .product--btn {
  opacity: 1;
}

.product--btn a,
.product--btn button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--webex-primary-color2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: none;
}

.product--btn a:hover,
.product--btn button:hover {
  background: var(--webex-primary-color2);
}
.product--btn i {
  font-size: 16px;
}

section.related.products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button__label,
section.related.products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button__label,
section.related.products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button-label,
section.related.products .product .yith-wcwl-add-to-wishlist-button span,
.all-products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button-label,
.all-products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button_label,
.all-products .product .yith-wcwl-add-to-wishlist-button .yith-wcwl-add-to-wishlist-button_label,
.all-products .product .yith-wcwl-add-to-wishlist-button span {
  display: none !important;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button,
.all-products .product .yith-wcwl-add-to-wishlist-button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--webex-primary-color);
  transition: 0.3s;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button:hover,
.all-products .product .yith-wcwl-add-to-wishlist-button:hover {
  background: var(--webex-primary-color2);
}
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  float: unset;
  width: 100%;
}
.woocommerce .shop-single-section div.product div.summary {
  margin-bottom: 25px;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor,
.all-products .product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
  display: flex;
  align-items: center;
  margin-inline: 0;
  justify-content: center;
  gap: 10px;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button svg,
.all-products .product .yith-wcwl-add-to-wishlist-button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

section.related.products .product .yith-wcwl-add-to-wishlist-button svg,
.all-products .product .yith-wcwl-add-to-wishlist-button svg {
  display: none !important;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button::before,
.all-products .product .yith-wcwl-add-to-wishlist-button::before {
  content: "\e04a";
  font-family: "webexbaseicon";
  font-size: 16px;
  color: #fff;
}
section.related.products .product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added::before,
.all-products .product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added::before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}
.product--btn .yith-add-to-wishlist-button-block {
  margin: 0;
}

.product-action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--webex-primary-color);
  color: #fff;
  transition: 0.3s;
}
.product-action-btn:hover {
  background: #f43f5e;
}
.product-modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa; /* background like demo */
  border-radius: 8px;
  overflow: hidden;
  height: 600px; /* fixed modal height */
}

.tp-product-details-nav-main-thumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.tp-product-details-nav-main-thumb img {
  width: auto;
  height: 600px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.tp-product-details-nav-main-thumb img:hover {
  transform: scale(1.02);
}

.product-modal-gallery img.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.product-modal-gallery img.thumb-img:hover {
  transform: scale(1.05);
  border-color: #000;
}

.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  margin-right: 10px;
  padding: 5px 8px;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 14px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: #6c2bd9;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.qty-btn:hover {
  background: #8b5cf6;
}
.modal-header button {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
  opacity: 1;
}
@media (max-width: 425px) {
  .modal-header button {
    right: 15px;
    top: 15px;
  }
}
.added_to_cart.wc-forward {
  font-size: 0 !important;
  line-height: 0;
}

.added_to_cart.wc-forward::before {
  content: "\f113";
  font-family: "webexbaseicon";
  font-size: 16px;
  line-height: 1;
}
.products .product--btn a.added_to_cart {
  margin: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

/* ========== YITH Wishlist – Aidzone-style minimal table ========== */
.wishlist_table th.product-quantity,
.wishlist_table td.product-quantity {
  display: none !important;
}

.wishlist_table td.product-name .button,
.wishlist_table td.product-name .quick-view,
.wishlist_table td.product-name .tg-quick-view,
.wishlist_table td.product-name .webex-quick-view {
  display: none !important;
}

/* Share-on block hide */
.wishlist .wishlist-page-wrapper .yith-wcwl-share,
.wishlist .wishlist-page-wrapper .share-on,
.wishlist .wishlist-page-wrapper .yith-wcwl-after-wishlist-share {
  display: none !important;
}

/* Add to cart button → icon-only circle look */
.wishlist_table td.product-add-to-cart a.add_to_cart,
.wishlist_table td.product-add-to-cart .add_to_cart_button,
.wishlist_table td.product-add-to-cart .button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-indent: -9999px;
  overflow: hidden;
}

.wishlist_table td.product-add-to-cart .add_to_cart_button::before,
.wishlist_table td.product-add-to-cart a.add_to_cart::before,
.wishlist_table td.product-add-to-cart .button::before {
  content: "\e8eb";
  font-family: "webexbaseicon";
  font-weight: normal;
  text-indent: 0;
  position: absolute;
  font-size: 16px;
  color: var(--heading-font-color);
}

.wishlist_table td.product-name .yith-wcqv-button {
  display: none !important;
}
.wishlist_table td.product-add-to-cart .quantity-wrapper {
  display: none !important;
}
.wishlist_table td.product-thumbnail img {
  max-width: 70px;
  height: auto;
}

.wishlist_table td,
.wishlist_table th {
  vertical-align: middle;
  padding-top: 18px;
  padding-bottom: 18px;
}
.woocommerce .page-wishlist table.shop_table th,
.woocommerce .page-wishlist table.shop_table td {
  border: 1px solid #a1a09f !important;
}
.woocommerce table.wishlist_table td {
  border-right: transparent;
  border-bottom: transparent;
  border-left-color: #eee !important;
  border-top-color: #eee !important;
}
.woocommerce table.wishlist_table td.product-price .amount {
  color: var(--webex-primary-color);
  font-weight: 600;
}
.woocommerce table.wishlist_table td.product-price del .amount {
  color: #777b83;
}
/* WooCommerce Empty Cart Styling */
.woocommerce-empty-cart-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 20px;
  background-color: #fff;
}

.woocommerce-empty-cart {
  background: #f7f7f7;
  border-top: 3px solid #b7e400; /* accent color */
  padding: 50px 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
  font-size: 40px;
  color: #b7e400;
}

.woocommerce-info {
  font-size: 18px;
  color: #444;
  font-weight: 500;
  margin-bottom: 40px;
}

.return-to-shop-btn {
  background-color: #b7e400;
  color: #000;
  padding: 12px 40px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  display: inline-block;
}

.return-to-shop-btn:hover {
  background-color: #000;
  color: #fff;
}
.wc-block-grid__product .wc-block-grid__product-title {
  font-size: 20px;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.wc-block-grid__product .wc-block-grid__product-title:hover {
  color: var(--webex-primary-color);
}
.wc-block-grid__product > p {
  display: none;
}
.wc-block-grid__product .price {
  font-size: 16px;
  font-weight: 500;
  color: var(--webex-primary-color);
  display: inline-block;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  background: var(--webex-primary-color);
  color: #fff;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover {
  background: var(--webex-primary-color2);
}
.wc-block-grid__product-add-to-cart.wp-block-button {
  margin-bottom: 0;
}
.wc-block-grid__product .price del {
  color: #777b83;
  font-size: 15px;
  margin-right: 5px;
  font-weight: 400;
}
.in-stock-text {
  background-color: rgba(14, 191, 82, 0.15);
  color: #000000;
  display: inline-block;
  line-height: 1;
  padding: 6px 15px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
}
.out-stock-text {
  color: #d60623;
  background-color: rgba(214, 6, 35, 0.15);
  display: inline-block;
  line-height: 1;
  padding: 6px 15px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
}
.in-backorder-text {
  color: #000;
  background-color: rgba(234, 166, 0, 0.15);
  display: inline-block;
  line-height: 1;
  padding: 6px 15px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
}
.woocommerce-product-rating {
  line-height: 1;
  font-size: 14px;
}
.woocommerce-review-link {
  color: #6c757d;
  font-weight: 500;
  text-decoration: none;
}
.woocommerce-review-link:hover {
  color: #d63384;
}
.woocommerce nav.woocommerce-pagination ul li i {
  font-weight: 500;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  line-height: 1;
  font-size: 1em;
  font-weight: 500;
  padding: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: var(--bg-silver);
  border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--webex-primary-color);
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul {
  border: transparent;
}
.woocommerce nav.woocommerce-pagination ul li {
  border-right: transparent;
}
.woocommerce nav.woocommerce-pagination ul li span {
  transition: all 300ms 0s;
}
.woocommerce nav.woocommerce-pagination ul li:last-child span {
  margin-right: 0;
}
.woocommerce nav.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.woocommerce .nice-select.open .list {
  width: auto;
}

/* ---- Review Section ---- */
.review-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px !important;
}

/* ===== Star Rating: Outline Default, Fill on Hover ===== */
.custom-star-rating {
  display: inline-flex;
  flex-direction: row-reverse; /* important: fix fill direction */
  gap: 4px;
  margin-top: 5px;
  font-size: 26px;
  position: relative;
}

.custom-star-rating input {
  display: none;
}

.custom-star-rating label {
  color: transparent;
  -webkit-text-stroke: 1px #ffa534; /* orange outline */
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover fill (left to right now) */
.custom-star-rating label:hover,
.custom-star-rating label:hover ~ label {
  color: #ffa534;
  -webkit-text-stroke: 1px #ffa534;
}

/* Checked state (selected fill) */
.custom-star-rating input:checked ~ label {
  color: #ffa534;
  -webkit-text-stroke: 1px #ffa534;
}

/* Scale effect */
.custom-star-rating label {
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

.custom-star-rating label:hover {
  transform: scale(1.1);
}

.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  padding: 14px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.comment-form-comment label {
  margin-bottom: 15px;
}
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-comment textarea:focus {
  border-color: var(--webex-primary-color);
  background: #fff;
}

.form-submit input {
  background: var(--webex-primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 35px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.form-submit input:hover {
  background: var(--webex-primary-color);
}

.comment-form-rating {
  margin-bottom: 20px;
}
.comment-form-rating label {
  display: block;
}
.modal-wishlist .yith-add-to-wishlist-button-block {
  margin: 20px 0;
}
.stock.in-stock,
.stock.out-of-stock,
.stock.available-on-backorder {
  display: none !important;
}
.woocommerce #respond input#submit {
  background: var(--webex-primary-color);
  color: #fff;
  border: 0;
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 68px !important;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: 25px;
  border-radius: 80px !important;
  height: auto;
}
.woocommerce #respond input#submit:hover {
  background: var(--webex-primary-color2) !important;
  color: #fff !important;
}
.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 10px 20px;
}
.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
}
.woocommerce div.product form.cart .reset_variations {
  margin-left: 10px;
}
/*
Toggle Cart Widget
*/
.windowy-cart-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* or center/left depending on alignment setting */
}
.windowy-cart-icon {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}
.windowy-cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #2f7a39;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-radius: 50%;
  min-width: 18px;
  min-height: 18px;
  text-align: center;
  font-weight: 600;
}

.header-cart-icon {
  position: relative;
  line-height: 0;
  margin-right: 10px;
}
.header-cart-icon .windowy-cart-icon {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--webex-primary-color);
}
.header-cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--webex-primary-color);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  border-radius: 50%;
  min-width: 16px;
  min-height: 16px;
  text-align: center;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  appearance: textfield;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: currentColor;
  flex: 1 1 auto;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  min-width: 40px;
  order: 2;
  padding: 0.4em 0;
  text-align: center;
  vertical-align: middle;
  height: auto;
}
body.woocommerce-page {
  color: #111;
}
body.woocommerce-page p {
  color: #86898c;
}
.wc-block-components-product-price del {
  color: #777b83;
}
