.thyank-you-page-sec,
.veritas-checkout-page {
  min-height: auto;
  padding: 277px 0 100px;
}

/* Automatic checkout refreshes should not display WooCommerce's form loader. */
body.woocommerce-checkout .blockUI.blockOverlay {
  display: none !important;
}

/* Branded page loader used for add-to-cart and final checkout submission. */
.veritas-page-loader {
  animation: veritas-checkout-overlay-in 0.2s ease-out both;
  background: rgba(0, 21, 62, 0.94) !important;
  cursor: wait !important;
  display: none;
  height: 100dvh !important;
  inset: 0 !important;
  opacity: 1 !important;
  position: fixed !important;
  width: 100vw !important;
  z-index: 999999 !important;
}

.veritas-page-loader.is-visible {
  display: block;
}

.veritas-page-loader::before {
  animation: veritas-checkout-loader-spin 0.8s linear infinite !important;
  background: none !important;
  border: 5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  border-right-color: var(--secondary-color, #c9a86a);
  border-top-color: var(--secondary-color, #c9a86a);
  box-sizing: border-box;
  content: "";
  height: 64px;
  left: 50%;
  margin: -32px 0 0 -32px;
  position: fixed;
  top: 50%;
  width: 64px;
}

@keyframes veritas-checkout-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes veritas-checkout-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .veritas-page-loader {
    animation: none;
  }

  .veritas-page-loader::before {
    animation-duration: 1.5s !important;
  }
}

.veritas-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.veritas-checkout-page .woocommerce-billing-fields>h3 {
  display: none;
}

.veritas-checkout-page .woocommerce-account-fields {
  display: none;
}

.veritas-checkout-page .veritas-plan-card {
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 20px;
  color: #F5F5F2;
  cursor: pointer;
  display: block;
  margin: 0 0 25px;
  padding: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
}

.veritas-checkout-page .veritas-plan-card.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff
}

.veritas-billing-option-label {
  color: #F5F5F2;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

.veritas-checkout-page select.veritas-plan-variation {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2317233c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: #17233c;
  cursor: pointer;
  margin: 0 0 20px;
  min-height: 44px;
  padding: 8px 44px 8px 12px;
  width: 100%;
}

.veritas-checkout-page select.veritas-plan-variation:focus {
  border-color: #7ab7ff;
  box-shadow: 0 0 0 2px rgba(122, 183, 255, 0.3);
  outline: none;
}

.radio-wpr {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.radio-wpr h3 {
  margin: 0;
}


.veritas-plan-card input[type="radio"] {
  appearance: none;
  background: #334465;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  height: 26px;
  width: 26px;
  min-height: 14px;
  padding: 0;
}

.veritas-plan-card input[type="radio"]:checked {
  background: radial-gradient(circle, #fff 0 34%, transparent 40%);
}

.veritas-plan-price {
  margin-bottom: 20px;
  line-height: 1;
  color: #fff;
}

.veritas-plan-price small {
  color: #F5F5F2;
  font-size: 22px;
  font-weight: 500;
}

.veritas-plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.veritas-plan-card li {
  margin: 0 0 20px;
  padding-left: 25px;
  position: relative;
}

.veritas-plan-card li:last-child {
  margin-bottom: 0;
}

.veritas-plan-card li::before {
  background-image: url(../images/li-right.svg);
  border-radius: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background-size: 16px;
  left: 0;
  position: absolute;
  top: 3px;
}

.veritas-order-summary {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  margin-top: 25px;
  padding: 40px;
}

.veritas-order-summary h3 {
  font-size: 32px;
  font-weight: 500;
}

.veritas-summary-row {
  align-items: center;
  color: #D9D9D9;
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px 0;
  font-weight: 500;
  border-bottom: 1px solid #D9D9D9;
}

.veritas-summary-row.total {
  padding-top: 20px;
  padding-bottom: 0;
  border: none;

}

.veritas-summary-row span:last-child {
  text-align: right;
}

.veritas-checkout-right {
  padding-left: 0;
}

.veritas-checkout-page .woocommerce-billing-fields__field-wrapper {

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.woocommerce .veritas-checkout-page form .form-row {
  padding: 0;
  margin: 0;
  float: initial;
  width: 100%;
}

.woocommerce .veritas-checkout-page form .form-row label {
  line-height: 1;
  color: #D9D9D9;
  margin-bottom: 12px;
}

.thyank-you-page-sec .woocommerce form .form-row .input-text,
.woocommerce .veritas-checkout-page form .form-row .input-text {
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 10px;
  color: #fff !important;
  height: 60px;
  font-size: 16px;
}

.woocommerce .veritas-checkout-page form .form-row select,
.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single {
  width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 0 48px 0 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
}

.woocommerce .veritas-checkout-page form .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M2 2l6 6 6-6' fill='none' stroke='%23ffffff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 18px) center;
  background-repeat: no-repeat;
  background-size: 16px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.woocommerce .veritas-checkout-page form .select2-container {
  width: 100% !important;
}

.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single {
  padding: 0;
}

.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single .select2-selection__rendered {
  height: 60px;
  padding: 0 48px 0 20px;
  color: #fff;
  line-height: 60px;
}

.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single .select2-selection__arrow b {
  width: 9px;
  height: 9px;
  margin: -7px 0 0 -5px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.woocommerce .veritas-checkout-page form .select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(225deg);
}

body.woocommerce-checkout .select2-container--open .select2-search--dropdown .select2-search__field {
  background-color: #fff !important;
  color: #17233c !important;
  caret-color: #17233c;
  -webkit-text-fill-color: #17233c;
}

body.woocommerce-checkout .select2-container--open .select2-search--dropdown .select2-search__field::placeholder {
  color: #687386;
  opacity: 1;
  -webkit-text-fill-color: #687386;
}

.thyank-you-page-sec .woocommerce .col2-set {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.thyank-you-page-sec .woocommerce .col2-set .col-2,
.thyank-you-page-sec .woocommerce-page .col2-set .col-2,
.thyank-you-page-sec .woocommerce .col2-set .col-1,
.thyank-you-page-sec .woocommerce-page .col2-set .col-1 {
  float: initial;
  width: 100%;
}

.thyank-you-page-sec .woocommerce form .form-row {
  padding: 0;
  margin: 0 0 30px;
}

.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {

  display: none;
}

.veritas-checkout-page .form-row {
  float: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.veritas-checkout-page .form-row-first,
.veritas-checkout-page .form-row-last {
  width: 100%;
}

.veritas-checkout-page #billing_address_1_field,
.veritas-checkout-page #billing_address_2_field,
.veritas-checkout-page #ilepdi_department_unit_field {
  grid-column: span 2;
}

.veritas-license-applicant-fields {
  clear: both;
  margin: -12px 0 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.veritas-license-applicant-fields h3 {
  margin: 0 0 24px;
  color: #fff;
}

.veritas-license-applicant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.veritas-license-applicant-grid .form-row-wide,
.veritas-license-id-intro {
  grid-column: span 2;
}

.woocommerce .veritas-checkout-page form #veritas_license_date_of_birth {
  position: relative;
  padding-right: 52px;
  color: #fff;
  color-scheme: dark;
  cursor: pointer;
}

.woocommerce .veritas-checkout-page form #veritas_license_date_of_birth::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transform: translateY(-50%);
}

.woocommerce .veritas-checkout-page form #veritas_license_date_of_birth::-webkit-datetime-edit,
.woocommerce .veritas-checkout-page form #veritas_license_date_of_birth::-webkit-date-and-time-value {
  color: #fff;
  text-align: left;
}

.veritas-license-field-label,
.veritas-license-eligibility legend {
  display: block;
  margin-bottom: 12px;
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.woocommerce .veritas-checkout-page form .veritas-license-checkbox-row label.checkbox,
.veritas-license-radio-options {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.woocommerce .veritas-checkout-page form .veritas-license-checkbox-row label.checkbox {
  gap: 10px;
  margin: 0;
  line-height: 1.35;
}

.veritas-license-eligibility {
  padding: 0;
  border: 0;
}

.veritas-license-radio-options {
  gap: 32px;
}

.woocommerce .veritas-checkout-page form .veritas-license-radio-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #fff;
}

.veritas-license-checkbox-row input[type="checkbox"],
.veritas-license-radio-options input[type="radio"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: #c9a86a;
}

.veritas-license-id-intro {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
  color: #fff;
}

.veritas-license-id-intro span {
  color: #d9d9d9;
  font-size: 13px;
}

.veritas-license-file-control {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.veritas-license-upload-controls {
  display: grid;
  gap: 10px;
  width: 100%;
}

.woocommerce .veritas-checkout-page form .veritas-license-document-type {
  box-sizing: border-box;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 0 48px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
}

.woocommerce .veritas-checkout-page form .veritas-license-document-type:focus {
  border-color: #c9a86a;
  outline: 3px solid rgba(201, 168, 106, 0.2);
}

.woocommerce .veritas-checkout-page form .veritas-license-document-type option {
  background: #13284f;
  color: #fff;
}

.woocommerce .veritas-checkout-page form .veritas-license-document-type--fixed {
  display: flex;
  align-items: center;
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.78);
  cursor: default;
}

.veritas-checkout-page .veritas-license-id-file {
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d9d9d9;
}

.veritas-checkout-page .veritas-license-id-file::file-selector-button {
  margin-right: 12px;
  padding: 9px 14px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #17233c;
  cursor: pointer;
  font-weight: 700;
}

.veritas-license-upload-status {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #ff8a80;
  font-size: 13px;
}

.veritas-license-upload-status.is-success {
  color: #75d59a;
}

.veritas-checkout-otp-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  grid-column: 1 / -1;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: -12px 0 0;
}

.veritas-checkout-otp-box .veritas-checkout-otp-message,
.veritas-checkout-otp-box .veritas-checkout-send-otp-row,
.veritas-checkout-otp-box .veritas-checkout-otp-field {
  grid-column: 1 / -1;
  box-sizing: border-box;
  width: 100% !important;
  max-width: none;
  min-width: 0;
  margin: 0;
}

.woocommerce .veritas-checkout-page form .veritas-checkout-otp-field .input-text {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none;
}

.veritas-checkout-otp-message {
  color: #D9D9D9;
  font-weight: 600;
  min-height: 22px;
}

.woocommerce .veritas-checkout-page form .veritas-checkout-send-otp-row .button {
  background: #fff;
  border: 0;
  border-radius: 10px;
  color: #1d273b;
  font-weight: 700;
  height: 54px;
  padding: 0 24px;
  width: 100%;
}

.woocommerce .veritas-checkout-page form .veritas-checkout-send-otp-row .button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.veritas-checkout-page abbr.required {
  border: 0;
  color: #ff2b2b;
  text-decoration: none;
}

.veritas-checkout-page input,
.veritas-checkout-page select,
.veritas-checkout-page textarea {
  background: #173160;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  height: 38px;
  min-height: 38px;
  padding: 8px 12px;
  width: 100%;
}

.veritas-checkout-page input:focus,
.veritas-checkout-page select:focus,
.veritas-checkout-page textarea:focus {
  /* box-shadow: 0 0 0 1px #7ab7ff; */
  outline: none;
}

.veritas-checkout-page .ilepdi-checkbox-field .woocommerce-input-wrapper {
  display: block;
}

.woocommerce .veritas-checkout-page form .ilepdi-checkbox-field label.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 60px;
  margin: 0;
  padding: 18px 20px;
  border-radius: 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.07);
  line-height: 1.4;
  cursor: pointer;
}

.veritas-checkout-page .ilepdi-checkbox-field input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
}

.woocommerce .veritas-checkout-page form .ilepdi-application-field select {
  height: 60px;
  min-height: 60px;
  padding: 0 48px 0 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  background: #173160 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M2 2l6 6 6-6' fill='none' stroke='%23ffffff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat calc(100% - 18px) center;
  background-size: 16px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.woocommerce .veritas-checkout-page form .ilepdi-application-field select option {
  color: #fff;
  background-color: #173160;
}

.veritas-checkout-page .ilepdi-certification-field {
  grid-column: span 2;
  padding-top: 5px !important;
}

.woocommerce .veritas-checkout-page form .ilepdi-certification-field label.checkbox {
  height: auto;
}

.veritas-checkout-page #payment {
  background: transparent !important;
  color: #fff;
}

.veritas-checkout-page #payment ul.payment_methods {
  border: 0;
  margin: 0;
  padding: 0;
}

.veritas-checkout-page #payment ul.payment_methods li {
  color: #fff;
  line-height: 1.4;
}

.veritas-checkout-page #payment ul.payment_methods label {
  display: block;
  margin: 0;
}

.veritas-checkout-page #payment ul.payment_methods input[type="radio"],
.veritas-checkout-page #payment input[type="checkbox"] {
  height: auto;
  min-height: 0;
  padding: 0;
  width: auto;
}

.veritas-checkout-page #payment div.payment_box {
  background: transparent;
  color: #fff;
  margin: 0;
  padding: 0;
}

.veritas-checkout-page #payment div.payment_box::before {
  display: none;
}

.veritas-checkout-page #payment div.payment_box p {
  color: #d9d9d9;
  line-height: 1.45;
  margin: 0 0 12px;
}

.veritas-checkout-page .sj-lts-payment-fields {
  border-radius: 10px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
}

.veritas-checkout-page .sj-lts-card-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.veritas-checkout-page .sj-lts-card-methods span {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  padding: 8px 10px;
}

.woocommerce-checkout #payment div.form-row {
  padding: 0;
}

.veritas-checkout-page .wc-stripe-elements-field,
.veritas-checkout-page .wc-stripe-iban-element-field,
.veritas-checkout-page .stripe-card-group,
.veritas-checkout-page .woocommerce-SavedPaymentMethods-tokenInput {
  background: #173160 !important;
  border: 0 !important;
  border-radius: 0 !important;
  min-height: 38px;
  padding: 10px 12px !important;
}

.veritas-checkout-page .form-row.place-order {
  margin-top: 20px;
}

.veritas-checkout-page .woocommerce-privacy-policy-text {
  color: #fff;
  line-height: 1.45;
  margin: 16px 0 25px;
}

.veritas-checkout-page .woocommerce-privacy-policy-text a {
  color: #e3c25e;
}

.veritas-checkout-page .woocommerce-privacy-policy-text a:hover {
  color: #fff;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: initial;
  margin: 0;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
.veritas-checkout-page #place_order {
  background: #F5F5F2;
  border: 0;
  border-radius: 999px;
  color: #121212;
  float: none;
  font-size: 19px;
  font-weight: 400;
  min-width: 292px;
  padding: 20px 28px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button{
  border: 1px solid #fff;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
.veritas-checkout-page #place_order:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--priamry-color);
  -webkit-box-shadow: 0 4px 20px rgba(201, 168, 106, 0.4);
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.4);
}

.veritas-checkout-page #place_order:disabled,
.veritas-checkout-page #place_order.veritas-place-order-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}
  
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover{
    border-color: #fff;
    color: #fff;
  }
.thyank-you-page-sec .woocommerce form .form-row label.woocommerce-form-login__rememberme {
  margin: 19px 0 0;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
  display: none;
}

.woocommerce-form-login__rememberme span {
  position: relative;
  padding-left: 30px;
}

.woocommerce-form-login__rememberme span::before {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 1px;
  transition: all 0.3s ease-in-out;
  content: '';
  border-radius: 2px;
  border: 1px solid #fff;
}

.woocommerce-form-login__rememberme span::after {
  width: 6px;
  height: 10px;
  position: absolute;
  left: 7px;
  top: 4px;
  transition: all 0.3s ease-in-out;
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
}

.woocommerce-form-login__rememberme input[type="checkbox"]:checked+span::after {
  transform: rotate(45deg) scale(1);
}

.woocommerce-checkout .veritas-checkout-page .checkout .checkout-inline-error-message {
  padding-top: 5px;
}

.veritas-checkout-page .woocommerce-error {
  display: none;
}

.veritas-watermark {
  display: none;
}

.thyank-you-page-sec .woocommerce ul.order_details {

  padding: 0;
}

.thyank-you-page-sec .woocommerce table.shop_table {
  border: 1px solid #fff;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.thyank-you-page-sec .woocommerce table.shop_table td,
.thyank-you-page-sec .woocommerce table.shop_table th {

  padding: 20px;
}

.thyank-you-page-sec .woocommerce table.shop_table tfoot th,
.thyank-you-page-sec .woocommerce table.shop_table td {
  border-color: #fff;
}

/* .thyank-you-page-sec .woocommerce table.shop_table tfoot:nth-child(3) {
  display: none;
} */

.thyank-you-page-sec .woocommerce .woocommerce-customer-details address {

  border: none;
  padding: 0;
}

.thyank-you-page-sec .woocommerce .woocommerce-customer-details {
  margin-bottom: 0;
}

.thyank-you-page-sec .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  line-height: 1.5;
}

.thyank-you-page-sec .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-bottom: 0;
}

.thyank-you-page-sec .woocommerce-customer-details--phone {
  margin-top: 15px;
}

.thyank-you-page-sec .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  line-height: 1.7;
}

.thyank-you-page-sec .woocommerce form.register,
.thyank-you-page-sec .woocommerce form.login {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.thyank-you-page-sec .woocommerce form .form-row label {
  line-height: 1;
  margin-bottom: 15px;
  color: #D9D9D9;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 30px;
}

.thyank-you-page-sec .woocommerce-error {
  background: #C9A86A;
  border-top-color: transparent;
  color: #fff;
  border-radius: 10px;
}

.thyank-you-page-sec .woocommerce-error:focus-visible {
  border-color: transparent;
  outline: none;
}

.thyank-you-page-sec .woocommerce form .form-row .input-text:-webkit-autofill,
.thyank-you-page-sec .woocommerce form .form-row .input-text:-webkit-autofill:hover,
.thyank-you-page-sec .woocommerce form .form-row .input-text:-webkit-autofill:focus,
.thyank-you-page-sec .woocommerce form .form-row .input-text:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  caret-color: #fff;
}

.thyank-you-page-sec .woocommerce form .show-password-input::before {
  filter: brightness(0) invert(1);
}

.thyank-you-page-sec .woocommerce form.register .form-row:last-child{
  margin: 0;

}

.thyank-you-page-sec>.container:has(.veritas-checkout-page),
.thyank-you-page-sec:has(.veritas-checkout-page){
  padding: 0 !important;
}

.thyank-you-page-sec:has(.veritas-checkout-page) .woocommerce form .form-row {
    margin: 0 !important;
}


  /* 23-06-26 Css Start */
  .woocommerce-MyAccount-navigation ul {
        border: 1px solid #c9a86a;
        border-radius: 16px;
        overflow: hidden;
    }
    .woocommerce-MyAccount-navigation ul li a {
        border-bottom: 1px solid #c9a86a;
    }
    .woocommerce-MyAccount-navigation ul li.is-active a {
        background: #c9a86a;
        color:var(--white-color);
    }
    .woocommerce-MyAccount-navigation ul li a:hover{
        background: #ba995e;
        color:var(--white-color);
    }
    .thyank-you-page-sec .woocommerce table.shop_table {
        border: 1px solid rgba(255,255,255,0.1);
    }

 .thyank-you-page-sec .woocommerce table.shop_table {
      border: 1px solid rgba(255,255,255,0.1);
  }
  .thyank-you-page-sec .woocommerce table.shop_table tfoot th, .thyank-you-page-sec .woocommerce table.shop_table td{
    border-color:rgba(255,255,255,0.1);
  }
  body.woocommerce-orders table.shop_table .woocommerce-orders-table__cell-order-actions a,
  body.woocommerce-view-order table.shop_table .order-actions-button{
    min-width: auto;
    padding: 9px 20px;
    font-size: 16px;
    margin: 0 8px 5px 0;
  }
  body.woocommerce-orders table.shop_table .woocommerce-orders-table__cell-order-actions a:hover,
    body.woocommerce-view-order table.shop_table .order-actions-button:hover,
     .woocommerce-account .woocommerce-info .button.wc-forward:hover{
    border-color:#ba995e;
  }
  .woocommerce-MyAccount-content h2{
    font-size:40px;
  }
  .woocommerce-account .woocommerce-info{
    border-radius: 20px 20px 0 0;
    border: 0;
    border-top: 2px solid #c9a86a;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    padding-left:60px;
  }
  .woocommerce-account .woocommerce-info .button.wc-forward{
    margin-left: auto;
    min-width: auto;
    padding: 13px 23px;
  }
   .woocommerce-account .woocommerce-info::before{
    top:27px;
   }

  .woocommerce-account .woocommerce-Address,
  .woocommerce-EditAccountForm.edit-account{
    background-color:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.1);
    padding:16px;
    border-radius:10px;
  }
  .woocommerce-account .woocommerce-Address .woocommerce-Address-title{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:15px;
  }

  .woocommerce-account .woocommerce-Address .woocommerce-Address-title:after,
  .woocommerce-account .woocommerce-Address .woocommerce-Address-title:before{
    display:none;
  }
  .woocommerce-account .woocommerce-Address .woocommerce-Address-title h2{
    margin-bottom:0;
    font-size:30px;
    flex:1;
  }
  .woocommerce-account .woocommerce-Address .woocommerce-Address-title .edit {
    margin-left: auto;
    flex: 0 0 auto;
    padding:8px 20px;
    background: #c9a86a;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
}
.woocommerce-account .woocommerce-Address .woocommerce-Address-title .edit:hover{
  background-color:#fff;
  color:#000;
}
.woocommerce-EditAccountForm.edit-account {
  padding:30px;
}
.woocommerce-EditAccountForm.edit-account .form-row-first,
.woocommerce-EditAccountForm.edit-account .form-row-last{
  width:49%;
}
.thyank-you-page-sec .woocommerce form .form-row label {
    margin-bottom: 12px;
}
#account_display_name_description em{
  font-size:14px;
}

.woocommerce-EditAccountForm.edit-account fieldset > legend{
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 22px;
}




  /* 23-06-26 Css End */





/* responsive css  */

@media(max-width: 1199px) {

  .thyank-you-page-sec,
  .veritas-checkout-page {
    padding: 200px 0 80px;
  }

  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, .veritas-checkout-page #place_order {
    min-width: 192px;
}
}

@media(max-width: 991px){
  .veritas-checkout-grid {
    grid-template-columns: 1fr;
}

.veritas-order-summary,
.veritas-checkout-page .veritas-plan-card {
    padding: 20px;
}

}

@media(max-width: 767px){
  .veritas-checkout-page .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .veritas-checkout-page .form-row-wide,
  .veritas-checkout-otp-box {
    grid-column: 1 / -1;
  }

  .thyank-you-page-sec .woocommerce .col2-set {
    grid-template-columns: 1fr;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, .veritas-checkout-page #place_order {
    font-size: 15px;
    min-width: 122px;
    padding: 15px 28px;
}

.thyank-you-page-sec, .veritas-checkout-page {
    padding: 160px 0 50px;
}

.thyank-you-page-sec .woocommerce form .form-row label.woocommerce-form-login__rememberme {
    margin: 12px 0 0;
}

.woocommerce ul.order_details li {
  padding-right: 1em;
  margin-right: 1em;
}

.woocommerce ul.order_details li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.thyank-you-page-sec .woocommerce table.shop_table td, .thyank-you-page-sec .woocommerce table.shop_table th {
    padding: 10px;
}

.thyank-you-page-sec .woocommerce table.shop_table {
  border-radius: 10px;
}

.veritas-summary-row {
    padding: 0 0 20px 0;
}
}

@media (max-width: 575px) {
  .veritas-checkout-page {
    padding-inline: 16px;
  }

  .veritas-order-summary h3 {
    font-size: 25px;
}

  .veritas-checkout-page h2 {
    font-size: 25px;
  }

  .veritas-checkout-page .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .veritas-checkout-page #billing_address_1_field,
  .veritas-checkout-page #billing_address_2_field,
  .veritas-checkout-page #ilepdi_department_unit_field {
    grid-column: span 1;
  }

  .veritas-license-applicant-grid {
    grid-template-columns: 1fr;
  }

  .veritas-license-applicant-grid .form-row-wide,
  .veritas-license-id-intro {
    grid-column: span 1;
  }

}

@media (max-width: 479px){
  .thyank-you-page-sec, .veritas-checkout-page {
    padding: 120px 0 50px;
}

.thyank-you-page-sec .woocommerce form .form-row .input-text, .woocommerce .veritas-checkout-page form .form-row .input-text {
    padding: 0 15px;
    height: 50px;
}

.woocommerce .veritas-checkout-page form .form-row select,
.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single,
.woocommerce .veritas-checkout-page form .select2-container .select2-selection--single .select2-selection__rendered {
    height: 50px;
    min-height: 50px;
    line-height: 50px;
}

.woocommerce ul.order_details li {
    padding-right: 0;
    margin-right: 0;
    width: 100%;
    border: none;
    margin-bottom: 20px;
}

.woocommerce ul.order_details li:last-child {
    margin-bottom: 0;
}

.woocommerce ul.order_details {
    margin: 0 0 2em;
}

.veritas-order-summary, .veritas-checkout-page .veritas-plan-card {
    padding: 15px;
    border-radius: 10px;
}

.veritas-plan-card li {
    margin: 0 0 10px;
}

.veritas-summary-row {
    padding: 0 0 10px 0;
}

.veritas-summary-row.total {
    padding-top: 10px;
}

.veritas-checkout-grid,
.veritas-checkout-page .woocommerce-billing-fields__field-wrapper {
  gap: 20px;
}

.veritas-checkout-page .sj-lts-payment-fields{
  padding: 15px;
}
}
