@charset "UTF-8";

/* node_modules/tippy.js/dist/tippy.css */
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}
[data-tippy-root] {
  max-width: calc(100vw - 10px);
}
.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property:
    transform,
    visibility,
    opacity;
}
.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}
.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}
.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}
.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}
.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}
.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}
.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}
.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
}
.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}
.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

/* node_modules/tippy.js/animations/shift-away-subtle.css */
.tippy-box[data-animation=shift-away-subtle][data-state=hidden] {
  opacity: 0;
}
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=top] {
  transform: translateY(5px);
}
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=bottom] {
  transform: translateY(-5px);
}
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=left] {
  transform: translateX(5px);
}
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=right] {
  transform: translateX(-5px);
}

/* assets/src/styles/front.scss */
:root {
  --smatx-color-brand: #f84014;
  --smatx-dark-color: #232323;
  --smatx-gray-color: #475467;
  --smatx-gray-medium-color: #eaecf0;
  --smatx-gray-light-color: #f9f9f9;
  --smatx-border-color: #e2e8f0;
  --smatx-badge-gray-color: #475467;
  --smatx-badge-gray-bg: #f9fafb;
  --smatx-badge-orange-color: #cc7900;
  --smatx-badge-orange-bg: #fff5e6;
  --smatx-badge-green-color: #079455;
  --smatx-bagde-green-bg: #dcfae6;
  --smatx-badge-red-color: #b42318;
  --smatx-badge-red-bg: #fef3f2;
  --smatx-badge-blue-color: #026aa2;
  --smatx-badge-blue-bg: #eff8ff;
  --smatx-required-color: #f04438;
  --smatx-invalid-color: #de473c;
  --smatx-invalid-outline: rgba(222, 71, 60, 0.1);
  --smatx-loading-dark-color: #00233d;
  --smatx-loading-light-color: #dddde7;
  --smatx-field-bg: #f5f5f5;
  --smatx-switch-off: #f5f5f5;
  --smatx-switch-on: #f84014;
  --smatx-gradient:
    linear-gradient(
      
      -45deg,
      rgba(33, 117, 155, 0.1),
      rgba(255, 255, 255, 0.1),
      rgba(248, 64, 21, 0.1),
      rgba(255, 255, 255, 0.1) );
}
.smatx-badge {
  color: var(--smatx-badge-gray-color);
  background-color: var(--smatx-badge-gray-bg);
  border: 1px solid var(--smatx-badge-gray-bg);
  display: inline-block;
  padding: 0.35em 0.6em;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 16px;
}
.smatx-badge.smatx-badge-status {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.3rem;
  column-gap: 0.3rem;
}
.smatx-badge.smatx-badge-status:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--smatx-badge-gray-color);
}
.smatx-badge.smatx-badge-success {
  color: var(--smatx-badge-green-color);
  border-color: var(--smatx-bagde-green-bg);
  background-color: var(--smatx-bagde-green-bg);
}
.smatx-badge.smatx-badge-success.smatx-badge-status:before {
  background-color: var(--smatx-badge-green-color);
}
.smatx-badge.smatx-badge-warning {
  color: var(--smatx-badge-orange-color);
  border-color: var(--smatx-badge-orange-bg);
  background-color: var(--smatx-badge-orange-bg);
}
.smatx-badge.smatx-badge-warning.smatx-badge-status:before {
  background-color: var(--smatx-badge-orange-color);
}
.smatx-badge.smatx-badge-error {
  color: var(--smatx-badge-red-color);
  border-color: var(--smatx-badge-red-bg);
  background-color: var(--smatx-badge-red-bg);
}
.smatx-badge.smatx-badge-error.smatx-badge-status:before {
  background-color: var(--smatx-badge-red-color);
}
.smatx-badge.smatx-badge-info {
  color: var(--smatx-badge-blue-color);
  border-color: var(--smatx-badge-blue-bg);
  background-color: var(--smatx-badge-blue-bg);
}
.smatx-badge.smatx-badge-info.smatx-badge-status:before {
  background-color: var(--smatx-badge-blue-color);
}
.smatx-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 1000;
}
.smatx-modal__container {
  background-color: #fff;
  padding: 30px;
  width: 90%;
  max-width: 650px;
  max-height: 100vh;
  border-radius: 8px;
  overflow-y: auto;
  box-sizing: border-box;
}
.smatx-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.smatx-modal__header .smatx-modal__title {
  padding: 0;
  margin: 0 0 1.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
  box-sizing: border-box;
}
.smatx-modal__header .smatx-modal__title .smatx-modal__title-icon {
  display: inline-block;
  padding: 5px;
  color: var(--smatx-dark-color);
  background-color: var(--smatx-gray-medium-color);
  border: 6px solid var(--smatx-gray-light-color);
  line-height: 0;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.smatx-modal__header .smatx-modal__title .smatx-modal__title-icon svg {
  width: 24px;
  height: 24px;
}
.smatx-modal__header .smatx-modal__title .smatx-modal__title-label {
  display: block;
}
.smatx-modal__header .smatx-modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 18px;
  margin: 0;
  outline: none;
  color: var(--smatx-dark-color);
  opacity: 0.7;
}
.smatx-modal__header .smatx-modal__close:hover,
.smatx-modal__header .smatx-modal__close:focus {
  opacity: 1;
  color: var(--smatx-dark-color);
}
.smatx-modal__header .smatx-modal__close:before {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    avenir next,
    avenir,
    helvetica neue,
    helvetica,
    ubuntu,
    roboto,
    noto,
    segoe ui,
    arial,
    sans-serif;
  content: "\2715";
}
.smatx-modal__content {
  margin: 0 0 1.5rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.smatx-modal__content .smatx-modal__table {
  border: 0;
}
.smatx-modal__content .smatx-modal__table .smatx-modal-table__row-dummy {
  display: none;
}
.smatx-modal__content .smatx-modal__table td,
.smatx-modal__content .smatx-modal__table th {
  border: 0;
  padding: 0.5rem;
  text-align: left;
}
.smatx-modal__content .smatx-modal__table td:first-child,
.smatx-modal__content .smatx-modal__table th:first-child {
  padding-left: 0;
}
.smatx-modal__content .smatx-modal__table td:last-child,
.smatx-modal__content .smatx-modal__table th:last-child {
  padding-right: 0;
}
.smatx-modal__footer .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.smatx-modal__footer .wp-block-buttons .wp-block-button {
  flex: 1 1 auto;
  margin-top: 1rem;
}
.smatx-modal__footer .wp-block-buttons .wp-block-button .wp-element-button {
  display: block;
  width: 100%;
}
.smatx-modal-slide {
  display: none;
}
.smatx-modal-slide.is-open {
  display: block;
}
.smatx-modal-slide[aria-hidden=false] .smatx-modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.smatx-modal-slide[aria-hidden=false] .smatx-modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.smatx-modal-slide[aria-hidden=true] .smatx-modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.smatx-modal-slide[aria-hidden=true] .smatx-modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.smatx-modal-slide .smatx-modal__container,
.smatx-modal-slide .smatx-modal__overlay {
  will-change: transform;
}
.smatx-rotate {
  animation: smatxRotate 2s linear infinite;
}
@media (prefers-reduced-motion: no-preference) {
  .smatx-manage-inscriptions-footer {
    animation: smatxFadeInUp 0.35s ease-out;
    animation-fill-mode: both;
    opacity: 0;
    transform: translate3d(0, 0, 50px);
  }
}
@keyframes smatxSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes smatxRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes smatxFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.smatx-d-none {
  display: none !important;
}
.smatx-d-small-screens {
  display: none !important;
}
@media screen and (max-width: 544px) {
  .smatx-d-small-screens {
    display: initial !important;
  }
}
.smatx-loading-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.smatx-loading {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  min-height: 32px;
  min-width: 32px;
  line-height: 32px;
}
.smatx-loading:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid;
  border-color: var(--smatx-loading-light-color);
  border-top-color: var(--smatx-loading-dark-color);
  animation: smatxRotate 0.75s linear infinite;
}
.smatx-help-notice {
  font-size: 0.875rem;
  opacity: 0.75;
}
.smatx-invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--smatx-invalid-color);
}
.smatx-course-not-for-me-wrapper,
.smatx-product-item-not-for-me {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.smatx-course-not-for-me-wrapper .smatx-course-not-for-me-tip,
.smatx-product-item-not-for-me .smatx-course-not-for-me-tip {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  background: transparent;
  padding: 0;
  border: 0;
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-color: transparent;
  color: var(--smatx-gray-color);
  border-radius: 10px;
}
.smatx-course-not-for-me-wrapper .smatx-course-not-for-me-tip svg,
.smatx-product-item-not-for-me .smatx-course-not-for-me-tip svg {
  pointer-events: none;
}
.smatx-course-not-for-me-wrapper {
  margin-bottom: 0.5rem;
}
.woocommerce-order .smatx-product-item-not-for-me {
  margin-top: 0.25rem;
}
.smatx-course-not-for-me-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name,
.woocommerce.woocommerce-checkout form #order_review td.product-name,
.ast-modern-checkout .woocommerce #order_review .woocommerce-checkout-review-order-table tbody tr td.product-name,
.ast-modern-checkout .woocommerce #ast-order-review-content .woocommerce-checkout-review-order-table tbody tr td.product-name {
  display: table-cell;
  width: auto;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .smatx-product-image,
.woocommerce.woocommerce-checkout form #order_review td.product-name .smatx-product-image {
  height: auto;
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 5px;
  align-items: flex-start;
  width: auto;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .smatx-product-name,
.woocommerce.woocommerce-checkout form #order_review td.product-name .smatx-product-name,
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .ast-product-name,
.woocommerce.woocommerce-checkout form #order_review td.product-name .ast-product-name {
  font-weight: 600;
  line-height: 1.35;
  width: calc(100% - 60px);
}
.ast-modern-checkout .woocommerce #order_review .woocommerce-checkout-review-order-table tbody tr td.product-name .ast-product-image.ast-enable-image .ast-product-name,
.ast-modern-checkout .woocommerce #ast-order-review-content .woocommerce-checkout-review-order-table tbody tr td.product-name .ast-product-image.ast-enable-image .ast-product-name {
  font-weight: 600;
  line-height: 1.35;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .smatx-product-name .smatx-product-price,
.woocommerce.woocommerce-checkout form #order_review td.product-name .smatx-product-name .smatx-product-price {
  margin: 0.25rem 0 -0.5rem;
  font-size: 0.875rem;
}
.ast-modern-checkout .woocommerce #order_review .woocommerce-checkout-review-order-table tbody tr td.product-name .ast-product-image,
.ast-modern-checkout .woocommerce #ast-order-review-content .woocommerce-checkout-review-order-table tbody tr td.product-name .ast-product-image {
  vertical-align: top;
  align-items: flex-start;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .smatx-product-image .smatx-product-thumbnail img,
.woocommerce.woocommerce-checkout form #order_review td.product-name .smatx-product-image .smatx-product-thumbnail img {
  width: 50px;
  max-width: 100%;
  height: 50px;
  width: 50px;
  margin-right: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}
.woocommerce-js table.shop_table .product-total .woocommerce-Price-amount,
.woocommerce-page table.shop_table .product-total .woocommerce-Price-amount,
.woocommerce-js table.shop_table .cart-subtotal .woocommerce-Price-amount,
.woocommerce-page table.shop_table .cart-subtotal .woocommerce-Price-amount {
  font-weight: 600;
}
.woocommerce-js table.shop_table .order-total strong .woocommerce-Price-amount,
.woocommerce-page table.shop_table .order-total strong .woocommerce-Price-amount {
  font-size: 1.125rem;
  font-weight: 600;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .smatx-product-price .woocommerce-Price-amount,
.woocommerce.woocommerce-checkout form #order_review td.product-name .smatx-product-price .woocommerce-Price-amount {
  font-weight: 300;
}
.woocommerce-page.woocommerce-checkout form #order_review td .smatx-product-foot,
.woocommerce.woocommerce-checkout form #order_review td .smatx-product-foot,
.ast-modern-checkout .woocommerce #order_review .woocommerce-checkout-review-order-table tbody tr td.product-name .smatx-product-foot,
.ast-modern-checkout .woocommerce #ast-order-review-content .woocommerce-checkout-review-order-table tbody tr td.product-name .smatx-product-foot {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: -0.5rem;
}
.woocommerce-page.woocommerce-checkout form #order_review td.product-name .product-quantity,
.woocommerce.woocommerce-checkout form #order_review td.product-name .product-quantity {
  font-weight: 600;
}
.woocommerce-js table.shop_table td small.includes_tax {
  display: block;
  line-height: 1.5;
}
.woocommerce-js ul.product_list_widget li img {
  top: 0.75em;
  transform: none;
}
.woocommerce-js td.product-name .wc-item-meta,
.woocommerce-js td.product-name dl.variation {
  font-size: 0.875rem;
}
.woocommerce-page.woocommerce-checkout form #order_review td:last-child,
.woocommerce-page.woocommerce-checkout form #order_review th:last-child,
.woocommerce.woocommerce-checkout form #order_review td:last-child,
.woocommerce.woocommerce-checkout form #order_review th:last-child {
  vertical-align: bottom;
}
.woocommerce-js td.product-name ul.wc-item-meta {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.woocommerce-page.woocommerce-checkout table.shop_table td,
.woocommerce.woocommerce-checkout table.shop_table td {
  padding: 14px 12px;
}
.woocommerce-page.woocommerce-checkout #payment .form-row .smatx-order-pay-actions,
.woocommerce.woocommerce-checkout #payment .form-row .smatx-order-pay-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.woocommerce-page.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *,
.woocommerce.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > * {
  float: none !important;
  width: initial !important;
  flex: 0 0 calc(50% - 0.5rem);
  min-width: 0;
  max-width: 100%;
  margin-bottom: 1em;
}
.woocommerce-page.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *.smatx-cancel-order-pay,
.woocommerce.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *.smatx-cancel-order-pay {
  align-content: center;
  text-align: center;
}
.woocommerce-page.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *:empty,
.woocommerce.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *:empty {
  display: none;
  flex: 0;
}
@media (max-width: 600px) {
  .woocommerce-page.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > *,
  .woocommerce.woocommerce-checkout #payment .form-row .smatx-order-pay-actions > * {
    flex: 0 0 100%;
  }
}
.woocommerce-MyAccount-navigation > ul {
  padding: 0;
}
body.woocommerce-view-enrollment .entry-header .smatx-inscription-licenses {
  font-weight: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
}
body.woocommerce-view-enrollment .entry-content {
  margin: 0;
}
body.woocommerce-view-enrollment .woocommerce-MyAccount-heading,
body.woocommerce-view-enrollment .woocommerce-MyAccount-content {
  width: 100%;
  float: none;
  padding: 0;
  margin: 0 auto;
}
.woocommerce table.shop_table.smatx-inscriptions-table,
.woocommerce-js table.shop_table.smatx-inscriptions-table {
  font-size: 0.875rem;
  border: 1px solid var(--smatx-border-color);
  border-radius: 0 0 6px 6px;
  margin: 0 0 2rem;
}
.woocommerce table.shop_table.smatx-inscriptions-table caption,
.woocommerce-js table.shop_table.smatx-inscriptions-table caption {
  border: 1px solid var(--smatx-border-color);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  caption-side: top;
  text-align: left;
  padding: 1.25em 1.5em;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__title,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  margin: 0;
  font-size: 1.275rem;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__title + .smatx-inscriptions-table__subtitle,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__title + .smatx-inscriptions-table__subtitle {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__subtitle,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscriptions-table__subtitle {
  opacity: 0.75;
}
.woocommerce table.shop_table.smatx-inscriptions-table tr.smatx-licenses-manager-row,
.woocommerce-js table.shop_table.smatx-inscriptions-table tr.smatx-licenses-manager-row {
  background-color: rgba(0, 0, 0, 0.005);
  background-color: #fffaf2;
}
.woocommerce table.shop_table.smatx-inscriptions-table th,
.woocommerce table.shop_table.smatx-inscriptions-table td,
.woocommerce-js table.shop_table.smatx-inscriptions-table th,
.woocommerce-js table.shop_table.smatx-inscriptions-table td {
  border-left-width: 0;
  border-right-width: 0;
  line-height: 1.4;
  padding: 1em;
  text-align: left;
  vertical-align: middle;
  border-color: var(--smatx-border-color);
}
.woocommerce table.shop_table.smatx-inscriptions-table th.smatx-inscriptions-table__cell-actions,
.woocommerce table.shop_table.smatx-inscriptions-table td.smatx-inscriptions-table__cell-actions,
.woocommerce-js table.shop_table.smatx-inscriptions-table th.smatx-inscriptions-table__cell-actions,
.woocommerce-js table.shop_table.smatx-inscriptions-table td.smatx-inscriptions-table__cell-actions {
  vertical-align: middle;
  display: table-cell;
}
.woocommerce table.shop_table.smatx-inscriptions-table th:first-child,
.woocommerce table.shop_table.smatx-inscriptions-table td:first-child,
.woocommerce-js table.shop_table.smatx-inscriptions-table th:first-child,
.woocommerce-js table.shop_table.smatx-inscriptions-table td:first-child {
  padding-left: 1.5em;
}
.woocommerce table.shop_table.smatx-inscriptions-table th:last-child,
.woocommerce table.shop_table.smatx-inscriptions-table td:last-child,
.woocommerce-js table.shop_table.smatx-inscriptions-table th:last-child,
.woocommerce-js table.shop_table.smatx-inscriptions-table td:last-child {
  padding-right: 1.5em;
}
.woocommerce table.shop_table.smatx-inscriptions-table th,
.woocommerce-js table.shop_table.smatx-inscriptions-table th {
  font-size: 0.8125rem;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-course-name,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-course-name {
  font-weight: 500;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-course-id,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-course-id {
  font-weight: 300;
}
.woocommerce table.shop_table.smatx-inscriptions-table .button,
.woocommerce-js table.shop_table.smatx-inscriptions-table .button {
  white-space: nowrap;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscription-actions,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscription-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscription-actions a.smatx-action-icon-button,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscription-actions a.smatx-action-icon-button {
  color: var(--smatx-gray-color);
  text-decoration: none;
  display: inline-flex;
}
.woocommerce table.shop_table.smatx-inscriptions-table .smatx-inscription-actions a.smatx-action-icon-button svg,
.woocommerce-js table.shop_table.smatx-inscriptions-table .smatx-inscription-actions a.smatx-action-icon-button svg {
  width: 20px;
  height: 20px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form {
  margin-bottom: 5rem;
  width: 100%;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .required {
  color: var(--smatx-required-color);
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-field-label {
  display: none;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row {
  display: block;
  position: relative;
  margin: 0.25rem 0;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row input,
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row select {
  margin: 0;
  width: 100%;
  padding-right: 2.25rem;
  box-sizing: border-box;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row .smatx-field-icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transition: transform 0.2s linear;
  transform: translateY(-50%);
  opacity: 0.7;
  line-height: 0;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row .smatx-field-icon svg {
  width: 20px;
  height: 20px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row .smatx-field-invalid-feedback {
  color: var(--smatx-required-color);
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  display: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath fill='none' stroke='%23f04438' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4m0 4h.01M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 20px;
  height: 20px;
  cursor: help;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row select + .smatx-field-invalid-feedback {
  right: 1.5rem;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row .smatx-field-icon + input.input-text,
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row .smatx-field-icon + select {
  padding-left: 2.35rem;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row.show-feedback.is-invalid .smatx-field-invalid-feedback {
  display: inline-block;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row.show-feedback.is-invalid select[aria-invalid=true],
body.woocommerce-account form.smatx-manage-inscriptions-form .smatx-form-row.show-feedback.is-invalid input[aria-invalid=true] {
  border-color: var(--smatx-invalid-color);
  color: var(--smatx-invalid-color);
  outline: var(--smatx-invalid-outline) solid 2px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form.was-validated .smatx-form-row.is-invalid .smatx-field-invalid-feedback {
  display: inline-block;
}
body.woocommerce-account form.smatx-manage-inscriptions-form.was-validated .smatx-form-row.is-invalid select[aria-invalid=true],
body.woocommerce-account form.smatx-manage-inscriptions-form.was-validated .smatx-form-row.is-invalid input[aria-invalid=true] {
  border-color: var(--smatx-invalid-color);
  color: var(--smatx-invalid-color);
  outline: var(--smatx-invalid-outline) solid 2px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form.was-validated tr.is-invalid select,
body.woocommerce-account form.smatx-manage-inscriptions-form.was-validated tr.is-invalid input {
  border-color: var(--smatx-invalid-color);
  color: var(--smatx-invalid-color);
  outline: var(--smatx-invalid-outline) solid 2px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .wp-block-buttons .wp-block-button .smatx-button {
  padding: 10px 16px;
  border-width: 1px;
  min-height: 42px;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .wp-block-buttons .wp-block-button .smatx-button.smatx-has-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
body.woocommerce-account form.smatx-manage-inscriptions-form .wp-block-buttons .wp-block-button .smatx-button:disabled,
body.woocommerce-account form.smatx-manage-inscriptions-form .wp-block-buttons .wp-block-button .smatx-button.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
body.woocommerce-account .smatx-child-inscriptions-container {
  margin-bottom: 3rem;
}
body.woocommerce-account table.smatx-manage-inscriptions-table {
  border: 0;
  margin: 0 0 2rem;
}
body.woocommerce-account table.smatx-manage-inscriptions-table th,
body.woocommerce-account table.smatx-manage-inscriptions-table td {
  border: 0;
  text-align: left;
  padding: 0.25rem 0.5rem;
}
body.woocommerce-account table.smatx-manage-inscriptions-table th.smatx-manage-inscriptions-table__cell-user_email,
body.woocommerce-account table.smatx-manage-inscriptions-table td.smatx-manage-inscriptions-table__cell-user_email {
  width: 30%;
}
body.woocommerce-account table.smatx-manage-inscriptions-table th.smatx-manage-inscriptions-table__cell-num,
body.woocommerce-account table.smatx-manage-inscriptions-table td.smatx-manage-inscriptions-table__cell-num {
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 15px;
  padding-right: 0;
}
body.woocommerce-account table.smatx-manage-inscriptions-table th:first-child,
body.woocommerce-account table.smatx-manage-inscriptions-table td:first-child {
  padding-left: 0;
}
body.woocommerce-account table.smatx-manage-inscriptions-table th:last-child,
body.woocommerce-account table.smatx-manage-inscriptions-table td:last-child {
  padding-right: 0;
}
body.woocommerce-account table.smatx-manage-inscriptions-table tfoot td {
  padding-top: 1rem;
}
body.woocommerce-account .smatx-manage-inscriptions-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 1.5rem;
  z-index: 100;
  box-shadow: 0px -4px 6px -2px rgba(16, 24, 40, 0.031372549), 0px -12px 16px -4px rgba(16, 24, 40, 0.0196078431);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
body.woocommerce-account .smatx-manage-inscriptions-footer .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}
@media screen and (max-width: 544px) {
  .woocommerce .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td,
  .woocommerce-js .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td {
    padding-right: 2.5rem !important;
  }
  .woocommerce .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td.smatx-inscriptions-table__cell-status,
  .woocommerce-js .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td.smatx-inscriptions-table__cell-status {
    padding-right: 1rem !important;
  }
  .woocommerce .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td.smatx-inscriptions-table__cell-actions,
  .woocommerce-js .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td.smatx-inscriptions-table__cell-actions {
    padding-right: 0 !important;
  }
  .woocommerce .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td .smatx-inscription-actions,
  .woocommerce-js .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table tr td .smatx-inscription-actions {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .woocommerce .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table.smatx-child-inscriptions-table tr td:before,
  .woocommerce-js .woocommerce-MyAccount-content table.shop_table_responsive.smatx-inscriptions-table.smatx-child-inscriptions-table tr td:before {
    content: "";
    display: none;
  }
  body.woocommerce-account .smatx-manage-inscriptions-form table.smatx-manage-inscriptions-table thead {
    display: none;
  }
  body.woocommerce-account .smatx-manage-inscriptions-form table.smatx-manage-inscriptions-table tr {
    display: block;
    width: 100%;
  }
}
