@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  /*   font-family: "Cal Sans", sans-serif;*/
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}
ul,
li {
  list-style-type: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}



.hex-account-container {
  max-width: 1440px;
  margin: 0 auto;
}

.hex-Funded-topContent {
  text-align: center;
}

.hex-Funded-topContent h2 {
 font-family: var(--e-global-typography-cce95c7-font-family), Sans-serif;
    font-size: var(--e-global-typography-cce95c7-font-size);
    font-weight: var(--e-global-typography-cce95c7-font-weight);
    line-height: var(--e-global-typography-cce95c7-line-height);
	text-transform: capitalize;
    color: #FFFFFF;
  margin: 0 0 20px;
}
.hex-Funded-topContent p {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height); 
	color: #fff;
  margin: 11px auto 0;
}

.hex-Funded-btnArea {
  padding: 11px 0 0;
}
.hex-Funded-btnArea .button-group {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 19px;
  margin: 0 0 25px;
  /*    justify-content:flex-start;*/
}
.hex-Funded-btnArea .button-group .button-item:hover,
.hex-Funded-btnArea .button-group .button-item.active {
  background: #231f20;
  color: #fff;
}
.hex-Funded-btnArea .button-group .button-item {
  min-width: 144px;
  max-width: 144px;
  border: 1px solid #231f20;
  border-radius: 6px;
  padding: 12px 9px;
  cursor: pointer;

  text-align: center;
  position: relative;
  transition: all 0.65s ease;
	font-family: var(--e-global-typography-d735a75-font-family), Sans-serif;
    font-size: var(--e-global-typography-d735a75-font-size);
    font-weight: var(--e-global-typography-d735a75-font-weight);
    line-height: var(--e-global-typography-d735a75-line-height);
    letter-spacing: var(--e-global-typography-d735a75-letter-spacing);
    word-spacing: var(--e-global-typography-d735a75-word-spacing);
}

.mPopular-text {
  position: absolute;
  font-size: 11px;
  font-weight: 400;
  width: 90px;
  padding: 2px;
  background: #efe9fb;
  color: #d55f8d;
  border-radius: 4px;
  top: -10px;
  left: 5px;
}

img.img-fluid.arrow-icon {
  max-width: 22px;
  object-fit: contain;
  margin: 0;
}
.hex-account-sec .step-indicator {
     background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
  color: white;
  text-align: center;
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1%;
  border-radius: 12px;
  min-height: 58px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 39px 0 0;
}

.hex-account-sec .hex-account-rowPay {
	--bg-cart: #322339;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    position: relative;
    background: var(--bg-cart);
    border-radius: 20px;
	    margin-top: -20px;
    padding-top: 50px;
}
.hex-account-rowPay .hex-Funded-btnArea .button-group .button-item::after{
	  background: var(--bg-cart);
}
.account-cart-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1b032691;
  z-index: 8;
}

.account-cart-loader-inner {
  display: flex;
  justify-content: center;
  /*    align-items: center;*/
  /* height: 100vh; */
  /* background: #f9f9f9; */
  width: 100%;
  height: 100%;
}

.cart-loader {
  width: 55px;
  height: 55px;
    border: 6px solid #ffff;
    border-top: 6px solid #e065cf;
  border-radius: 50%;
  margin: 120px 0 0;
  animation: cartSpin 1s linear infinite;
}

@keyframes cartSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hex-account-lft {
  flex: 1.3;
}

.hex-account-rowPay .hex-account-lft {
    position: relative;
z-index: 1;
padding: 20px;
}
.hex-account-rowPay .hex-account-lft::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
   background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
    border-radius: 8px;
    z-index: -1;
    top: 0;
    left: 0;
}

.hex-account-rowPay .hex-account-lft::after{
    content: "";
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
 background: var(--bg-cart);
    z-index: -1;
    border-radius: 8px;
    transition: all 0.3s;
}

.hex-account-rht,
#right-container-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
gap: 30px;
}
.hex-account-box .note-text {
  font-size: 14px;
  color: #747272;
  letter-spacing: 0.5px;
  /*background: #f6f6f6;*/
  padding: 3px 13px;
  border-radius: 4px;
}



.hex-account-rowPay .hex-Funded-btnArea .button-group {
    justify-content: flex-start;
}

.hex-account-rowPay  .hex-Funded-btnArea h5 {
    color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
	    margin-bottom: 20px;
}

.coupon-section form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

#custom-coupon-message {
  width: 100%;
  margin: 4px 0 0;
}

/* .custom-cart-container #woocommerce-notices-wrapper {
    margin: 76px 0 0;
	display:none;
} */

.custom-cart-container .woocommerce-notices-wrapper {
  display: none;
}

.custom-cart-container .return-to-shop {
  display: none;
}

.woocommerce-cart .wc-empty-cart-message {
  margin: 70px 0 0;
}

.hex-account-sec .section {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.hex-account-box h3 {
  margin-bottom: 8px;
     color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

.hex-account-sec .tag {
  font-size: 10px;
  background: #007bff;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  margin-left: 5px;
}

.refund-code-text {
 background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));;
  padding: 11px 20px;
  border-radius: 12px;
    text-align: center;
    color: #fff;
}
.refund-code-text span.space{
padding: 0 9px;
}
.refund-code-text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
 color: #fff;
}

.refund-code-text ul li {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}

.refund-code-text ul li img {
  margin: 0 6px 0 0;
  position: relative;
  top: -1px;
}

.hex-account-sec .coupon-section input {
width: 68%;
    padding: 15px 20px;
    height: auto;
    border-radius: 10px;
    border: none;
    margin-right: 0px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: rgb(255, 255, 255);
    background: #73737330;
}

.hex-account-sec .coupon-section input::placeholder {
  color: #737373;
      font-family: var(--e-global-typography-2c3b6df-font-family), Sans-serif;
    font-size: var(--e-global-typography-2c3b6df-font-size);
    font-weight: 400;
    line-height: var(--e-global-typography-2c3b6df-line-height);
  opacity: 1; /* Firefox */
}

.hex-account-sec .coupon-section input::-ms-input-placeholder {
  /* Edge 12-18 */
    font-family: var(--e-global-typography-2c3b6df-font-family), Sans-serif;
    font-size: var(--e-global-typography-2c3b6df-font-size);
    font-weight: 400;
    line-height: var(--e-global-typography-2c3b6df-line-height);
  color: #737373;
}

.hex-account-sec .coupon-section input:focus-visible {
  outline: none;
}

.hex-account-sec .coupon-section button {
  padding: 16px 16px;
  border-radius: 8px;
  width: 30%;
  font-size: 18px;
	font-weight: 700;
  cursor: pointer;
	      background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
    transition: all 0.3s;
 
}

.hex-account-sec .coupon-section button:hover {
  background: #fff;
  color: #000 ;
}
.addons-inner {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin: 16px 0 0;
}
.addons-inner label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 32px;
}

.addons-inner label input {
  position: absolute;
  left: 0;
  opacity: 0;
}

.addons-inner label .label-text {
color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.65s ease;
}

.addons-lable-lft {
  width: 70%;
  padding: 0 15px 0 0;
}
.hex-account-sec .custom-radio {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  position: absolute;
  left: 0;
  margin: 0;
	z-index: 1;
}

.hex-account-sec .custom-radio-check {
  position: absolute;
  width: 14px;
  height: 14px;
 background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
  border-radius: 50%;
  top: 3px;
  left: 3px;
  opacity: 0;
  transition: all 0.65s ease;
	display: none;
}

.hex-account-sec .custom-radio::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
   background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
    border-radius: 50%;
    z-index: -1;
    top: 0;
    left: 0;
}

.hex-account-sec .custom-radio::after{
    content: "";
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    background: var(--bg-cart) ;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s;
}
.addons-inner label input:checked ~ .addons-lable-lft .custom-radio::after{
opacity: 0;
}

.addons-inner
  label
  input:checked
  ~ .addons-lable-lft
  .custom-radio
  .custom-radio-check {
  opacity: 1;
}

.addons-lable-rht {
  width: 30%;
  text-align: right;
  padding:0;
     color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.65s ease;
  transition: all 0.65s ease;
}

.addons-inner label input:checked ~ .addons-lable-lft .label-text,
.addons-inner label input:checked ~ .addons-lable-rht {
font-weight:700;
}


.hex-account-sec .price-box {
    position: relative;
z-index: 1;
padding: 20px;
}
.hex-account-sec .price-box::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
   background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
    border-radius: 8px;
    z-index: -1;
    top: 0;
    left: 0;
}

.hex-account-sec .price-box p, .price-inner-rht {
    margin: 0;
    color: #737373;
    font-family: var(--e-global-typography-2c3b6df-font-family), Sans-serif;
    font-size: var(--e-global-typography-2c3b6df-font-size);
    font-weight: var(--e-global-typography-2c3b6df-font-weight);
    line-height: var(--e-global-typography-2c3b6df-line-height);
}

.hex-account-sec .price-box::after{
    content: "";
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    background: var(--bg-cart);
    z-index: -1;
    border-radius: 8px;
    transition: all 0.3s;
}

.hex-account-sec .price {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    font-family: var(--e-global-typography-2c3b6df-font-family), sans-serif;
	
}

.hex-account-sec .old-price {
  text-decoration: line-through;
text-decoration-thickness: 2px;
  margin-left: 10px;
	color:#737373;
	font-weight: 400;

}
.hex-account-sec .cta-button {
   background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
  
    display: inline-block;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.65s ease;
 font-family: var(--e-global-typography-d735a75-font-family), Sans-serif;
    font-size: var(--e-global-typography-d735a75-font-size);
    font-weight: var(--e-global-typography-d735a75-font-weight);
    line-height: var(--e-global-typography-d735a75-line-height);
    letter-spacing: var(--e-global-typography-d735a75-letter-spacing);
    word-spacing: var(--e-global-typography-d735a75-word-spacing);
}

.hex-account-sec .cta-button:hover {
background: #fff;
	color: #000;
}
.price-inner-wrapper {
    display: flex;
	  flex-wrap: wrap;
    padding: 20px 0;
}

.price-inner-wrapper .price {
    display: flex;
}

.price-inner-lft {
  width: 50%;
  text-align: left;
}
.price-inner-rht {
  width: 50%;
  text-align: right;
  
}

.hex-account-sec .payment-source {
  margin-top: 20px;
}
.hex-account-sec .payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hex-account-sec .payment-icons img {
  height: 35px;
  cursor: pointer;
}

.currency-badge {
  background-color: #efe9fb;
  color: #d55f8d;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
}

.hex-account-sec .order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
	color:#fff;
}

.hex-account-sec .product-title, .hex-account-sec .product-subtext {
    color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

.hex-account-sec .product-subtext {
     font-weight: 400;
    margin-top: 1px;
    color: #737373;
    font-size: 18px;
	
}

.hex-account-sec .subtotal-row,
.hex-account-sec .total-row {
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
	color: #fff;
}
div#cart-order-total-box .highlight {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-dc85d3c-font-size);
    font-weight: var(--e-global-typography-dc85d3c-font-weight);
    line-height: var(--e-global-typography-dc85d3c-line-height);
    letter-spacing: var(--e-global-typography-dc85d3c-letter-spacing);
    color: #fff;
}

.hex-account-sec .total-row {
  margin-top: 20px;
}

.hex-account-sec .total-row span {
  font-size: 20px;

}

.hex-account-sec .coupon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 18px;
}



.hex-account-sec .remove-link {
  /*      color: #007bff;*/
  font-size: 16px;
  text-decoration: none;
  margin-left: 5px;

 background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hex-account-sec .remove-link:hover {
 background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hex-account-sec .remove-link:hover {
  text-decoration: underline;
}

div#cart-order-total-box {
    position: relative;
    z-index: 1;
    padding: 20px;
    border: 2px solid #737373;
    border-radius: 20px;
}

div#cart-order-total-box h3 {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-dc85d3c-font-size);
    font-weight: var(--e-global-typography-dc85d3c-font-weight);
    line-height: var(--e-global-typography-dc85d3c-line-height);
    letter-spacing: var(--e-global-typography-dc85d3c-letter-spacing);
}

.hex-account-sec .rating-box {
  text-align: center;
}

.hex-account-sec .rating-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #333;
  font-size: 15px;
  margin-bottom: 19px;
}

.hex-account-sec .rating-top span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hex-account-sec .rating-subtext {
  color: #231f20;
  font-size: 19px;
  margin-bottom: 17px;
  /* margin: 0; */
}

.hex-account-sec .stars-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hex-account-sec .stars-row img {
  height: 24px;
}

.hex-account-sec .score-badge {
  background: radial-gradient(circle at 0% 0%, var(--e-global-color-secondary), var(--e-global-color-primary));
  color: white;
  padding: 3px 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
}

.hex-account-sec .firm-text {
  font-weight: 400;
  font-size: 16px;
}

.hex-account-box-sticky {
  position: sticky;
  top: 127px;
  height: auto;
	padding-top: 10px;
}

/* css start 04-07-25 */

.custom-cart-container .ast-container {
  max-width: 100%;
  padding: 0;
}

.custom-cart-container .ast-container .woocommerce {
  max-width: 100%;
}

.addon-wrapper {
  display: flex;
  justify-content: space-between;
}

.remove-add-ons:hover {
  color: #df729c;
}

.remove-add-ons.disable {
  opacity: 0.5;
  cursor: not-allowed;
}
.addon-wrapper .remove-add-ons {
    color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}
/* css end 04-07-25 */
@media (max-width: 1440px) {
  .hex-account-box-sticky {
  top: 158px;
}
	.price-inner-rht {
		width: 100%;}
}
@media (max-width: 1024px) {
	.refund-code-text ul li {
  font-size: 15px;

}
	.price-inner-wrapper {
    flex-wrap: wrap;
    gap: 4px;
}

.price-inner-rht {
    width: 100%;
}

.refund-code-text ul li {
    display: inline-block;
}
  .hex-account-lft {
    flex: 1.2;
  }

  .hex-Funded-btnArea .button-group {
    column-gap: 15px;
    row-gap: 16px;
  }

  .addons-lable-lft {
    width: 79%;
    padding: 0 11px 0 0;
  }
  .addons-lable-rht {
    width: 21%;
  }

  .hex-account-sec .custom-radio {
    width: 20px;
    height: 20px;
  }

  .hex-account-sec .custom-radio-check {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .hex-account-lft,
  .hex-account-rht {
    flex: inherit;
    width: 100%;
  }

  .hex-account-rht {
    margin: 40px 0 0;
  }

  .hex-Funded-topContent h2 {
    font-size: 42px;
  }
	.hex-account-sec .hex-account-rowPay {
    gap: 20px;
}

.hex-account-lft {
    flex: 1;
    width: 100%;
}

.hex-account-rht {
    flex: 1;
}

.refund-code-text ul li {
    font-size: 14px;
}
}

@media (max-width: 575px) {
  .hex-account-sec .highlight {
    font-size: 34px;
  }

  .hex-account-sec .order-row {
    column-gap: 15px;
  }
  .hex-account-sec .step-indicator {
    font-size: 22px;
  }

  .hex-account-box h3 {
    font-size: 20px;
  }

  .hex-Funded-btnArea .button-group .button-item {
    min-width: 48%;
    max-width: 48%;
  }

  .hex-Funded-btnArea .button-group {
    column-gap: 4%;
  }

  .coupon-section form {
    flex-wrap: wrap;
    row-gap: 11px;
  }

  .hex-account-sec .coupon-section input {
    width: 100%;
    margin: 0;
  }

  .hex-account-sec .coupon-section button {
    width: 100%;
  }

  .hex-account-sec .old-price {
    margin-left: 0;
  }
	.price-inner-lft {
		width: 100%;}
	.price-inner-wrapper {
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 0;
}

.price-inner-rht {
    margin-left: auto;
}
}
@media (max-width:400px){
	.hex-account-sec .price {
    font-size: 30px;
}
}