/*!********************************************************************************************************************!*\
  !*** 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;
}

#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: 150%;
  margin: 0 0 15px;
}

.app-modal-header .app-modal-close {
  color: #aaa;
  line-height: 70px;
  font-size: 80%;
  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-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-title {
  margin-top: 2rem;
  margin-bottom: 3rem !important;
}

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;
}

.fitcore-button, .fitcore-button[disabled] {
  padding: 17px 26px !important;
}
.fitcore-button--full {
  width: 100%;
}

@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;
}
.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;
}

.attachment-link {
  display: inline-flex;
  align-items: center;
}
.attachment-link svg, .attachment-link img {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #eee;
}
.attachment-link strong {
  display: inline-block;
  margin-right: 6px;
  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;
}
