/* ----------------------------------------------------- panel.css ------------------------------------ */

#XXXpanel  {
	position: absolute;
	top: 150px;
	height: 68px;
	width: 60px;
	transition: width 1s ease;
	transition: height 1s ease;
	overflow-y: hidden;
	background-color: lightgray;
}





#panel {
  display: block;
  border: 2px solid gray;
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 10000;

  padding: 1%;
  background: white;
  color: black;
  overflow: hidden;
  overflow-y: hidden;

height: 68px;
width: 60px;
transition: width 1s ease;
transition: height 1s ease;
background-color: lightgray; 
  
  XXheight: 450px; /* indien de jQuery instelling niet zou werken */
  max-height: 95%; /*anders werkt het scrollen niet altijd */
}



#panel.maximized{
	height: auto;
	width: 60%;
	top: 0;
	transition: width 2s ease;
	overflow-y: auto;
	background-color: white;
}



/* het grote touch-icoon van het touch-panel */
#panelSwitch {
	display: block;
	clear:both;
	width: 60px;
	cursor: pointer;
	position: absolute;
  top: 0;
  left: 0;	
  padding: 15px 15px 20px 15px;
}
#panelSwitch:hover {
}

/* de kleinere touch-icoontjes in een label in formulieren */
.panelSwitchLabel {
	display: inline-block;
	width: 30px;
	cursor: pointer;
  padding: 5px;
  vertical-align: middle; 
}
.panelSwitchLabel:hover {
}


#tappableContent {
	margin-top: 60px;
}

.tappable {
	cursor: pointer;
	display: inline-block;
	width: 100px;
	height: auto;
	margin: 5px;
}

.tappableImage {
	display: block;
	clear: both;
	width: 100%;
	height: 120px;
	border: 2px solid #034d7d;
	border-radius: 5px;
	height: auto;
	text-align: center;
	padding-top: 5px;
}
.tappableImage img {
	max-width: 90%;
	height: 60px;
}
.tappableImage:hover {
  background-color: #d8e6a1;	
}

.tappableNoImage {
	display: block;
	clear: both;
	width: 100%;
	height: 40px;
	border: 2px solid #034d7d;
	border-radius: 5px;
	height: auto;
	text-align: center;
	overflow: hidden;
}
.tappableNoImage:hover {
  background-color: #d8e6a1;	
}
.tappableTitle {
	display: block;
	clear: both;
	width: 100%;
	height: 50px;
	padding-top: 5px;
	font-size: 95%;
	text-align: center;
	overflow: hidden;
	/* uitbreiding 20201202: */
	  position: relative;
	  top: -6px;
	  line-height: 12px;
	/* einde uitbreiding 20201202: */
}

/* bedrag invoer */
#enteredNumber {
	width: 90%; 
	min-width: 10px; 
	max-width: 300px; 
	height: 40px; 
	border: 1px solid blue;
	border-radius: 5px;
	text-align: center;
	font-size: 25px;
}

#numbers {
	width: 90%; 
	max-width: 300px; 
	border: 1px solid lightgray;
	box-sizing: border-box;
	text-align: center;
	background: lightgray;
	padding-bottom: 10px;
}

.oneNumber {
	display: block;
	float: left;
	width: 30%;
	height: 60px;
	text-align: center;
	outline: 1px solid black;
	font-size: 30px;
	padding-top: 20px;
	cursor: pointer;
	margin-bottom: 3px;
	margin: 3px 2px;
	box-sizing: border-box;
	box-shadow: 3px 3px 3px gray;
	background: white;
}
.oneNumber:hover {
	background: yellow;
}
.oneNumber:active {
	background: red;
	box-shadow: none;
}

#submitNumber {
	display: block;
	clear: both;
	cursor: pointer;
	background: green;
	color: white;
	text-align: center;
	width: 270px;
	padding: 15px 15px;
	border-radius: 5px;
	margin-top: 15px;
	font-size: 20px;
}

@media screen and (max-width: 600px) {

	#panel {
		top: 10px;
	}
	

  .tappableImage, .tappableNoImage {
    width: 90%;
  }
}