.esim-quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.esim-quantity-wrapper h5 {
  margin: 0;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.esim-quantity .qty-input {
  -moz-appearance: textfield;
  width: 24px;
  padding: 0;
  text-align: center;
  border: none;
  background: transparent !important;
}

.esim-quantity {
  display: inline-flex;
  border-radius: 24px;
  overflow: hidden;
  background: var(--e-global-color-secondary) !important;
}

.esim-quantity button {
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--e-global-color-text);
  background: transparent !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esim-quantity button:hover {
  color: var(--e-global-color-text);
  background: #ccc !important;
}

.esim-cart-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.esim-product-item input {
  display: none;
}

.esim-product-item label {
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: var(--e-global-color-secondary);
  border: 1px solid var(--e-global-color-secondary);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.esim-product-item input:checked+label {
  border-color: var(--e-global-color-primary);
  background-color: var(--e-global-color-10e0030);
}

.value-primary {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--e-global-color-text);
}

.value-secondary {
  font-size: 14px;
  margin: 0;
  color: var(--e-global-color-9d050d7);
}

.original-price {
  font-size: 14px;
  margin-left: 12px;
  text-decoration: line-through;
}

.esim-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20%;
}

.esim-discount {
  width: 10%;
}

.discount-percent {
  background-image: url('../../../assets/img/discount-label.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 60px;
  height: 25px;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--e-global-color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.esim-checkout-btn {
  width: 100%;
  padding: 12px;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.esim-checkout-btn[disabled] {
  background-color: #eee;
  border-color: #eee;
  color: #444;
  pointer-events: none;
  opacity: 0.6;
}

.esim-cart-form .esim-section-title {
	color: #4b4b4c;
}
.esim-section-title:not(:first-child) {
	margin-top: 20px;
}


@media (max-width: 767px) { 
  .esim-product-item label {
    padding: 16px;
  }
  .esim-info {
    width: 30%;
  }
  .esim-pricing {
    width: 40%;
  }
  .esim-discount {
    width: 20%;
    align-items: flex-end;
  }
  .value-primary {
    font-size: 18px;
  }
  .value-secondary {
    font-size: 12px;
  }
  .discount-percent {
    font-size: 12px;
    width: 50px;
  }
  .original-price {
    margin-left: 8px;
  }
  .esim-quantity-wrapper h5 {
    font-size: 14px;
  }
}
