.accbody {
    max-height: 0;
    overflow: auto;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out,
        opacity 0.3s ease-out;
    margin: 0;
}

.accbody p {
    margin: 0;
    color: var(--color-text-secondary);
}

.accordian .accbody {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out,
        padding 0.3s ease-out;
}

.faqs-block .active .accbody {
    max-height: 1000px;
    opacity: 1;
    padding: 15px 20px;
    transition: max-height 0.3s ease-in, padding 0.3s ease-in,
        opacity 0.3s ease-in;
}

.faqs-block > div {
    margin-bottom: 15px;
    box-shadow: 4px 4px 24px #1f48731a;
    border: solid 1px #ebebeb;
}

.accheader {
    cursor: pointer;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

.accordian.active .accheader {
    border-bottom: solid 2px var(--brand-sky-blue-color-500);
}

.accheader::after {
    content: "";
    background: url("../../icons/expand_more-search.svg") no-repeat;
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    top: 32%;
    transition: transform 0.3s ease;
}

.active .accheader::after {
    transform: rotate(-180deg);
}

.accheader h4,
.accheader h3 {
    font-size: 16px;
    color: var(--color-text-primary);
    font-weight: 600;
    margin: 0;
    font-family: var(--font-primary);
}

.accordian.active .accbody {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
}

.accordian .accheader div {
    width: calc(100% - 24px);
}

.faqs-block a {
    color: var(--link-color);
}

.hidden-faq {
    display: none;
}

.view-more-cta {
    display: block;
    padding: 0 25px 0 0;
    background: transparent;
    color: var(--color-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    width: 100%;
    text-align: right;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
}

.view-more-cta::after {
    content: "";
    position: absolute;
    background: url("../../icons/arrow-right-sharp.svg") no-repeat;
    width: 20px;
    height: 20px;
    background-size: 100%;
    top: 0;
    right: 0;
}

.view-more-cta:hover,
.view-more-cta:focus {
    color: var(--color-primary);
}

.faqs-block-wrapper .accordian p {
    margin-bottom: 0;
}

.section.align-center.faqs-block-container .default-content-wrapper h2{
    font-size: var(--f-s-sub-title);
    text-align: center;
}

.faqs-block-wrapper .accheader p strong {
    font-weight: 500;
}

.faqs-block-wrapper .accordian p strong,
.faqs-block-wrapper .accordian h3 strong,
.faqs-block-wrapper .accordian li strong {
    font-weight: 600;    
}

.faqs-block .accbody p,
.faqs-block .accbody li {
    font-size: 16px;
}

.faqs-block .accordian.active .accbody ul,
.faqs-block .accordian.active .accbody ol,
.faqs-block .accordian.active .accbody li{
    margin-top: 10px;
}


@media (width <= 768px) {
    .faqs-block .accheader h4,
    .faqs-block .accheader h3,
    .faqs-block .accbody p,
    .faqs-block .accbody li  {
        font-size: 14px;
    }

    
}
