.tw-bloc {
    box-shadow: 1px 1px 6px hsla(0, 0%, 0%, 0.4);
    border-radius: 8px;
    background: none;
    margin: 6px 0;
    padding: 8px;
}

.tw-bloc-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: #000;
    padding-top: 0;
    margin: 0;
    animation: fadeIn 0.4s ease both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(0.5em); }
    to { opacity: 1; transform: translateY(0); }
}

.tw-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsla(150, 50%, 40%, 0.2) url(butonvert-2.jpg) repeat center top;
    background-size: 100%;
    border: 1px solid hsl(150, 51%, 16%);
    border-radius: 8px;
    color: #000;
    box-shadow: 0 0 8px hsla(0, 0%, 0%, 0.3);
    padding: 4px 8px;
    font-size: 1em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tw-toggle:hover {
    background: hsla(40, 74%, 88%, 0.7) url(butonorange-3.jpg) left top;
    font-weight: bold;
    box-shadow: 0 0 12px hsla(40, 74%, 88%, 0.2);
}

.tw-toggle[aria-expanded="true"] {
    background: hsla(40, 74%, 88%, 0.7) url(butonorange-3.jpg) left top;
    border-color: hsl(42, 95%, 30%);
    box-shadow: 0 0 12px hsla(40, 74%, 88%, 0.2);
    font-weight: bold;
}

.tw-toggle svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tw-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.tw-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: transparent;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.tw-content.open {
    opacity: 1;
    max-height: none;
}
