.strike {
  text-decoration: none;
  /*we're replacing the default line-through*/
  position: relative;
  display: inline-block;
  /* keeps it from wrapping across multiple lines */
}

.strike:after {
  content: "";
  /* required property */
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 2px solid red;
  height: 45%;
  /* adjust as necessary, depending on line thickness */
  /* or use calc() if you don't need to support IE8: */
  height: calc(50% - 1px);
  /* 1px = half the line thickness */
  width: 100%;
  transform: rotateZ(-4deg);
}

.lotmodul {
  position: relative;
}
.lotmodul a {
  text-decoration: none;
  color: #000000;
}

.lots-klein {
  margin-left: -15px;
  margin-right: -15px;
}

.lot_klein {
  margin-left: 15px;
  margin-right: 15px;
}
.lot_klein .infobar {
  background-color: #f2f2f2;
  color: #000000;
  padding: 5px 15px;
  text-align: center;
}
.lot_klein .infobar.green {
  background-color: green;
  color: #ffffff;
}
.lot_klein .modul-container {
  width: 100%;
  background-color: #FFFFFF;
  margin-right: 30px;
  margin-bottom: 30px;
  position: relative;
}
.lot_klein .modul-hover {
  display: flex;
  flex-direction: row;
}
.lot_klein .modul-hover .modul-bild {
  width: 40%;
}
.lot_klein .modul-hover .modul-bild picture > img {
  height: 2px;
  width: 2px;
}
.lot_klein .modul-hover .modul-bild .zuschlag {
  display: none;
}
.lot_klein .modul-hover .modul-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lot_klein .line {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #D5D7E0;
  margin: 15px 0;
}
.lot_klein .text_kurz {
  font-family: kleine_sans_normal, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
.lot_klein .firmenname {
  font-family: kleine_sans_normal, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
.lot_klein .preis_start {
  font-size: 14px;
}
.lot_klein .preis_start span {
  font-size: 20px;
}
.lot_klein .meta_preis {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  /*letter-spacing: 0.1em;*/
}
.lot_klein .ersparnis {
  font-family: kleine_sans_normal, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  background-color: #D5D7E0;
  padding: 2px 10px 6px 10px;
  display: inline-block;
  border-radius: 5px;
}
.lot_klein .schaetzwert {
  font-family: kleine_sans_normal, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
.lot_klein .extra {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: kleine_sans_normal, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #08001A;
  margin-top: 15px;
}
.lot_klein .dot {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #7E808C;
}
.lot_klein .img-container {
  background-color: #FFFFFF;
  width: 100%;
  padding-top: 62.5%;
  /* 8:5 Aspect Ratio */
  position: relative;
  /* If you want text inside of it */
}
.lot_klein .img-container .merken {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffffff;
  border: none;
  padding: 10px;
  line-height: 0;
}
.lot_klein .img-container .merken svg.star use {
  fill: #ADAFB5;
}
.lot_klein .img-container .merken.active svg.star use {
  fill: #C50C0E;
}
.lot_klein .img-container .merken:hover {
  background-color: #C50C0E;
}
.lot_klein .img-container .merken:hover svg.star use {
  fill: #FFFFFF;
}

/*
.lot_klein:hover{
  .modul-hover{
    background-color: lightcoral;
    margin: -15px;
    padding: 15px;
  }
  .extra{
    display: block;
  }
}*/
.lotmodul.lot_klein {
  width: 100%;
}

.lotmodul.lot_klein.modul_default .image-container {
  padding-top: 62.5%;
  /* 8:5 Aspect Ratio */
}
.lotmodul.lot_klein.modul_default .schaetzwert {
  position: relative;
}
.lotmodul.lot_klein.modul_default .schaetzwert span::after {
  position: absolute;
}

@media screen and (min-width: 400px) {
  .lot_klein .modul-hover .modul-bild {
    width: 50%;
  }
  .lot_klein .modul-hover .modul-content {
    width: 50%;
  }
}
@media screen and (min-width: 576px) {
  .lot_klein .modul-hover .modul-bild .zuschlag {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FFFFFF;
    color: #C50C0E;
    padding: 1px 7px;
    font-size: 14px;
  }
  .lot_klein .meta_preis {
    letter-spacing: 0.1em;
    padding-right: 0;
  }
  .lot_klein .extra .zuschlag {
    display: none;
  }
  .lot_klein .extra .dot {
    display: none;
    position: relative;
    top: 3px;
  }
  .lot_klein .extra .dot ~ .dot {
    display: block;
  }
  .lot_klein .line {
    margin: 30px 0;
  }

  .lot_klein:hover .modul-hover .modul-bild .zuschlag {
    display: block;
  }
}
@media screen and (min-width: 568px) {
  .lotmodul.lot_klein {
    width: 240px;
  }

  .lot_klein .modul-container {
    background-color: #FFFFFF;
    margin-right: 0;
  }
  .lot_klein .modul-hover {
    flex-direction: column-reverse;
  }
  .lot_klein .modul-hover .modul-bild {
    width: 100%;
  }
  .lot_klein .modul-hover .modul-content {
    width: 100%;
    height: 150px;
  }
  .lot_klein .meta_preis {
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 768px) {
  .lotmodul.lot_klein {
    width: 212px;
  }
}
@media screen and (min-width: 992px) {
  .lotmodul.lot_klein {
    width: 210px;
  }
}
@media screen and (min-width: 1200px) {
  .lotmodul.lot_klein {
    width: 256px;
  }
}
@media screen and (min-width: 1400px) {
  .lotmodul.lot_klein {
    width: 230px;
  }

  .lots-klein {
    /*
    .lotmodul:nth-last-child(-n+2){
      display: none;
    }*/
  }
}
.view_meine_gebote {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  color: #ffffff;
  padding: 10px;
}
.view_meine_gebote .table {
  color: #ffffff;
}

.view_meine_gebote.active {
  display: block;
}

/*# sourceMappingURL=lotmodul.css.map */
