/* hideshow.css --- HideShow CSS file (simplified) */
/* Based on original by Fabrice Niessen */

.hsExpanded.hsAnchor {
    background: var(--accent-orange, #EE7700);
}

.buttons {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 8px 0;
    margin-top: 10px;
}

.hsButton {
    color: var(--fg-secondary, #999);
    float: right;
    font-size: 70%;
    margin-left: 10px;
    cursor: pointer;
}

.hsButton:hover {
    color: var(--accent-yellow, #fabd2f);
}

.ellipsis {
    color: var(--fg-tertiary, #999999);
    margin-left: 0.6em;
}

.hsUnselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
