#veo-faqs-container {
    background: #f6f6f6;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

#veo-faqs-container > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

#veo-faqs-container > div > h3 {
    font-weight: bold;
    margin-bottom: 2em;
    font-size: 1.5em;
}

#veo-faqs-text p {
    max-width: 400px;
}

#veo-faqs-container details {
    margin-bottom: 20px;
}

#veo-faqs-container details:focus,
#veo-faqs-container summary:focus {
    outline: none;
}

#veo-faqs-container details > summary {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#veo-faqs-container summary::-webkit-details-marker {
    display: none
}

#veo-faqs-container summary::after {
    content: '';
    display: inline-block;
    width: 16px;
    min-width: 16px;
    height: 10px;
    background-size: contain !important;
    background-repeat: no-repeat;
    background: url('data:image/svg+xml,<svg width="22" height="14" viewBox="0 0 22 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_328_49)"><path d="M11.0021 9.85088L10.71 9.55702L1.74398 0.500001L-4.85043e-07 2.40351L10.1301 12.6272L11.0021 13.5L11.8741 12.6228L22 2.40351L20.2602 0.5L11.29 9.55702L11.0021 9.85088Z" fill="black"/></g><defs><clipPath id="clip0_328_49"><rect width="13" height="22" fill="white" transform="translate(0 13.5) rotate(-90)"/></clipPath></defs></svg>');
}

#veo-faqs-container details[open] summary:after {
    transform: rotate(180deg);
}

#veo-faqs-container details[open] summary ~ * {
    -webkit-animation: sweep 0.5s ease-in-out;
    animation: sweep 0.5s ease-in-out;
}

@-webkit-keyframes sweep {
    0% {
        opacity: 0;
        margin-left: -10px;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-left: -10px;
    }

    100% {
        opacity: 1;
        margin-left: 0;
    }
}