.adt-shortcode-faq {
    position: relative;
    z-index: 1;
}

.adt-shortcode-faq .categories {
    list-style: none;
}

.adt-shortcode-faq .categories li {
    position: relative;
    font-size: 14px;
    line-height: 1em;
    color: #464646;
    margin-bottom: 23px;
    cursor: pointer;
}

.adt-shortcode-faq .categories li:before {
    display: inline-block;
    width: 36px;
    height: 0;
    margin-right: 12px;
    content: "";
}

.adt-shortcode-faq .categories li.active:before {
    background-color: #245FA4;
    height: 3px;
    vertical-align: middle;
}

.adt-shortcode-faq .categories li:hover:not(.active):before {
    background-color: #C0C0C0;
    height: 3px;
    vertical-align: middle;
}

.adt-shortcode-faq .help {
    background-color: #245FA4;
    border-radius: 6px;
    padding: 9px 20px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.adt-shortcode-faq .help .link {
    font-family: 'BentonSansBold', sans-serif;
    font-weight: 700;
    color: #56B9E5;
}

.adt-shortcode-faq .help .link a {
    color: inherit;
    text-decoration: none;
}

.adt-shortcode-faq .faq-item {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 6px;
    padding: 13px 13px 25px 13px;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-bottom: 15px;
    cursor: pointer;
}

.adt-shortcode-faq .faq-item .icon {
    position: absolute;
    right: 15px;
    top: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 10px;
    height: 10px;
}

.adt-shortcode-faq .faq-item:not(.opened) .icon {
    background-image: url('../assets/images/faq-open.svg');
}

.adt-shortcode-faq .faq-item.opened .icon {
    background-image: url('../assets/images/faq-close.svg');
}

.adt-shortcode-faq .faq-item:not(.opened) .content {
    display: none;
}

.adt-shortcode-faq .faq-item h4 {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding-right: 30px;
}

.adt-shortcode-faq .faq-item .content {
    margin-top: 15px;
}

.adt-shortcode-faq .faq-item .content p:last-child {
    margin-bottom: 0;
}