﻿.sys_faqs {
    padding-left: 16px;
    padding-right: 16px;
    margin: 48px auto 0 auto;
}

.sys_faq-heading h2 {
    font-size: 1.75rem;
    margin-bottom: 1.7em;
}

.sys_faq-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.sys_faq-item {
    min-height: 69px;
    background: #F5F5F5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sys_faq-item button {
    color: #333;
}

.sys_faq-question, .sys_faq-answer {
    text-align: left;
    padding: 12px 20px;
}

.sys_faq-question, .sys_faq-answer p:last-child {
    margin: 0;
    font-size: 1.2rem;
}

.sys_faq-question {
    border: none;
    border-radius: 8px;
    background: #f5f5f5;
    font-family: Arial, Arial, Helvetica, sans-serif;
    cursor: pointer;
    line-height: 1.8rem;
}

.sys_faq-question:focus-visible {
    outline: 2px solid #0074c8;
    outline-offset: 2px;
  }

.sys_faq-question span {
    padding-right: 56px;
    background: url('../png/button-plus.png') no-repeat center right;
    min-height: 45px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.sys_faq-question.sys_open span {
    background: url('../png/button-minus.png') no-repeat center right;
}

.sys_faq-answer { 
    display: none;
}

section .sys_faq-answer h4 {
    font-size: 1.2rem;
}

@media (min-width: 768px) { 
    .sys_faqs {
        max-width: 754px;
    }
}