.jadog-faq {
    margin: 30px 0;
    clear: both;
}
.jadog-faq__title {
    font-size: 2.2rem;
    font-weight: 300;
    margin: 0 0 15px;
}
.jadog-faq__item {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #fff;
}
.jadog-faq__q {
    position: relative;
    cursor: pointer;
    padding: 14px 44px 14px 16px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #333;
    -webkit-user-select: none;
    user-select: none;
    transition: background-color .15s ease;
    outline: none;
}
.jadog-faq__q:hover,
.jadog-faq__q:focus {
    background: #f5f5f5;
}
.jadog-faq__q:after {
    content: "\002B";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    color: #999;
    transition: transform .15s ease;
}
.jadog-faq__item._active > .jadog-faq__q:after {
    content: "\2212";
    color: #1979c3;
}
.jadog-faq__a {
    padding: 0 16px 16px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #f0f0f0;
}
.jadog-faq__a p {
    margin: 12px 0 0;
}
