/**
 * Style product teases
 */
body.path-shop {
  background-color: #fff;
}

.arjangshop-product-teaser .product-overlay-inner {
  padding: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.arjangshop-product-teaser .product-overlay {
  position: absolute;
  background-color: #003975e0;
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.2s;
}
.arjangshop-product-teaser .product-overlay a {
  color: #fff;
  display: block;
}
.arjangshop-product-teaser:hover .product-overlay {
  display: block;
  height: 100%;
}
.arjangshop-product-teaser .product-image-wrapper img {
  width: 100% !important;
  margin: 0;
}
.arjangshop-product-teaser .product-image-wrapper .field--type-image {
  margin: 0;
}

.arjangshop-product-teaser .product-image-wrapper {
  background-color: #f8f8f8;
  padding: 1.5rem 1.5rem 3rem; /* padding is optional, can be removed */
}

.arjangshop-product-teaser .buy-buttons {
  margin-top: -2rem;
  z-index: 1;
  text-align: center;
}
.arjangshop-product-teaser .buy-buttons a {
  color: #003975;
  font-size: 1.8rem;
  display: inline-block;
  border-radius: 4rem;
  width: 3.8rem;
  height: 3.8rem;
  line-height: 3.9rem;
  background-color: #ddd8;
  margin: 0 1rem;
}
.arjangshop-product-teaser .buy-buttons a:hover {
  background-color: #f7941e;
}

.arjangshop-product-teaser {
  background-color: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.arjangshop-product-teaser h2.node__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #555;
  text-align: center;
  margin: 0.8rem 0.5rem 0;
}
.arjangshop-product-teaser .card-title {
  margin-bottom: 0;
}
.arjangshop-product-teaser .card-body {
  padding-bottom: 0;
}
.arjangshop-product-teaser .card-footer {
  background-color: transparent;
  border-top: 0;
  text-align: center;
  color: #003975;
  font-weight: bold;
  font-size: 1.6rem;
}
.arjangshop-product-teaser .price-wrapper .price-orig {
  color: #888;
  font-size: 1.3rem;
  margin: 0 1rem;
  display: inline-block;
}
.arjangshop-product-teaser .price-wrapper .price-orig,
.arjangshop-product-teaser .price-wrapper .price-discounted {
  cursor: help;
}

/**
 * Single product pages:
 */
body.node--type-arjangshop-product #block-pagetitle-hero {
  text-align: center;
  margin: 7rem 0 10rem;
}
body.node--type-arjangshop-product #block-pagetitle-hero h1 {
  font-weight: bold;
}
@keyframes product_arrow {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
#product-moreinfo svg {
  animation-name: product_arrow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
body.node--type-arjangshop-product #hero_bg_wrapper {
  background-image: url("../asset/product-hero-bg.svg");
  background-attachment: fixed;
  background-size: cover;
}
.node--type-arjangshop-product.node--view-mode-full {
  background-color: #fff;
  padding: 1rem 3rem;
  margin-bottom: 2rem;

  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;

  -moz-box-shadow: 0 0 3px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.node--type-arjangshop-product.node--view-mode-full img {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;

  max-width: 50rem;
  margin: 0 auto 3rem;
  display: block;
}
.node--type-arjangshop-product.node--view-mode-full #buy {
  margin-top: 5rem;
}

/**
 * Style checkout pages
 */
.template__page__arjang_shop #hero_bg_wrapper {
  background-image: url("../asset/product-hero-bg.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.arjangshop-shop-form {
  margin-bottom: 4rem;
}
.arjangshop-shop-form #edit-submit {
  margin-top: 3rem;
  padding: 1rem 3rem;
}
