/* customize colors */

:root {
	--bulma-primary-h: 190deg;
	--bulma-primary-l: 45%;
	--bulma-control-border-width: 2px;
}

/* coffee scheme */

/*
:root {
	--bulma-primary-h: 20deg;
	--bulma-primary-s: 34%;
	--bulma-primary-l: 36%;
	--bulma-scheme-h: 331;
}
*/

/* rounded borders */

.rounded {
	border-radius: var(--bulma-radius);
}

/* dropdown without javascript */

details.dropdown > summary::marker,
details.dropdown > summary::-moz-list-marker {
	display: none;
}

details.dropdown > summary::-webkit-details-marker {
	display: none;
}

details.dropdown > summary {
	list-style-type: none;
}

details.dropdown > .dropdown-menu {
	/* eliminate need for .is-active: */
	display: block !important;
}

details.dropdown[open] > summary::before {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 80;
	display: block;
	cursor: default;
	content: " ";
	background: transparent;
}