ul {
    list-style-type: none;
}

ol {
    margin-left: 15px;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
}

.faq-categories {
    width: 15%;
}

.faq-categories li a {
    background-color: var(--faq-nav-background);
    display: inline-block;
    color: white;
    padding: 10px 10px 10px 12px;
    width: 100%;
    font-size: 13px;
    border-bottom: 1px solid var(--faq-nav-background-border-bottom);
    transition: all ease-in-out .3s;
}

.faq-categories li a:hover {
    background-color: var(--faq-nav-background-hover);
    padding-left: 20px;
}

.faq-items {
    width: 100%;
}

.faq-items h2 {
    border-bottom-style: dashed;
}

.faq-items h2:not(:first-child){
    margin-top: 50px;
}

details > summary {
    font-weight: bold;
    font-size: 14px;
    color: var(--accent-ui-one);
    letter-spacing: 2px;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    border: 1px solid #f4f4f4;
    list-style-type: none;
    user-select: none;
}

details:not([open]):hover > summary, details:not([open]):focus-within > summary {
    background-color: var(--accent-ui-one);
    color: white;
}

details:focus-within > summary {
    border: 1px dashed white !important;
}

details[open] > summary {
    margin-bottom: -1px;
    background-color: var(--accent-ui-one);
    color: white;
}

details > summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}
details[open] > summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}

details > summary::-webkit-details-marker, details > summary::marker {
    display: none;
}

details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0%    {opacity: 0; margin-top: -10px}
    100%  {opacity: 1; margin-top: 0}
}

.faq-content p {
    margin-bottom: 25px;
    border: 1px solid #f4f4f4;
    border-radius: 0.25rem;
    background-color: white;
    padding: 1rem;
    margin-top: 0;
    line-height: 1.7em;
}