/* Style für neue Autonews PSW - AG - 2020-08-18 */
.card-wrapper-autonews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.card-wrapper-autonews .item-wrap {
  padding: 0 15px;
  width: 33.33%;
  margin-bottom: 30px;
}

.card-wrapper-autonews .card {
  width: 100%;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, .05), 0 1px 2px 0 rgba(0, 0, 0, .2);
  transition: all 0.2s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card-wrapper-autonews .card:hover, .card.hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .3), 0 0 1px 0 rgba(0, 0, 0, .25);
}
.card-wrapper-autonews .card:hover .card-content, .card.hover .card-content {
  box-shadow: inset 0 3px 0 0 #ccb65e;
  border-color: #ccb65e;
}
.card-wrapper-autonews .card:hover .card-img .overlay, .card.hover .card-img .overlay {
  background-color: rgba(47, 78, 145, .65);
  transition: opacity 0.2s ease;
  opacity: 1;
}
.card-wrapper-autonews .card-img {
  position: relative;
  height: 224px;
  width: 100%;
  background-color: #fff;
  transition: opacity 0.2s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card-wrapper-autonews .card-img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.card-wrapper-autonews .card-img .overlay .overlay-content {
  line-height: 224px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.card-wrapper-autonews .card-img .overlay .overlay-content a {
  color: #fff !important;
  padding: 0 2rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .4);
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}
.card-wrapper-autonews .card-img .overlay .overlay-content a:hover, .card-img .overlay .overlay-content a.hover {
  background: rgba(47, 78, 145, .7);
  border-color: rgba(47, 78, 145, .9);
}
.card-wrapper-autonews .card-content {
  width: 100%;
  min-height: 200px;
  background-color: #fff;
  border-top: 1px solid #e9e9eb;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 1em 1em;
  transition: all 0.2s ease;
}
.card-wrapper-autonews .card-content a {
  text-decoration: none;
  color: #202927;
}
.card-wrapper-autonews .card-content h2, .card-content a h2 {
  font-size: 1em !important;
  line-height: 1.25em !important;
  font-weight: 500;
  padding: 0em !important;
  border-bottom: 1px solid ;
  color: rgba(47, 78, 145, .9);
}
.card-wrapper-autonews .card-content p, .card-content a p {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 500;
  min-height: 7.5em;
 /* border-bottom: 1px solid #e9e9eb;*/
  min-width: 100%;
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  color: rgba(32, 41, 28, .8);
}
.card-wrapper-autonews .card-title {
  font-size: 1em;
  line-height: 1.25em;
  font-weight: 700;
  color: rgba(47, 78, 145, .9);
  padding-top: 1em;
  min-height: 5em;
  max-height: 5em;
}

.card-wrapper-autonews .description{
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 500;
  text-align: justify;
  min-height: 12em;
  max-height: 12em;
  padding-top: 1em;
  color: rgba(32, 41, 28, .8);
}

.card-wrapper-autonews .readmore {
  background-image: linear-gradient(to bottom, transparent 0%, #fff 30%);
  position:absolute;
  width:100%;
  height:6em;
  font-weight:bold;
  bottom: 0em;
  left: 0px;
  text-align: center;
}

.card-wrapper-autonews .readmore span {
  position: absolute;
  width: 50%;
  font-size: 1em;
  line-height: 1em;
  font-weight: 500;
  color: #fff;
  background-color: #2f4e91;
  border-radius: 25px;
  height: 40px;
  line-height: 40px;
  bottom: 1.25em;
  left: 25%;
  right: 25%;
  cursor: pointer;
}
.card-wrapper-autonews .readmore span:hover {
  background-color: rgba(47, 78, 145, .7);
}

.card-wrapper-autonews .readmore span:active {
  background-color: rgba(47, 78, 145, .7);
  outline: none;
  border: none !important;
}
@media screen and (max-width: 960px) {
  .card-wrapper-autonews .item-wrap {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .card-wrapper-autonews .item-wrap {
    width: 100%;
  }
}

/* Navbar Fix - AG - 2020-07 */
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar .container {
  margin: 0;
  width: auto;
  min-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar-collapse {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .navbar .container {
    min-width: 80%;
    display: block;
  }
}

/* Mecanauto */
.produktliste img {
  max-width: 200px;
  height: auto;
}
/*
.aimeos-container .basket-standard-coupon {
  display: none;
}

.aimeos.basket-standard .basket-standard-coupon {
  display: none;
}*/

.aimeos .btn-primary, 
.aimeos .btn-primary:active {
  background-color: #10a0cb;
  border: solid 1px #10a0cb;
}

.aimeos .btn-primary:hover {
  background-color: #0a6884;
  border: solid 1px #0a6884;
}

.aimeos .addbasket input {
  border: solid 1px #10a0cb;
}

.catalog-detail-basic h1.name {
  color: #10a0cb;
}

.catalog-detail-basket .service-intro {
  color: #10a0cb;
}

.aimeos a:link:not(.btn),
.aimeos a:visited:not(.btn) {
  color: #10a0cb;
}

.catalog-detail .header {
  border-bottom: solid 1px #10a0cb;
}

.aimeos .common-summary .header {
  border-bottom: solid 1px #10a0cb;
}

.catalog-list .product {
  border-bottom: 1px solid #10a0cb;
  vertical-align: bottom;
}

.catalog-list-items .list .product {
  border-left: solid 1px #10a0cb;
}

.product .rabatt {
  color: red;
  font-size: 35px;
}

.basket .unitprice .rabatt {
  font-size: inherit;
}

.basket .rebatepercent {
  background-color: #A03030;
  padding: 0em 0.25em;
  margin-left: 1em;
  color: #FFF;
}

li.product .rabatt {
  font-size: inherit;
}

.origPrice {
  display: block;
}

.origPriceOld {
  display: block;
  text-decoration: line-through;
}

.price-item .rebatepercent {
  font-size: 25px;
}

li.product .price-item .rebatepercent {
  font-size: inherit;
}

/*
.catalog-actions {
  display: none;
}

.service-intro {
  display: none;
}

.common-summary-additional.row {
  display: none;
}*/

.cookie-googleMaps iframe {
  width: 100%;
  height: 250px;
}

.cookie-youtube iframe {
  width: 100%;
  height: 660px;
}

/* ToDo: Those font files don't exist. Are these references outdated or are the fonts missing? */
/* latin-ext */
/*@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url("../typo3conf/ext/bootstrap_package/Resources/Public/Fonts/Source_Sans_Pro/SourceSansPro-Light.ttf");
}*/

/* latin-ext */
/*@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url("../typo3conf/ext/bootstrap_package/Resources/Public/Fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf");
}*/

/* latin-ext */
/*@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url("../typo3conf/ext/bootstrap_package/Resources/Public/Fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf");
}*/

body {
  font-family: "Source Sans Pro", sans-serif;
}

@media only screen and (max-width: 1199px) {
  .cookie-youtube iframe {
    height: 545px;
  }
}

@media only screen and (max-width: 991px) {
  .cookie-youtube iframe {
    height: 405px;
  }
}

@media only screen and (max-width: 767px) {

}

@media only screen and (max-width: 576px) {
  .cookie-youtube iframe {
    height: 300px;
  }
}

.carousel .item {
  background-size: auto;
}

.carousel .item h1,
.carousel .item h2,
.carousel .item h3,
.carousel .item h4,
.carousel .item h5,
.carousel .item h6 {
  font-weight: bold;
}

.carousel-text-inner {
  text-shadow: 4px 4px 0px rgb(0,0,0);
}

footer figure a > img {
  margin: 0;
}
