/*
	Accessibility styles
	chris@inathought.com
*/
@media only screen and (max-width: 800px) {
	/* Remove toolbar on small screens */
	.a11y-responsive {
		display: none;
	}
}

.focusable:focus {
    outline: none !important;
}

.has-focus {
    background: yellow;
}

/* reset styles */
.a11y-toolbar button {
  border: 0;
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  padding: 0;
  line-height: inherit;
  margin: 0;
  font: inherit;
  width: 100%;
  height: 100%;
  text-align: left;
}

.a11y-toolbar {
    /*position: fixed;
    z-index: 99999;
    top: 43%;
    left: 0;*/
    background: black;
}

.a11y-toolbar-list{
    margin-left:10px;
}

.a11y-toolbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.a11y-toolbar ul li {
	margin: 5px;
	padding: 0;
    display: inline-block;
}

.a11y-toolbar ul li button {
    font-size: 1.6em;
    padding: 0px 5px 5px 5px;
}

.a11y-toolbar ul li button span{
    font-family: "Open Sans";
}

.a11y-toolbar button {
    color: #fff !important;
}

.a11y-toolbar button.active {
    color: #000 !important;
}

.a11y-toolbar ul li button {
    display: block;
    background: black;
    text-align: center;
    border: 1px solid white;
}

.a11y-toolbar ul li button.active {
    background: white;
    border: 1px solid white;
}

.desaturated {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    -webkit-filter: grayscale(1) !important;
    -moz-filter: grayscale(100%) !important;
    -ms-filter: grayscale(100%) !important;
    -o-filter: grayscale(100%) !important;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale") !important;
    filter: gray !important;
}