@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --theme-color: #C6EA5D;
  --theme-color2: #9136F4;
  --theme-color3: #C6EA5D;
  --title-color: #F5F9F2;
  --body-color: #E4E8E1;
  --smoke-color: #222222;
  --smoke-color2: #222222;
  --smoke-color3: #222222;
  --black-color: #212121;
  --white-color: #ffffff;
  --light-color: #A4A9BB;
  --gray-color: #DEE8FF;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --ot-border-color: #2D2D2D;
  --title-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --main-container: 1200px;
  --container-gutters: 30px;
  --section-space: 100px;
  --section-space-mobile: 70px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

.ot-btn {
  display: inline-block;
  padding: 7px 20px;
  color: var(--white-color);
  background-color: var(--theme-color);
  border: none;
  border-radius: 36px;
  font-size: 14px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ot-btn:hover {
  color: var(--white-color);
  background-color: #1c91cc;
}

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

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

/* Checkout Addons Styles */
.single-checkout-widget h3.main-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: -0.2em;
}

.wca-addons-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 22px;
  margin-top: -0.2em;
}

.wca-addon-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  margin-right: auto;
}

.wca-addon-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
}

.wca-addons-list {
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
}
.wca-addons-list:last-child {
  margin-bottom: 0;
}
.wca-addons-list.hide {
  display: none;
}
.wca-addons-list.show {
  display: block;
}

.wca-addon-item {
  margin-bottom: 0;
}
.wca-addon-item:last-child {
  margin-bottom: 0;
}
.wca-addon-item .wca-addon-label {
  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: 15px 16px;
  background-color: var(--smoke-color);
  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;
}
.wca-addon-item .icon:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--black-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.wca-addon-item input[type=checkbox]:checked + .wca-addon-name {
  color: var(--white-color);
}
.wca-addon-item:has(input[type=checkbox]:checked) .wca-addon-label {
  background: #2E2E2E;
}
.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-checkbox {
  margin: 0 12px 0 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}/*# sourceMappingURL=checkout.css.map */