/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.gebote{
  width: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  
  --mc: 1;
  
}

.gebote .gebot{
  box-sizing: border-box;
  margin-left: 10%;
  width: 80%;
  
  background: #fff;
  position: relative;
  margin-bottom: 20px;
  padding: 20px 35px;
  line-height: 50px;
  
  border-radius: 6px;
  
  box-shadow: 0 0 5px rgba(0,0,0,0.2);

}

.gebote .gebot::before{
  
  position: absolute;
  content:"";
  right:10px;
  height: 80%;
  background: hsl(var(--mc), 80%, 80%);
  width: 10px;
  top:10%;
  border-radius: 25px;
  opacity: 0.2;
}

.gebote .gebot:hover::before{
  
  opacity: 0.8;
  
  
  
}

.gebot .zahl{
  position: absolute;
  font-size: 35px;
  left: -45px;
  top: 20px;
  font-weight: 600;
  font-family: "Sniglet";
  color: hsl(var(--mc), 80%, 80%);
  
  transform: rotate(var(--deg));
  background: #fff;
  border-radius: 8px;
  z-index: -1;
  
  width: 60px;
  height: 60px;
  line-height: 58px;
  text-align: center;
}

@media(max-width: 500px){
  
  .gebote .gebot{
    
  
  margin-left: 1%;
  width: 98%;
  
  margin-bottom: 20px;
  margin-top: 80px;
  padding: 20px 35px;
  line-height: 50px;
  
  border-radius: 6px;
  
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
    
  }
  
  .gebot .zahl{
    
  left: 20px;
  top: -50px;
  
}
  
}

.gebot .text{
  
  font-family: "lato";
  font-size: 18px;
  color: hsl(var(--mc), 0%, 50%);
  transition: all 1s ease-in-out;
  
}

.gebot:hover .text{
  
  color: hsl(var(--mc), 50%, 60%)
  
}


body{background: #10baf5;}