/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./public/src/css/style.scss ***!
  \********************************************************************************************************************/
:root {
  --fit-global-primary-color: #DD183B;
}

.attendance table {
  background-color: #fff !important;
}
.attendance table td.day {
  border-color: #e1e1e1 !important;
  text-align: center !important;
  direction: rtl !important;
}
.attendance table td.month {
  border-color: #e1e1e1 !important;
  font-size: 15px;
  text-align: center !important;
  direction: rtl !important;
  font-weight: bold !important;
}
.attendance table td.today {
  border-color: #e1e1e1 !important;
  text-align: center !important;
  direction: rtl !important;
}
.attendance table a {
  text-decoration: none;
  color: black;
}
.attendance table .day-desc {
  display: block;
  margin-top: 2px;
  background: #e4e4e4;
  font-size: 0.8rem;
  display: inline-block;
  min-width: 90%;
  padding: 0 2px;
}
@media only screen and (max-width: 480px) {
  .attendance table .day-desc {
    font-size: 0.7rem;
  }
}
.attendance table .day-red {
  background: red;
  color: #fff;
}
.attendance table .day-green {
  background: green;
  color: #fff;
}
.attendance table .day-desc {
  min-width: calc(100% - 4px);
  border-radius: 4px;
  display: block;
}
.attendance table .day-group {
  margin-bottom: 8px;
  border: 1px solid #d2d2d2;
  border-top: none;
  padding: 0 0 4px 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.attendance table .day-group .day-desc {
  max-width: calc(100% - 10px);
  min-width: calc(100% - 10px);
}
.attendance table .day-course {
  margin-bottom: 6px;
  width: 100%;
  font-weight: bold;
  display: block;
  font-size: 12px;
  padding: 6px 2px;
  border-radius: 4px 4px 0 0;
  border: 2px solid;
  border-right: none;
  border-left: none;
  background: #d2d2d2;
  color: #555;
}

#app-modals {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  overflow-y: auto;
}

.app-modal {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0;
  height: auto;
  width: auto;
  min-height: auto;
  width: 600px;
  max-width: 95%;
  right: 50%;
  top: 2rem;
  transform: translateX(50%);
}
.app-modal.loading {
  position: relative;
}
.app-modal.loading::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}
.app-modal-content table {
  background: transparent;
}
.app-modal-content table td, .app-modal-content table th {
  border-width: 1px;
  border-style: solid;
  padding: 6px 10px;
}
.app-modal-content table td {
  position: relative;
}
.app-modal-content table td .spinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-color: #fff;
}
.app-modal .form-row {
  margin-bottom: 1rem;
}

.app-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.app-modal-wrapper {
  max-width: 100%;
  width: 100%;
  padding: 2em;
  background: #fff;
  box-shadow: 0 0 30px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 100%;
}
@media only screen and (max-width: 768px) {
  .app-modal-wrapper {
    padding: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .app-modal-wrapper {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.app-modal-header {
  font-weight: bold;
}

.app-modal h1 {
  font-size: 1.5rem;
  margin: 0 0 15px;
}

.app-modal-header .app-modal-close {
  color: #aaa;
  line-height: 70px;
  font-size: 1rem;
  position: absolute;
  left: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
@media only screen and (max-width: 768px) {
  .app-modal-header .app-modal-close {
    height: 45px;
  }
}

.app-modal-close:hover {
  color: black;
}

.app-modal-content {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
#user_history .app-modal-content, #user_data .app-modal-content, #user_training .app-modal-content, #user_invoice .app-modal-content {
  flex-direction: column;
  gap: 20px 0;
}

.app-modal form label + div {
  padding-bottom: 10px;
  padding-top: 10px;
}

.app-modal form > div:last-child {
  margin-top: 30px;
}

.app-modal label {
  display: block;
  font-weight: bold;
  margin: 10px 0 10px;
  padding: 0;
}

.app-form-error {
  background: #ff4d4f;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 4px;
}

.app-form-success {
  background: #28a745;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 4px;
}

.app-modal input, .app-modal select {
  box-shadow: 0 0 0 transparent;
  border-radius: 4px;
  border: 1px solid #7e8993;
  background-color: #fff;
  color: #32373c;
  width: 100%;
  max-width: 100%;
  padding: 4px 10px !important;
}

.u-text-center {
  text-align: center !important;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .mb-1-sm {
    margin-bottom: 1rem;
  }
  .mb-2-sm {
    margin-bottom: 2rem;
  }
  .mb-3-sm {
    margin-bottom: 3rem;
  }
  .mb-4-sm {
    margin-bottom: 4rem;
  }
  .mb-5-sm {
    margin-bottom: 5rem;
  }
  .mb-6-sm {
    margin-bottom: 6rem;
  }
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .mt-1-sm {
    margin-top: 1rem;
  }
  .mt-2-sm {
    margin-top: 2rem;
  }
  .mt-3-sm {
    margin-top: 3rem;
  }
  .mt-4-sm {
    margin-top: 4rem;
  }
  .mt-5-sm {
    margin-top: 5rem;
  }
  .mt-6-sm {
    margin-top: 6rem;
  }
}

@media only screen and (max-width: 921px) {
  body .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
  }
  body .woocommerce-MyAccount-navigation ul li {
    width: auto !important;
    min-width: auto !important;
    display: inline-block !important;
    width: max-content !important;
  }
  body .woocommerce-MyAccount-navigation ul li a {
    min-width: auto !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    font-size: 0.9rem !important;
  }
}
.u-grid {
  display: grid;
  gap: 1rem;
}
.u-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}

.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-2 {
  margin-top: 2rem;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-monospace {
  font-family: monospace;
}

.u-card-number {
  text-align: left;
  direction: ltr;
  unicode-bidi: embed;
  white-space: nowrap;
}

.c-invoice-info {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  background: linear-gradient(to top right, #373737 0%, #000 100%);
  color: #fff;
}
.c-invoice-info > strong {
  display: block;
}
.c-invoice-info ul, .c-invoice-info ol {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(1, 1fr);
}
.c-invoice-info li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
}
.c-invoice-info li:first-child {
  border-top: none;
  padding-top: 0;
}
.c-invoice-info li strong {
  color: rgb(255, 255, 255);
  margin-left: 0.5rem;
}
.c-invoice-info li span {
  color: rgba(255, 255, 255, 0.95);
}

.c-invoice-card {
  margin: 1rem 0;
  background-image: linear-gradient(to top right, #30cfd0 0%, #330867 100%);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  color: #fff;
  border-radius: 8px;
  position: relative;
  padding-top: 2.2rem;
}
.c-invoice-card > strong {
  display: block;
  position: absolute;
  background: #CC1939;
  top: -15px;
  right: 12px;
  padding: 2px 8px;
  font-size: 13px;
  border-radius: 8px;
}
.c-invoice-card p {
  margin: 0;
}
.c-invoice-card p strong {
  margin: 0 5px;
}

.app-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.app-tab-title {
  margin-top: 0;
  margin-bottom: 0 !important;
}
.app-tab-left {
  margin-right: auto;
}

body.woocommerce-account .app-responsive-table,
.app-responsive-table {
  white-space: nowrap;
  overflow-x: auto;
  font-size: 0.9rem;
}
body.woocommerce-account .app-responsive-table table,
.app-responsive-table table {
  border-width: 1px;
  border-width: 1px !important;
  border-color: #e1e1e1 !important;
  border-style: solid !important;
}
body.woocommerce-account .app-responsive-table table td, body.woocommerce-account .app-responsive-table table th,
.app-responsive-table table td,
.app-responsive-table table th {
  border-width: 0px 0px 1px 1px !important;
  border-color: #e1e1e1 !important;
  border-style: solid !important;
}
body.woocommerce-account .app-responsive-table table td:last-child, body.woocommerce-account .app-responsive-table table th:last-child,
.app-responsive-table table td:last-child,
.app-responsive-table table th:last-child {
  border-left-width: 0 !important;
}
body.woocommerce-account .app-responsive-table table tr:last-child td, body.woocommerce-account .app-responsive-table table tr:last-child th,
.app-responsive-table table tr:last-child td,
.app-responsive-table table tr:last-child th {
  border-bottom-width: 0 !important;
}
body.woocommerce-account .app-responsive-table table thead tr:last-child th,
.app-responsive-table table thead tr:last-child th {
  border-bottom-width: 1px !important;
}
body.woocommerce-account .app-responsive-table table tr td, body.woocommerce-account .app-responsive-table table tr th,
.app-responsive-table table tr td,
.app-responsive-table table tr th {
  padding: 0.4em 0.5em;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button[disabled],
.woocommerce button.fitcore-button,
.woocommerce button.fitcore-button[disabled],
.woocommerce .fitcore-button,
.woocommerce .fitcore-button[disabled],
.fitcore-button,
.fitcore-button[disabled],
button.fitcore-button,
button.fitcore-button[disabled] {
  padding: 17px 26px !important;
}
@media only screen and (max-width: 768px) {
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button[disabled],
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button[disabled],
  .woocommerce button.fitcore-button,
  .woocommerce button.fitcore-button[disabled],
  .woocommerce .fitcore-button,
  .woocommerce .fitcore-button[disabled],
  .fitcore-button,
  .fitcore-button[disabled],
  button.fitcore-button,
  button.fitcore-button[disabled] {
    padding: 8px 6px !important;
  }
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--sm, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--sm[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--sm,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--sm[disabled],
.woocommerce button.fitcore-button--sm,
.woocommerce button.fitcore-button--sm[disabled],
.woocommerce .fitcore-button--sm,
.woocommerce .fitcore-button--sm[disabled],
.fitcore-button--sm,
.fitcore-button--sm[disabled],
button.fitcore-button--sm,
button.fitcore-button--sm[disabled] {
  padding: 8px 24px !important;
}
@media only screen and (max-width: 768px) {
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--sm, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--sm[disabled],
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--sm,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--sm[disabled],
  .woocommerce button.fitcore-button--sm,
  .woocommerce button.fitcore-button--sm[disabled],
  .woocommerce .fitcore-button--sm,
  .woocommerce .fitcore-button--sm[disabled],
  .fitcore-button--sm,
  .fitcore-button--sm[disabled],
  button.fitcore-button--sm,
  button.fitcore-button--sm[disabled] {
    padding: 4px 6px !important;
  }
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--lg, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--lg[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--lg,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--lg[disabled],
.woocommerce button.fitcore-button--lg,
.woocommerce button.fitcore-button--lg[disabled],
.woocommerce .fitcore-button--lg,
.woocommerce .fitcore-button--lg[disabled],
.fitcore-button--lg,
.fitcore-button--lg[disabled],
button.fitcore-button--lg,
button.fitcore-button--lg[disabled] {
  padding: 17px 26px !important;
}
@media only screen and (max-width: 768px) {
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--lg, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--lg[disabled],
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--lg,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--lg[disabled],
  .woocommerce button.fitcore-button--lg,
  .woocommerce button.fitcore-button--lg[disabled],
  .woocommerce .fitcore-button--lg,
  .woocommerce .fitcore-button--lg[disabled],
  .fitcore-button--lg,
  .fitcore-button--lg[disabled],
  button.fitcore-button--lg,
  button.fitcore-button--lg[disabled] {
    padding: 8px 6px !important;
  }
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--full, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button--full[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--full,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button--full[disabled],
.woocommerce button.fitcore-button--full,
.woocommerce button.fitcore-button--full[disabled],
.woocommerce .fitcore-button--full,
.woocommerce .fitcore-button--full[disabled],
.fitcore-button--full,
.fitcore-button--full[disabled],
button.fitcore-button--full,
button.fitcore-button--full[disabled] {
  width: 100%;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading,
.woocommerce button.fitcore-button.loading,
.woocommerce .fitcore-button.loading,
.fitcore-button.loading,
button.fitcore-button.loading {
  position: relative;
  opacity: 1 !important;
  overflow: hidden;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button.loading::before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::before,
.woocommerce button.fitcore-button.loading::before,
.woocommerce .fitcore-button.loading::before,
.fitcore-button.loading::before,
button.fitcore-button.loading::before {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button.loading:after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading:after,
.woocommerce button.fitcore-button.loading:after,
.woocommerce .fitcore-button.loading:after,
.fitcore-button.loading:after,
button.fitcore-button.loading:after {
  display: none !important;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce .button.loading .fitcore-loading-svg,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading .fitcore-loading-svg,
.woocommerce button.fitcore-button.loading .fitcore-loading-svg,
.woocommerce .fitcore-button.loading .fitcore-loading-svg,
.fitcore-button.loading .fitcore-loading-svg,
button.fitcore-button.loading .fitcore-loading-svg {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.fitcore-increment-input {
  display: flex;
  position: relative;
  padding: 0 !important;
  margin-bottom: 1rem;
}
.fitcore-increment-input input {
  height: 60px;
  font-size: 30px !important;
  padding-right: 80px !important;
  padding-left: 20px !important;
  text-align: left;
  direction: ltr;
  /* Hide arrows in Chrome, Safari, Edge (WebKit/Blink) */
  /* Hide arrows in Firefox */
  -moz-appearance: textfield;
}
.fitcore-increment-input input::-webkit-outer-spin-button, .fitcore-increment-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.fitcore-increment-input-btn {
  width: 60px;
  position: absolute;
  right: 2px;
  height: 28px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0 !important;
  border-left: 2px solid #ddd !important;
  color: #555;
  background: #f5f5f5;
  border-radius: 0;
}
.fitcore-increment-input-btn svg {
  width: 16px;
  height: 16px;
  fill: #000;
}
.fitcore-increment-input-plus {
  top: 2px;
  border-bottom: 2px solid #ddd !important;
}
.fitcore-increment-input-mines {
  bottom: 2px;
}

.fitcore-datepicker {
  position: relative;
  display: flex;
}
.fitcore-datepicker-popup {
  pointer-events: none;
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 15px 1px rgba(0, 0, 0, 0.1);
  z-index: 999;
  margin-top: 4px;
}
.fitcore-datepicker-popup.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.fitcore-datepicker-calender .datepicker-jalali {
  border-radius: 0;
  background: transparent;
  border: none;
}
.fitcore-datepicker-calender .datepicker-jalali td, .fitcore-datepicker-calender .datepicker-jalali th {
  padding: 0;
}
.fitcore-datepicker-calender .datepicker-jalali .datepicker-days .day,
.fitcore-datepicker-calender .datepicker-jalali .datepicker-month .month,
.fitcore-datepicker-calender .datepicker-jalali .datepicker-years .year {
  padding: 10px 0px;
  min-width: 45px;
}
.fitcore-datepicker-calender .datepicker-jalali .datepicker-days .day:not(.today):not(.pick),
.fitcore-datepicker-calender .datepicker-jalali .datepicker-month .month:not(.today):not(.pick),
.fitcore-datepicker-calender .datepicker-jalali .datepicker-years .year:not(.today):not(.pick) {
  background: transparent;
}
.fitcore-datepicker-calender .datepicker-jalali .datepicker-days .day {
  min-width: 45px;
}
.fitcore-datepicker-calender .datepicker-jalali .datepicker-years .year {
  min-width: 100px;
}
.fitcore-datepicker-calender .datepicker-jalali .datepicker-month .month {
  min-width: 100px;
}
.fitcore-datepicker-placeholder-input {
  cursor: pointer;
  width: 100%;
}
.fitcore-datepicker-main-input {
  display: none !important;
}

.fitcore-file-input {
  display: none;
}
.fitcore-file-placeholder {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  border: 2px dashed #ddd;
  padding: 1.5rem 0.5rem !important;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  margin: 0 !important;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: normal !important;
  gap: 4px;
}
.fitcore-file-placeholder.dragging {
  border-style: dashed;
  border-color: #d1d5db;
}
.fitcore-file-placeholder-selected {
  margin: 0 !important;
  max-width: 80%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: ltr;
}
.fitcore-file-placeholder:hover {
  border-color: var(--fit-global-primary-color);
}
.fitcore-file-placeholder svg {
  width: 16px;
  height: 16px;
  margin-bottom: 8px;
}
.fitcore-file-placeholder p {
  margin: 0 !important;
}

@media only screen and (max-width: 768px) {
  .attendance {
    overflow-x: auto;
    white-space: nowrap;
  }
}
.attendance table.app-table {
  min-width: 100%;
  border-width: 1px !important;
  border-color: #e1e1e1 !important;
  border-style: solid !important;
}
.attendance table.app-table td, .attendance table.app-table th {
  border-width: 0px 0px 1px 1px !important;
  border-color: #e1e1e1 !important;
  border-style: solid !important;
  width: 14.2857142857%;
  min-width: 14.2857142857%;
  max-width: 14.2857142857%;
}
.attendance table.app-table td:first-child, .attendance table.app-table th:first-child {
  border-left-width: 0 !important;
}
.attendance table.app-table tr:last-child td, .attendance table.app-table tr:last-child th {
  border-bottom-width: 0 !important;
}
@media only screen and (max-width: 768px) {
  .attendance table.app-table td {
    font-size: 12px;
    padding: 6px 4px;
  }
}
@media only screen and (max-width: 768px) {
  .attendance table.app-table td.month {
    font-size: 11px;
    padding: 8px 5px;
  }
}

.woocommerce-account.woocommerce-page #main .container {
  padding: 0;
}

@media only screen and (max-width: 990px) {
  .woocommerce .woocommerce-MyAccount-navigation {
    margin-left: 20px !important;
  }
}

@media only screen and (max-width: 1020px) {
  .attendance table td {
    padding-right: 6px;
    padding-left: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .attendance table td {
    padding-right: 3px;
    padding-left: 3px;
  }
}
@media only screen and (max-width: 480px) {
  .attendance table td {
    padding-right: 2px;
    padding-left: 2px;
  }
}

.app-noresult {
  margin: 2rem 0;
}

.head_wpyar_tickt .wpyar-ticket {
  background-color: #881a1c;
  color: #fff !important;
}
.head_wpyar_tickt .wpyar-ticket:hover {
  color: #fff !important;
}

.top_box_back_rep a {
  background-color: #881a1c;
  color: #fff !important;
}
.top_box_back_rep a:hover {
  color: #fff !important;
}

.col_box_status_ticket_wpyar,
.col_box_status_ticket_wpyar .title,
.col_box_status_ticket_wpyar .number,
.box_info_ticket,
.box_info_ticket .title {
  font-weight: normal;
}

.col_box_status_ticket_wpyar:hover {
  color: #fff !important;
}

.woocommerce .app-dashboard-stats {
  margin-top: 2rem;
}
.woocommerce .app-dashboard-stats-group {
  margin-bottom: 1.5rem;
}
.woocommerce .app-dashboard-stats-group-title {
  font-size: 1.2rem;
  font-weight: bold !important;
  margin-bottom: 0.8rem;
}
.woocommerce .app-dashboard-stats-items {
  display: flex;
  background: #f2f2f2;
  padding: 18px 0;
  justify-content: flex-start;
  white-space: nowrap;
  overflow-x: auto;
}
.woocommerce .app-dashboard-stats-item {
  display: flex;
  align-items: center;
  padding: 0 35px;
}
@media only screen and (max-width: 1120px) {
  .woocommerce .app-dashboard-stats-item {
    padding: 0 16px;
  }
}
.woocommerce .app-dashboard-stats-item:first-child {
  padding-right: 20px;
}
.woocommerce .app-dashboard-stats-item:last-child {
  padding-left: 20px;
}
.woocommerce .app-dashboard-stats-item-title {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}
.woocommerce .app-dashboard-stats-item-num {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 6px 0 4px;
  color: var(--fit-global-primary-color);
}
.woocommerce .app-dashboard-stats-item-suffix {
  font-size: 0.8rem;
}
.woocommerce .app-dashboard-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .woocommerce .app-dashboard-links {
    gap: 4px;
  }
}
.woocommerce .app-dashboard-links-item {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 20px;
}
@media only screen and (max-width: 768px) {
  .woocommerce .app-dashboard-links-item {
    padding: 20px 12px;
  }
}
.woocommerce .app-dashboard-links-item, .woocommerce .app-dashboard-links-item h3 {
  color: #fff;
}
.woocommerce .app-dashboard-links-item:hover, .woocommerce .app-dashboard-links-item h3:hover {
  color: #fff;
}
.woocommerce .app-dashboard-links-item:nth-child(1) {
  background: #FFDB58;
  color: #000;
}
.woocommerce .app-dashboard-links-item:nth-child(1), .woocommerce .app-dashboard-links-item:nth-child(1) h3 {
  color: #000;
}
.woocommerce .app-dashboard-links-item:nth-child(1):hover, .woocommerce .app-dashboard-links-item:nth-child(1) h3:hover {
  color: #000;
}
.woocommerce .app-dashboard-links-item:nth-child(2) {
  background: #008b8b;
}
.woocommerce .app-dashboard-links-item:nth-child(3) {
  background: #b02b2c;
}
.woocommerce .app-dashboard-links-item:nth-child(4) {
  background: #745f7e;
}
.woocommerce .app-dashboard-links-item:nth-child(5) {
  background: #0693e3;
}
.woocommerce .app-dashboard-links-item:nth-child(6) {
  background: #2e8b57;
}
.woocommerce .app-dashboard-links-item:nth-child(7) {
  background: #444444;
}
.woocommerce .app-dashboard-links-item-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .woocommerce .app-dashboard-links-item-title {
    font-size: 1.1rem;
  }
}
.woocommerce .app-dashboard-links-item-subtitle {
  margin-top: 4px;
  font-size: 0.9rem;
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .woocommerce .app-dashboard-links-item-subtitle {
    margin-top: 6px;
    font-size: 0.7rem;
    line-height: 1.4;
  }
}

.app-image-upload {
  max-width: 100%;
  overflow: hidden;
}
.app-image-upload-img {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.app-image-upload-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-image-upload-img-remove {
  display: block;
  right: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  cursor: pointer;
  font-weight: bold;
  padding: 6px 4px;
}

.app-alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  position: relative;
  direction: rtl; /* Add this line to set the direction to RTL */
}
.app-alert.error {
  background-color: #f44336;
}
.app-alert.notice {
  background-color: #ff9800;
}
.app-alert.info {
  background-color: #2196f3;
}
.app-alert .close-btn {
  position: absolute;
  top: 0;
  left: 0; /* Change right to left for the close button */
  padding: 15px;
  cursor: pointer;
}

.fitcore-invoice-details {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}
.fitcore-invoice-details li {
  margin-top: 2px;
  margin-bottom: 0;
}
.fitcore-invoice-details li:first-child {
  margin-top: 0;
}

.attachment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.attachment-link svg, .attachment-link img {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.attachment-link strong {
  display: inline-block;
  font-weight: bold;
}

body .woocommerce form.login, body .woocommerce form.checkout_coupon, body .woocommerce form.register {
  text-align: right;
}

.site-branding.ast-site-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

body .woocommerce-MyAccount-navigation-link {
  border-color: #ddd !important;
}
@media only screen and (max-width: 990px) {
  body .woocommerce-MyAccount-navigation-link {
    border-bottom-width: 1px !important;
  }
}
body .woocommerce-MyAccount-navigation-link:hover a, body .woocommerce-MyAccount-navigation-link.is-active a {
  background: var(--fit-global-primary-color) !important;
  color: #fff !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 200px !important;
  margin-left: 30px !important;
}
@media only screen and (max-width: 920px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    margin-bottom: 2rem !important;
    margin-left: 0 !important;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation > ul {
  padding: 0;
}
@media only screen and (max-width: 920px) {
  .woocommerce-account .woocommerce-MyAccount-navigation > ul {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% - 230px) !important;
}
@media only screen and (max-width: 920px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
  }
}
.woocommerce-account .app-user-photo {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  flex-direction: column;
  border: 1px solid #ddd;
}
.woocommerce-account .app-user-photo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.woocommerce-account .app-user-photo strong {
  color: #000 !important;
}
.woocommerce-account .app-user-photo a {
  font-size: 0.8rem;
}
.woocommerce-account .app-user-photo img {
  border-radius: 50%;
  margin-bottom: 6px;
}

.user-courses {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.user-courses-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.user-courses-tabs-item {
  border: 1px solid var(--fit-global-primary-color);
  background: #fff;
  color: var(--fit-global-primary-color);
  padding: 2px 8px;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
  font-size: 1rem;
}
.user-courses-tabs-item:focus:not(.is-disabled), .user-courses-tabs-item:hover:not(.is-disabled) {
  background: var(--fit-global-primary-color);
  color: #fff;
  border-color: transparent;
}
.user-courses-tabs-item.is-active {
  border-color: transparent;
  background: var(--fit-global-primary-color);
  color: #fff;
}
.user-courses-tabs-item.is-disabled {
  cursor: not-allowed;
  filter: grayscale(20);
}
.user-courses-tabs-item.is-disabled:focus, .user-courses-tabs-item.is-disabled:hover {
  background: #fff;
  color: var(--fit-global-primary-color);
  border-color: var(--fit-global-primary-color);
}
.user-courses .course-card {
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.1s;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.user-courses .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.user-courses .course-card .course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  border-top: 4px solid;
  padding: 20px;
  background: #fff;
}
.user-courses .course-card .course-header .course-subtitle {
  font-size: 0.8rem;
  font-weight: normal;
  color: #000;
}
.user-courses .course-card .course-header .course-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
}
.user-courses .course-card .course-header .course-status {
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0 8px;
  border-radius: 8px;
}
.user-courses .course-card .course-header .course-status.is-active {
  background-color: rgb(3, 187, 59);
  color: #ffffff;
}
.user-courses .course-card .course-header .course-status.is-inactive {
  background-color: rgb(251, 82, 82);
  color: #ffffff;
}
.user-courses .course-card .course-header .course-status.is-noclass {
  background-color: #b00020;
  color: #ffffff;
}
.user-courses .course-card .course-header .course-status.is-expired {
  background-color: #b00020;
  color: #ffffff;
}
.user-courses .course-card .course-body {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  border-radius: 0 0 8px 8px;
}
.user-courses .course-card .course-body:not(:last-child) {
  border-radius: 0;
}
.user-courses .course-card .course-body .course-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 8px 20px;
}
.user-courses .course-card .course-body .course-row:last-child {
  border-bottom: none;
}
.user-courses .course-card .course-body .course-row .label {
  font-weight: 500;
  font-size: 0.9rem;
}
.user-courses .course-card .course-body .course-row .value {
  font-weight: 600;
  font-size: 1rem;
}
.user-courses .course-card .course-actions {
  border-radius: 0 0 8px 8px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.user-courses .course-card .course-actions-text {
  margin-bottom: 10px;
  display: block;
  font-size: 1rem;
  color: #555;
}
.user-courses .course-card .course-action-text {
  color: #000;
  margin-bottom: 0;
}
.user-courses .course-card--simple .course-header {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1px;
}
