@charset "utf-8";
/* CSS Document */

details {
position: relative;
width: 300px;
margin-right: 1rem;
}

details[open] {
z-index: 1;
}

summary {
padding: 1rem;
cursor: pointer;
border-radius: 5px;
background-color: #ddd;
list-style: none;
}

summary::-webkit-details-marker {
display: none;
}

details[open] summary:before {
content: '';
display: block;
width: 100vw;
height: 100vh;
background: transparent;
position: fixed;
top: 0;
left: 0;
}

summary:after {
content: '';
display: inline-block;
float: right;
width: .5rem;
height: .5rem;
border-bottom: 1px solid currentColor;
border-left: 1px solid currentColor;
border-bottom-left-radius: 2px;
transform: rotate(45deg) translate(50%, 0%);
transform-origin: center center;
transition: transform ease-in-out 100ms
}

summary:focus {
outline: none;
}

details[open] summary:after {
transform: rotate(-45deg) translate(0%, 0%);
}

ul.DDmenu {
width: 100%;
background: #ddd;
position: absolute;
top: calc(100% + .5rem);
left: 0;
padding: 2rem;
margin: 0;
box-sizing: border-box;
border-radius: 5px;
max-height: 200px;
overflow-y: auto;
}

ul.DDmenu li {
margin: 0;
padding: 1rem 0;
border-bottom: 1px solid #ccc;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-style: normal;
    text-decoration: none;
    text-align: left;
	color: #00AAFF;
}

ul.DDmenu li:first-child {
padding-top: 0;
}

ul.DDmenu li:last-child {
padding-bottom: 0;
border-bottom: none;
}

/* FAKE SELECT */

summary.radios {
counter-reset: radios;
}

input[type=radio] {
counter-increment: radios;
appearance: none;
display: none;
}

input[type=radio]:checked {
display: inline;
}

input[type=radio]:after {
content: attr(title);
display: inline;
font-size: 1rem;
}

ul.list {
counter-reset: labels;
}

label {
width: 100%;
display: block;
cursor: pointer;
}