/*
 * 	BNE Blocks: Toggle
 *
 * 	@author		Kerry Kline
 * 	@copyright	Copyright (c) Kerry Kline
 * 	@link		http://www.bnecreative.com
 *
 * 	@updated:	July 1, 2023
 *
*/



/* Toggle */
details.bne-block-toggle {
    background-color: #fff;
    background-clip: border-box;
    margin-bottom: 1rem;
}
.bne-block-toggle.has-border {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
/* Toggle Heading */
details.bne-block-toggle .toggle-heading {
    padding: .75rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

/* Toggle Icon */
details.bne-block-toggle summary::-webkit-details-marker {
    display: none;
}

details.bne-block-toggle .toggle-heading .toggle-icon svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    fill: currentcolor;
}

details[open].bne-block-toggle .toggle-heading .toggle-icon svg {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}


/* Toggle Content */
details.bne-block-toggle .toggle-content {
    padding: 1.25rem;
}

details.bne-block-toggle .toggle-content > *:first-child {
    margin-top: 0;
}

/* Animate */
details.bne-block-toggle .toggle-content {
    animation: toggle 0.3s ease-in-out;
}

@keyframes toggle {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}