/* ---------------- ACCORDION ---------------- */
/* Style the buttons that are used to open and close the accordion panel */
.choice {
    background-color: var(--color-surface);    
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 3px;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border: 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .choice:hover {
    background-color: var(--color-brand-subtle);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 1rem;
    background-color: var(--color-surface);
    color: var(--color-text-2);
    display: none;
    overflow: hidden;
    margin-top: -3px;
    margin-bottom: 3px;
    border-top: 2px solid var(--color-text-muted);

}

.panel img {
    width: 100%;
    height: 50dvh;
    border-radius: 10px;
    object-fit: contain;
    z-index: 0;
}

.panel .smallImg {
    height: 15dvh;
}

.acc {
    margin-top: 0;
}
.acc .panel .modal img {
    height: 80%;
    z-index: inherit;
}