.elementor-13147 .elementor-element.elementor-element-19ac9c5{--display:flex;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-13147 .elementor-element.elementor-element-76e4e7c > .elementor-widget-container{padding:0px 50px 0px 50px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for shortcode, class: .elementor-element-76e4e7c *//* پایه‌های طراحی لوکس */
:root {
  --primary-color: #4361ee;
  --primary-hover: #3a56d4;
  --primary-light: #eef2ff;
  --secondary-color: #6c757d;
  --secondary-light: #f8f9fa;
  --success-color: #4cc9a0;
  --danger-color: #f72585;
  --warning-color: #ffbe0b;
  --info-color: #4895ef;
  --dark-color: #2b2d42;
  --light-color: #f8f9fa;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-effect: backdrop-filter: blur(12px) saturate(180%);
}

/* فونت زیبا و مدرن */
@import url('https://fonts.googleapis.com/css2?family=IRANSansX:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'IRANSansX', sans-serif;
  direction: rtl;
  color: var(--dark-color);
  line-height: 1.7;
  background-color: #f5f7ff;
  background-image: 
    radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.2) 0px, transparent 50%);
}

/* استایل شیشه‌ای برای بخش‌ها */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

/* بخش احراز هویت - طراحی لوکس */
.wpsc-auth-container {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 20px;
  perspective: 1000px;
}

.auth-inner-container {
  @extend .glass-panel;
  padding: 40px;
  transform-style: preserve-3d;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.auth-inner-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 65%, 
    rgba(67, 97, 238, 0.1) 100%);
  transform: rotate(30deg);
  z-index: -1;
}

.auth-inner-container:hover {
  transform: translateY(-5px) rotateX(1deg) rotateY(-1deg);
  box-shadow: var(--box-shadow-hover);
}

.auth-inner-container h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px !important;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.auth-inner-container h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--info-color));
  border-radius: 3px;
}

.wpsc-login input[type="text"],
.wpsc-login input[type="password"] {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.wpsc-login input[type="text"]:focus,
.wpsc-login input[type="password"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2), 
              inset 0 1px 3px rgba(0, 0, 0, 0.05);
  outline: none;
  background-color: white;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.checkbox-container input[type="checkbox"] {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  appearance: none;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox-container label {
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  color: var(--dark-color);
}

.wpsc-button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.wpsc-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: all 0.6s ease;
}

.wpsc-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.wpsc-button:hover::before {
  left: 100%;
}

.wpsc-button:active {
  transform: translateY(0);
}

.auth-links {
  margin-top: 25px;
  text-align: center;
}

.wpsc-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.wpsc-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.wpsc-link:hover {
  color: var(--primary-hover);
}

.wpsc-link:hover::after {
  width: 100%;
  left: 0;
}

/* استایل فوق‌العاده برای پنل تیکت */
#wpsc-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
}

.wpsc-shortcode-container {
  @extend .glass-panel;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.wpsc-shortcode-container:hover {
  box-shadow: var(--box-shadow-hover);
}

.wpsc-header {
  display: flex;
  background: linear-gradient(135deg, var(--primary-color), #5e35b1);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.wpsc-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  animation: shine 6s infinite linear;
}

@keyframes shine {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(100%, 100%) rotate(360deg); }
}

.wpsc-menu-list {
  padding: 18px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
  position: relative;
  font-weight: 500;
  z-index: 1;
}

.wpsc-menu-list svg {
  width: 22px;
  height: 22px;
  margin-left: 12px;
  transition: var(--transition);
}

.wpsc-menu-list:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.wpsc-menu-list:hover svg {
  transform: scale(1.1);
}

.wpsc-menu-list.active {
  background-color: rgba(255, 255, 255, 0.25);
}

.wpsc-menu-list.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 100%);
  box-shadow: 0 2px 8px rgba(250, 208, 196, 0.6);
}

.wpsc-body {
  padding: 30px;
}

.wpsc-filter {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpsc-search {
  position: relative;
}

.search-field {
  display: flex;
  align-items: center;
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 20px;
  color: var(--secondary-color);
  width: 18px;
  transition: var(--transition);
}

.wpsc-search-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}

.wpsc-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2), 
              inset 0 1px 4px rgba(0, 0, 0, 0.05);
  outline: none;
  background-color: white;
}

.wpsc-search-input:focus + svg {
  color: var(--primary-color);
  transform: scale(1.1);
}

.wpsc-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.wpsc-filter-item {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex-grow: 1;
}

.wpsc-filter-item label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--dark-color);
  font-weight: 500;
}

.wpsc-input-filter,
.wpsc-input-sort-by,
.wpsc-input-sort-order {
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 12px;
  padding-right: 15px;
}

.wpsc-input-filter:focus,
.wpsc-input-sort-by:focus,
.wpsc-input-sort-order:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
  outline: none;
  background-color: white;
}

.wpsc-filter-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.wpsc-button.normal {
  padding: 14px 28px;
  width: auto;
  border-radius: var(--border-radius-sm);
}

.wpsc-button.secondary {
  background: linear-gradient(135deg, var(--secondary-color), #5c636a);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.wpsc-button.secondary:hover {
  background: linear-gradient(135deg, #5c636a, var(--secondary-color));
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.wpsc-tickets-container {
  background-color: white;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.wpsc-tickets-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--info-color));
}

.wpsc-bulk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--secondary-light);
}

.wpsc-ticket-pagination-header,
.wpsc-ticket-pagination-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 18px;
  background-color: var(--secondary-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wpsc-pagination-btn {
  cursor: pointer;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

.wpsc-pagination-btn:hover {
  color: white;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
  transform: translateY(-2px);
}

.wpsc-pagination-btn svg {
  width: 14px;
  transition: var(--transition);
}

.wpsc-pagination-btn:hover svg {
  transform: scale(1.2);
}

.wpsc-pagination-txt {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.wpsc-ticket-list-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.wpsc-ticket-list-tbl th {
  background-color: var(--primary-light);
  padding: 16px 20px;
  text-align: right;
  font-weight: 600;
  color: var(--dark-color);
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.wpsc-ticket-list-tbl th:first-child {
  border-top-right-radius: var(--border-radius-sm);
}

.wpsc-ticket-list-tbl th:last-child {
  border-top-left-radius: var(--border-radius-sm);
}

.wpsc-ticket-list-tbl td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  background-color: white;
}

.wpsc-ticket-list-tbl tr:last-child td {
  border-bottom: none;
}

.wpsc-ticket-list-tbl tr:hover td {
  background-color: var(--primary-light);
  transform: scale(1.005);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.wpsc-ticket-list-tbl tr.wpsc_tl_tr {
  cursor: pointer;
  position: relative;
}

.wpsc-ticket-list-tbl tr.wpsc_tl_tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--info-color));
  opacity: 0;
  transition: var(--transition);
}

.wpsc-ticket-list-tbl tr.wpsc_tl_tr:hover::after {
  opacity: 1;
}

.wpsc-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* استایل‌های مختلف برای تگ‌ها */
.wpsc-tag[style*="background-color: #ffe7e1"] {
  background: linear-gradient(135deg, #ffe7e1, #ffc9c9) !important;
  color: #d90429 !important;
  border-left: 3px solid #d90429;
}

/* استایل پاپ آور منو - طراحی لوکس */
.gpopover {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wpsc-popover-menu-item {
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  color: var(--dark-color);
}

.wpsc-popover-menu-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding-right: 28px;
}

.wpsc-popover-menu-item svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.wpsc-popover-menu-item:hover svg {
  transform: rotate(5deg) scale(1.1);
  color: var(--primary-color);
}

.gpopover-arrow {
  display: none;
}

/* استایل برای موبایل */
@media (max-width: 992px) {
  .wpsc-filter-container {
    flex-direction: column;
  }
  
  .wpsc-filter-item {
    width: 100%;
  }
  
  .wpsc-menu-list {
    padding: 15px 20px;
    flex-grow: 1;
    justify-content: center;
  }
  
  .wpsc-menu-list label {
    font-size: 0.9rem;
  }
  
  .wpsc-ticket-list-tbl {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .wpsc-header.wpsc-hidden-xs {
    display: none;
  }
  
  .wpsc-header.wpsc-visible-xs {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .wpsc-humbargar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: white;
  }
  
  .wpsc-humbargar-title svg {
    width: 20px;
    height: 20px;
  }
  
  .wpsc-humbargar svg {
    width: 20px;
    height: 20px;
    color: white;
  }
}

/* انیمیشن‌های خاص */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wpsc-shortcode-container {
  animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.wpsc-button {
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* استایل اسکرول بار سفارشی */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--info-color));
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* افکت‌های ویژه برای المان‌های مهم */
.wpsc-menu-list.active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* استایل برای وضعیت‌های مختلف تیکت */
.wpsc-tag[style*="background-color: #ffe7e1"] {
  position: relative;
  overflow: hidden;
}

.wpsc-tag[style*="background-color: #ffe7e1"]::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 45%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 55%
  );
  animation: shineTag 3s infinite;
}

@keyframes shineTag {
  0% { transform: translate(-30%, -30%) rotate(0deg); }
  100% { transform: translate(30%, 30%) rotate(360deg); }
}/* End custom CSS */