/* CSS for search file */
body {
  font-family: Arial;
}
* {
  box-sizing: border-box;
}
form.example input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
}
form.example button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}
form.example button:hover {
  background: #0b7dda;
}
form.example::after {
  content: "";
  clear: both;
  display: table;
}

.img-zoom {
width:100px;
height:100px;
transition: transform 0.2s;
transition-timing-function: ease;

}

.img-zoom:hover {transform: scale(5);box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);z-index: 10000;position: relative;}

.img-vorgang {
display: flex; 
justify-content: center; 
align-items: center;
width:800px;
height:auto;
transition: transform 0.4s;
transition-timing-function: ease;

}

.img-vorgang:hover {
transform: scale(1.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
z-index:10000000;
}

.img-vorgang-ebay {
display: flex; 
justify-content: center; 
align-items: center;
width:800px;
height:auto;
transition: transform 0.4s;
transition-timing-function: ease;

}

.img-vorgang-ebay:hover {
transform: scale(1.2);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
z-index:10000000;
}

.demo:hover {
  z-index: 1000;
  width: auto;
  position: relative
  transform: scale(5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}




.buttonvorgang {
  box-shadow:inset 0px 1px 0px 0px #7a8eb9;
  background:linear-gradient(to bottom, #637aad 5%, #5972a7 100%);
  background-color:#637aad;
  border:1px solid #314179;
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  font-family:Arial;
  font-size:13px;
  font-weight:bold;
  padding:6px 12px;
  text-decoration:none;
}
.buttonvorgang:hover {
  background:linear-gradient(to bottom, #5972a7 5%, #637aad 100%);
  background-color:#5972a7;
}
.buttonvorgang:active {
  position:relative;
  top:1px;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color:#2e2f2f;
}