.elementor-1190 .elementor-element.elementor-element-8520208{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-1190 .elementor-element.elementor-element-e07dbd0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-895e7e4 *//* تنظیمات عمومی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* تنظیمات برای صفحه */
body, html {
    min-height: 100vh;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

/* استایل منوی تب */
.tab-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    flex-wrap: wrap; /* برای ریسپانسیو */
}

.tab-item {
    margin: 0 15px;
    padding: 10px 20px;
    color: white;
    background-color: #555;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.tab-item:hover {
    background-color: #777;
}

/* محتوای اصلی */
#content {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

/* انیمیشن لودینگ */
#loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #555;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* تنظیمات واکنش‌گرا */
@media (max-width: 768px) {
    /* منوی تب */
    .tab-menu {
        flex-direction: column;
    }
    
    .tab-item {
        padding: 8px 15px;
        font-size: 14px;
        margin: 5px 0;
    }
    
    /* محتوای اصلی */
    #content {
        padding: 15px;
        margin: 10px;
        max-width: 95%;
    }
    
    /* لودینگ */
    #loading-spinner {
        width: 40px;
        height: 40px;
    }
}

/* تنظیمات برای نمایش در موبایل */
@media (max-width: 480px) {
    .tab-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    #content {
        padding: 10px;
        margin: 5px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b794857 *//* From Uiverse.io by JaydipPrajapati1910 */
.button {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  gap: 10px;
  padding: 0px 15px;
  background: rgba(255, 255, 255, 0.1); /* شفافیت پس‌زمینه */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* حاشیه شفاف */
  color: white;
  position: relative;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  transition-duration: 0.2s;
  backdrop-filter: blur(10px); /* ایجاد افکت شیشه‌ای */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* سایه شیشه‌ای */
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); /* گرادیان شفاف */
}

.button:before, .button:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 15px;
  background: linear-gradient(45deg, rgba(19, 237, 28, 0.5), rgba(0, 0, 255, 0.5)); /* گرادیان شامل رنگ #13ed1c */
  background-size: 300%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 15s linear infinite;
  margin: auto;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.button:after {
  filter: blur(10px);
}

.button:hover {
  background: #13ed1c; /* تغییر رنگ پس‌زمینه به #13ed1c در حالت هاور */
  color: white;
  border: 1px solid #13ed1c; /* تغییر رنگ حاشیه در حالت هاور */
}

/* تنظیمات برای گوشی‌ها */
@media (max-width: 768px) {
  .button {
    width: 200px; /* طول بیشتر برای گوشی */
    height: 50px; /* عرض بیشتر برای گوشی */
    font-size: 16px; /* اندازه فونت بزرگ‌تر */
    margin: auto;
  }
}
/* سایز آیکون‌ها در نمایشگرهای بزرگ‌تر */
.btn i {
    font-size: 30px; /* سایز آیکون‌ها در حالت عادی */
}

/* سایز آیکون‌ها برای گوشی‌ها و نمایشگرهای کوچک‌تر */
@media (max-width: 768px) {
    .btn i {
        font-size: 20px; /* سایز کوچک‌تر آیکون برای موبایل */
    }
}

.tab-content {
    display: none;
}

.active {
    display: block;
}/* End custom CSS */