#eaa_panel_trigger
{
	position: fixed;
	bottom: 70px;
	right: 20px;
	background: #fafafa;
	color: #fff;
	font-size: 20px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 9999;
	box-shadow: 1px 1px 17px 3px #00000061;
}

#eaa_panel_trigger img
{ 
	max-width:100%;
}

#eaa_settings_panel
{
	position: fixed;
	bottom: 70px;
	right: 20px;
	width: 350px;
	max-width: 100%;
	background: #f6f6f6;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	display: none;
	z-index: 9999;
	font-family: sans-serif;
}

.eaa_controls_buttons
{
	display:flex;
	align-items:center;
	justify-content: space-between;
	margin: 10px 0px;
}

.eaa_panel_header
{
	font-weight: bold;
	margin-bottom: 10px;
}

.eaa_option
{
	margin-bottom: 10px;
	font-size: 12px;
	position:relative;
}

.eaa_option label
{
    border: 2px solid white;
    width: 100%;
    display: flex;
    background: white;
        padding: 6px 10px;
    margin-top: 0px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0px 0px 4px -2px black;
    align-items: center;
    justify-content: space-between;
}

.eaa_option label div
{
	font-size: 12px;
}	

.eaa_option.selected label
{
    outline: 1px solid white;
    outline: 1px solid #3b7bb9;
    background: #3b7bb9;
    color: white;
}

.eaa_option.selected label div
{
    outline: 1px solid white;
    outline: 1px solid #3b7bb9;
    background: #3b7bb9;
    color: white;
}

.eaa_option input[type="checkbox"]
{
	opacity: 0;
	position:absolute;
	left:0;
	top: 0;
	width:100%;
	height:100%;
}

h3.eaa_subtitle
{
	color:black;
	font-size: 13px;
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: 500;
}

h2.eaa_panel_header
{
	color:black;
	font-size: 15px;
	display:flex;
	margin-bottom: 15px;
	align-items:center;
	justify-content: space-between;
}

h2.eaa_panel_header button
{
	border:none;
	background:none;
}

h2.eaa_panel_header button img
{
	max-width: 15px;
}

.eaa_option label:focus
{
	outline: 2px solid #3b7bb9;
	background: #e3f2fd;
}
.eaa_option label img
{
	width: 20px;
	margin-right: 10px;
}

.eaa_option.selected label img
{
   filter: invert(100%);
}

.eaa_option .keystrokes
{
	display: flex;
    font-size: 13px;
    align-items: center;
}

.eaa_option .keystrokes .key
{
    font-size: 12px;
    padding: 5px;
    background: #e0e0e0;
    border-radius: 6px;
    color:black;
}
.eaa_option .keystrokes .plus
{
    font-size: 14px;
    padding: 5px;
}

#eaa_reset_button, #eaa_hide_button
{
	border: 2px solid white;
    display: flex;
    background: white;
    padding: 3px 10px;
    margin-top: 0px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0px 0px 4px -2px black;
    align-items: center;
    justify-content: space-between;
}

#eaa_reset_button:focus, #eaa_hide_button:focus
{
	outline: 2px solid #3b7bb9;
	background: #e3f2fd;
}



.eaa_font_changer
{
	display:flex;
	align-items: stretch;
}

.eaa_font_changer input
{
	height: 22px;
	width: 60px;
	text-align: center;
	margin-left: 5px;
	margin-right: 5px;
}
.eaa_font_changer input::after
{
	content: '%';
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	color: #333;
	font-size: 12px;
	pointer-events: none;
}

	
.eaa_font_changer button
{
	background: #3b7bb9;
	border: thin solid #3b7bb9;
	border-radius: 3px;
	color: white;
	font-weight:bold;
}


/* responsive */
@media(max-width: 769px) 
{
	#eaa_settings_panel
	{

		max-width: 100%;
		top: 0px;
		left: 0px;
		right: auto;
		position: fixed;
		bottom: 0px;
		max-height: 100vh;
		overflow-y: scroll;
		box-sizing: border-box;
		width: 100%;
	}
}
