body {
	font-family: monospace;
	font-size: 11px;
	background: white;
	text-align: center;
}

#title {
  display: inline;
  width: 50%; 
}
#options {
  float: right;
  height: 40px;
  display: block;
}

.separator {
	width: 100%;
	text-align: left;
	border-top: 1px solid black;
	text-transform:capitalize;
	display:none;
	float: left;
}
.separator .text {
	clear:both;
}

#content {
	width: 100%;
	overflow: hidden;
}
footer {
	border-top: 1px solid lightgrey;
	text-align: center;
	padding-top: 10px;
}

#error {
	display: none;
}
#categories {
	font-size: 1.1em;
	margin-top: 5px;
	padding: 10px 0px;
	border-top: 1px solid lightgrey;
}
#categories label 
{
    text-transform:capitalize;
    padding-right: 10px;
    padding-left: 2px;
}
#categories input {
	font-family: monospace;
	font-size: 1.2em;
} 
.gridBox {
	display: none;
	float: left;
	background-repeat: no-repeat;
	background-position: 0 0px;
	background-color: black;
	background-size: 100% 100%;
	margin: 2px;
	position: relative;
	text-align: center;
	color: black;
	border: 0px solid #666;
	width: 175px;
	height: 150px;
	font-size: 15px;
	overflow: hidden;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.gridBox.default {
	display: block;
}
.gridBox div {
	display: none;
	color: white;
	cursor: pointer;
}
.gridBox img {
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/* Duplicating hover to handle "disablehover for touch 
divices" while allowing toggle desc for sharing*/
.gridBox:hover div {
	display: block;
}
/* desc toggle (separated from :hover even if it's the
 same content so that it's not deleted from the stylesheet 
 by the disable touch func*/
.gridBox.force-hover div {
	display: block;
}
.gridBox:hover img {

	background-position: 0 -100px;
	background-color: #322;
	opacity: 0.2;
	filter: alpha(opacity=20);
/* For IE8 and earlier */
	cursor: pointer;
} 

.gridBox.force-hover img {
	background-position: 0 -100px;
	background-color: #322;
	opacity: 0.2;
	filter: alpha(opacity=20);
/* For IE8 and earlier */
	cursor: pointer;
}
.gridBox.force-hover .shapartg {
	font-size: 1.1em;
}
  
.gridBox.active {
	cursor: auto;
	-webkit-animation: pulsate-bck 0.5s ease-in-out infinite both;
	animation: pulsate-bck 0.5s ease-in-out infinite both;
	opacity: 0.7;
	filter: alpha(opacity=70);
/* For IE8 and earlier */
}

@-webkit-keyframes pulsate-bck {
0% {
	-webkit-transform: scale(1);
	transform: scale(1);
}
50% {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}
100% {
	-webkit-transform: scale(1);
	transform: scale(1);
}
}
@keyframes pulsate-bck {
0% {
	-webkit-transform: scale(1);
	transform: scale(1);
}
50% {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}
100% {
	-webkit-transform: scale(1);
	transform: scale(1);
}
}

.centered {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}
.top-right {
	position: absolute;
	top: 1px;
	right: 2px;
}
.bottom-center {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, -50%);
}
       
       
       
       /* Slider start       */
                /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
       /* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-desc {
  float: left;
  padding-top: 11px;
  padding-right: 3px;
  
}
/* slider end */

/* popup start*/
.popup-overlay{
  /*Hides pop-up when there is no "active" class*/
  visibility:hidden;
  position:absolute;
  background:#ffffff;
  border:3px solid #666666;
  width:50%;
  height:50%;
  left:25%; 
  top: 25%;
  font-weight: 1.2em;
}
.popup-overlay.active{
  /*displays pop-up when "active" class is present*/
  visibility:visible;
  text-align:center;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
 visibility:hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility:visible;
}

.popup-sound-container {
	width: 100%;
}

.popup-sound-container .gridBox {
	float: none;
	display: inline-block;
}
.popup-content button{
  display:inline-block;
  vertical-align:middle;
  border-radius:30px;
  margin:.20rem;
  font-size: 1rem;
  color:#666666;
  background:   #ffffff;
  border:1px solid #666666;  
}

.popup-content button:hover{
  border:1px solid #666666;
  background:#666666;
  color:#ffffff;
}
/* popup end*/
.shapartg {
	border-radius: 11px;
	font-size: 0.8em;
	padding: 2px;
	border: 1px solid white;
}

.shapartg:hover {
	font-style: italic;	
	color: lightgrey;
}

.shapartgLk {
	width: 70%;
	font-size: 1.3em;
}

.copied {
	height: 30px;
	padding-top: 10px;
	color: darkgreen;
	font-size: 1.3em;
}
.row{
	width: 100%;
}

#search {
  background-image: url('assets/searchicon.png'); /* Add a search icon to input */
  background-position: 10px 12px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 88%; /* Full-width */
  font-size: 14px; /* Increase font-size */
  padding: 10px 20px 10px 40px; /* Add some padding */
  border: 1px solid black; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}