<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
 /* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
	font-weight:bold;
}
button.yellow-accordion{
	color: #f6c815;
	border-top:solid 2px;
}
button.green-accordion{
	color: #bed431;
	border-top:solid 2px;
}
button.pink-accordion{
	color: #f11aa8;
	border-top:solid 2px;
}
button.blue-accordion{
	color: #5ecae6;
	border-top:solid 2px;
}


/* 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) */
button.accordion.active, button.accordion:hover {
    background-color: #eee;
}
button.green-accordion.active,button.green-accordion:hover{
	background-color: #bed431;
	color:#fff;
}
button.yellow-accordion.active,button.yellow-accordion:hover{
	background-color:#f6c815;
	color:#fff;
}
button.pink-accordion.active,button.pink-accordion:hover{
	background-color: #f11aa8;
	color:#fff;
}
button.blue-accordion.active,button.blue-accordion:hover{
	background-color: #5ecae6;
	color:#fff;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block !important;
	border:none !important;
	box-shadow:none !important;
}


div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
}

div.panel.show {
    opacity: 1;
    max-height: 5000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}</pre></body></html>