.faqs-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* این خط کد برای وسط چین کردن دکمه و دیگر المان‌ها عمودی استفاده می‌شود */
    text-align: center; /* این خط کد برای وسط چین کردن متن دکمه استفاده می‌شود */
}


#ticketa-faqs-list button{
    margin: 14px auto !important;
}

#ticketa-faqs-list .graybox {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 12px;
}

#ticketa-faqs-list .sectiontitle h4{
    margin: 0 !important;
}


#ticketa-faqs-list .mt-4 {
    margin-top: 40px;
}
#ticketa-faqs-list .margin-h {
    margin-top: 16px;
    margin-bottom: 16px;
}
#ticketa-faqs-list .faq-section details {
    cursor: pointer;
    background-color: #eee;
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 10px;
}

#ticketa-faqs-list .faq-section summary:focus-visible {
    outline: 2px solid orange;
    outline-offset: 8px;
    border-radius: 4px;

}

#ticketa-faqs-list summary {
    list-style: none
}

#ticketa-faqs-list summary::-webkit-details-marker {
    display: none;
}

#ticketa-faqs-list .faq-section summary {
    font-size: 14px;
    color: #444;
    display: flex;
    justify-item: space-between;
    align-items: center;
    padding: 3px;
}

#ticketa-faqs-list .faq-section h4:before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #C9252B;
    border-radius: 100%;
    margin: 0 3px 0 6px;
}

#ticketa-faqs-list .faq-section summary::marker {
    display: none;
    content: "";
}

#ticketa-faqs-list .faq-section summary h4 {
    width: 100%;
    margin: 0 !important;
    line-height: 26px;
    font-size: 14px;
}

#ticketa-faqs-list .faq-section summary .icon-drop1 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-left: 6px;
}

#ticketa-faqs-list .faq-section summary .icon-drop1::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#ticketa-faqs-list .faq-section details>p {
    color: #6e6e6e;
    font-size: 13px;
    margin-top: 10px;
}

.ticketa-spinner .spinner {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 4px solid #ccc;
    border-top: 4px solid #3498db;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ticketa-spinner {
    width: 100%;
    text-align: center;
    display: table;
}