.page-template-template-faq .faqs-content {
    margin-top: 54px;
    direction: rtl;
}
.accordion-content {
    display: none;
}
.faqs-item {
    position: relative;
    margin-bottom: 1rem;
    border-bottom: 1px solid #D5D9DE;
    padding-bottom: 1rem;
}
.faqs-item:nth-last-child(1) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.faqs-item:before {
    content: "\e902";
    font-family: 'icomoon';
    position: absolute;
    top: 27px;
    left: clamp(8px, 2vw, 22px);
    right: auto;
    transition: 0.4s;
    line-height: 1;
    font-size: 12px;
    width: clamp(24px, 2vw, 32px);
    height: clamp(24px, 2vw, 32px);
    background: #EAEDF3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faqs-item.active:before {
    content: "\e915";
    background: var(--color1);
    color: white;
}
.faqs-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(14px, 2vw, 16px);
    padding-block: clamp(8px, 2vw, 16px);
    cursor: pointer;
    position: relative;
    padding-inline: clamp(8px, 2vw, 22px);
    text-align: right;
}
/*.faqs-item .faqs-question:after {
    content: "\e93a";
    font-family: 'icomoon';
    position: absolute;
    right: 0;
    left: auto;
    color: var(--color2);
    transition: 0.4s;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faqs-item.active .faqs-question:after {
    transform: rotateX(180deg);
    color: var(--color1);
}*/
.faq-num {
    font-size: 24px;
    font-family: var(--en);
    color: var(--color2);
    transition: 0.4s;
}
.faqs-answer {
    padding-bottom: clamp(10px, 3vw, 32px);
    padding-right: clamp(8px, 5vw, 65px);
    padding-left: clamp(8px, 2vw, 22px);
    text-align: right;
}
.faqs-answer p {
    margin: 0 !important;
    text-align: right !important;
    color: #767E8B !important;
}
.faqs-item:hover .faq-num,
.faqs-item.active .faq-num {
    color: var(--color1);
}
.sw.faq-wrapper .swiper-faq {
    position: relative;
    background: var(--color3);
    padding-inline: clamp(0px, 4vw, 55px);
    direction: rtl;
}
.sw.faq-wrapper .swiper-faq:before {
    content: "";
    width: 22px;
    height: 22px;
    background: white;
    position: absolute;
    left: -11px;
    right: auto;
    top: -11px;
    transform: rotate(45deg);
}
.sw.faq-wrapper .swiper-faq:after {
    content: "";
    width: 22px;
    height: 22px;
    background: white;
    position: absolute;
    right: -11px;
    left: auto;
    top: -11px;
    transform: rotate(45deg);
}
.faq-wrapper .swiper-pagination {
    bottom: -2rem;
}
.empty-error {
    background: var(--danger);
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: white;
    width: 100%;
}
.empty-loading {
    background: green;
}
.faq-cat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.4s;
    color: white;
    height: 80px;
    position: relative;
    text-align: center;
}
.faq-cat.active:before {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    position: absolute;
    top: -6px;
    transform: rotate(45deg);
}
.faq-cat.active:after {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    position: absolute;
    bottom: -6px;
    transform: rotate(45deg);
}
.faq-cat:hover,
.faq-cat.active {
    color: var(--color1);
}
.faqs-answer p,
.faqs-question p {
    font-size: clamp(14px, 2vw, 16px) !important;
}
.faqs-question p {
    padding-left: 2rem;
    padding-right: 0;
}
@media only screen and (max-width: 768px) {
    .faqs-answer {
        padding-inline: 12px;
        padding-bottom: 16px;
    }
    .faqs-item:before {
        top: 9px;
        left: 12px;
        right: auto;
    }
    .faqs-question p {
        padding-left: 1.5rem;
        padding-right: 0;
    }
}