:root {
  --theme-color: #7F24FF;
  --theme-color2: #A769FF;
  --theme-color3: #7F24FF;
  --title-color: #fff;
  --body-color: #ADADAD;
  --body-bg: #0C0319;
  --smoke-color: rgba(127, 36, 255, 0.2);
  --smoke-color2: #180630;
  --smoke-color3: #FDEBD7;
  --black-color: #04132D;
  --white-color: #ffffff;
  --light-color: #A3AEC7;
  --gray-color: #5A6476;
  --yellow-color: #FFB539;
  --success-color: #12DFBA;
  --error-color: #FF1C1C;
  --ot-border-color: rgba(255, 255, 255, 0.2);
  --title-font: 'Creato Display';
  --body-font: "Inter Tight", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1320px;
  --container-gutters: 20px;
  --section-space: 140px;
  --section-space-mobile: 70px;
  --section-title-space: 70px;
  --ripple-ani-duration: 5s;
}

.space {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.text-center {
  text-align: center;
}

/* Checkout Addons Styles */
.wca-addon-info {
  margin-right: auto;
}

.wca-addon-name {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.wca-addon-name span {
  color: var(--body-color);
}

.wca-addon-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--body-color);
  display: block;
  margin-top: 5px;
}

.wca-addon-price {
  font-size: 14px;
  font-weight: 500;
}

.wca-addons-list {
  margin-bottom: 0;
}
.wca-addons-list:last-child {
  margin-bottom: 0;
}
.wca-addons-list.hide {
  display: none;
}
.wca-addons-list.show {
  display: block;
}

.wca-addons-list:last-child {
  margin-bottom: -8px;
}

.wca-addon-item {
  margin-bottom: 12px;
}
.wca-addon-item:last-child {
  margin-bottom: 12px;
}
.wca-addon-item .wca-addon-label {
  font-family: var(--title-font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: var(--title-color);
  margin-bottom: 0 !important;
}
.wca-addon-item .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid var(--theme-color);
  border-radius: 99px;
  position: relative;
  z-index: 2;
  display: none;
}
.wca-addon-item .icon:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid var(--black-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.wca-addon-item .wca-addon-checkbox {
  display: none;
}
.wca-addon-item:has(input[type=checkbox]:checked) .wca-addon-label {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.wca-addon-item:has(input[type=checkbox]:checked) .wca-addon-label .icon {
  background-color: var(--theme-color);
}
.wca-addon-item:has(input[type=checkbox]:checked) .wca-addon-label .icon:after {
  opacity: 1;
}
.wca-addon-item:has(input[type=checkbox]:checked) .wca-addon-label .addon-info .wca-addon-name {
  color: var(--white-color);
}

.wca-addon-checkbox {
  margin: 0 12px 0 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}/*# sourceMappingURL=checkout.css.map */