/* --------------------------------

Primary style

-------------------------------- */


.cd-add-to-cart {
  /*display: inline-block;
  padding: 1.2em 1.8em;
  background: #2c97de;
  border-radius: 50em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .2s;
  transition: all .2s;*/
}
.cd-add-to-cart:hover {
  /*background: #42a2e1;*/
}
.cd-add-to-cart:active {
  /*-webkit-transform: scale(0.9);
	  -ms-transform: scale(0.9);
		  transform: scale(0.9);*/
}

/* --------------------------------

Main Components

-------------------------------- */
.sammelkorb-container::before {
  /* dark bg layer visible when the cart is open */
  content: '';
  position: fixed;
  z-index: 2541;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
}

.sammelkorb-container.cart-open::before {
  opacity: 1;
  visibility: visible;
}

.sammelkorb-trigger,
.sammelkorb {
  position: fixed;
  bottom: 0px;
  right: 0px;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
		  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: transform;
  backface-visibility: hidden;
}
.sammelkorb-trigger-top{
	position: fixed;
	top: 15px;
	right: 0px;
	width: 50px;
	height: 50px;
	-webkit-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
	background: url(../img/cd-icons-cart-close.svg) no-repeat 0 0;
	z-index: 3000;
	background-position: -72px 0;
	display: none;
}
.empty .sammelkorb-trigger, .empty
.sammelkorb {
  /* hide cart
  -webkit-transform: translateY(150px);
	  -ms-transform: translateY(150px);
		  transform: translateY(150px);*/
}
@media only screen and (min-width: 1170px) {
  .sammelkorb-trigger,
  .sammelkorb {
	/*bottom: 40px;*/
  }
}

.sammelkorb-trigger {
  /* button that triggers the cart content */
  z-index: 2605;
  height: 72px;
  width: 72px;
  /* replace text with image */
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}
.sammelkorb-trigger::after, .sammelkorb-trigger::before {
  /* used to create the cart/'X' icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
	  -ms-transform: translateX(-50%) translateY(-50%);
		  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  background: url(../img/cd-icons-cart-close.svg) no-repeat 0 0;
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, transform .2s;
  transition: opacity .2s, transform .2s, -webkit-transform .2s;
}
.sammelkorb-trigger::after {
  /* 'X' icon */
  background-position: -72px 0;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	  -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
		  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.cart-open .sammelkorb-trigger::before {
  opacity: 0;
}
.cart-open .sammelkorb-trigger::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
	  -ms-transform: translateX(-50%) translateY(-50%);
		  transform: translateX(-50%) translateY(-50%);
}
.sammelkorb-trigger .count {
  /* number of items indicator */
  position: absolute;
  top: -10px;
  left: -10px;
  height: 28px;
  width: 28px;
  background: #e94b35;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  text-indent: 0;
  -webkit-transition: -webkit-transform .2s .5s;
  transition: -webkit-transform .2s .5s;
  transition: transform .2s .5s;
  transition: transform .2s .5s, -webkit-transform .2s .5s;
}
.sammelkorb-trigger .count li {
  /* this is the number of items in the cart */
  position: absolute;
  -webkit-transform: translateZ(0);
		  transform: translateZ(0);
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
	  -ms-transform: translateX(-50%) translateY(-50%);
		  transform: translateX(-50%) translateY(-50%);
}
.sammelkorb-trigger .count li:last-of-type {
  visibility: hidden;
}
.sammelkorb-trigger .count.update-count li:last-of-type {
  -webkit-animation: cd-qty-enter .15s;
		  animation: cd-qty-enter .15s;
  -webkit-animation-direction: forwards;
		  animation-direction: forwards;
}
.sammelkorb-trigger .count.update-count li:first-of-type {
  -webkit-animation: cd-qty-leave .15s;
		  animation: cd-qty-leave .15s;
  -webkit-animation-direction: forwards;
		  animation-direction: forwards;
}
.cart-open .sammelkorb-trigger .count {
  -webkit-transition: -webkit-transform .2s 0s;
  transition: -webkit-transform .2s 0s;
  transition: transform .2s 0s;
  transition: transform .2s 0s, -webkit-transform .2s 0s;
  -webkit-transform: scale(0);
	  -ms-transform: scale(0);
		  transform: scale(0);
}
.empty .sammelkorb-trigger .count {
  /* fix bug - when cart is empty, do not animate count */
  -webkit-transform: scale(1);
	  -ms-transform: scale(1);
		  transform: scale(1);
}
.sammelkorb-trigger:hover + div .wrapper {
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.3);
}
.cart-open .sammelkorb-trigger:hover + div .wrapper {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
}

.sammelkorb {
  /* cart content */
  z-index: 2600;
  width: 90%;
  max-width: 440px;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}
.sammelkorb .wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  height: 72px;
  width: 72px;
  border-radius: 6px;
  -webkit-transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
  transition: height .4s .1s, width  .4s .1s, box-shadow .3s;
  -webkit-transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
		  transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
  background: #e6e6e7;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
  pointer-events: auto;
}
.sammelkorb header, .sammelkorb footer {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
}

.sammelkorb footer button {
  margin-top: 5px;
}

.sammelkorb header, .sammelkorb .body {
  opacity: 0;
}
.sammelkorb header {
  top: 50px;
  border-radius: 0px 0px 0 0;
  padding: 0 1.4em;
  height: 40px;
  line-height: 40px;
  background-color: #e6e6e7;
  -webkit-transition: opacity .2s 0s;
  transition: opacity .2s 0s;
}
.sammelkorb header::after {
  clear: both;
  content: "";
  display: block;
}
.sammelkorb footer {
  bottom: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
  background: #e6e6e7;
  padding: 15px 30px;
}
.sammelkorb h2 {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2;
}

.sammelkorb .checkout {
  display: block;
  height: 72px;
  line-height: 72px;
  margin-right: 72px;
  background: #2c97de;
  color: rgba(255, 255, 255, 0);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-transition: all .2s 0s;
  transition: all .2s 0s;
}
.sammelkorb .checkout:hover {
  background: #399ee0;
}
.sammelkorb .checkout em {
  position: relative;
  display: inline-block;
  -webkit-transform: translateX(40px);
	  -ms-transform: translateX(40px);
		  transform: translateX(40px);
  -webkit-transition: -webkit-transform 0s .2s;
  transition: -webkit-transform 0s .2s;
  transition: transform 0s .2s;
  transition: transform 0s .2s, -webkit-transform 0s .2s;
}
.sammelkorb .checkout em::after {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
		  transform: translateY(-50%);
  right: 0;
  content: '';
  height: 24px;
  width: 24px;
  background: url(../img/cd-icon-arrow-next.svg) no-repeat center center;
  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.sammelkorb .body {
  position: relative;
  z-index: 1;
  height: calc(100% - 40px);
  padding: 20px 0 10px;
  margin: 40px 0 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.sammelkorb .body ul {
  overflow: hidden;
  padding: 0 1.4em;
  position: relative;
  padding-bottom: 90px;
}
.sammelkorb .body li {
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(80px);
	  -ms-transform: translateX(80px);
		  transform: translateX(80px);
  -webkit-transition: opacity 0s .2s, -webkit-transform 0s .2s;
  transition: opacity 0s .2s, -webkit-transform 0s .2s;
  transition: opacity 0s .2s, transform 0s .2s;
  transition: opacity 0s .2s, transform 0s .2s, -webkit-transform 0s .2s;
}
.sammelkorb .body li::after {
  clear: both;
  content: "";
  display: block;
}
.sammelkorb .body li:not(:last-of-type) {
  margin-bottom: 20px;
}
.sammelkorb .body li.deleted {
  /* this class is added to an item when it is removed form the cart */
  position: absolute;
  left: 1.4em;
  width: calc(100% - 2.8em);
  opacity: 0;
  -webkit-animation: cd-item-slide-out .3s forwards;
		  animation: cd-item-slide-out .3s forwards;
}

.sammelkorb .body li.deleted + li {
  -webkit-animation: cd-item-move-up-mobile .3s;
		  animation: cd-item-move-up-mobile .3s;
  -webkit-animation-fill-mode: forwards;
		  animation-fill-mode: forwards;
}

.sammelkorb .product-image {
  display: inline-block;
  float: left;
  /* the image height determines the height of the list item - in this case height = width */
  width: 50px;
}
.sammelkorb .product-image img {
  display: block;
}
.sammelkorb .product-details {
  position: relative;
  display: inline-block;
  float: right;
  width: calc( 100% - 50px);
  padding: 0.3em 0 0 0.5em;
}
.sammelkorb .product-details::after {
  clear: both;
  content: "";
  display: block;
}
.sammelkorb h3, .sammelkorb .price {
  font-weight: bold;
}
.sammelkorb h3 {
  width: 70%;
  float: left;
  /* truncate title with dots if too long */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sammelkorb h3 a {
  color: #2b3e51;
}
.sammelkorb h3 a:hover {
  color: #2c97de;
}
.sammelkorb .price {
  float: right;
  width: 30%;
  text-align: right;
}
.sammelkorb .actions {
  font-size: 1.4rem;
  height: 1.6em;
  line-height: 1.6em;
}
.sammelkorb .actions::after {
  clear: both;
  content: "";
  display: block;
}
.sammelkorb .delete-item, .sammelkorb .quantity {
  /*float: left;*/
  color: #808b97;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sammelkorb .delete-item {
  /*margin-right: 1em;*/
}
.sammelkorb .delete-item:hover {
  color: #e94b35;
}
.sammelkorb .quantity label {
  display: inline-block;
  margin-right: .3em;
}
.sammelkorb .select {
  position: relative;
}
.sammelkorb .select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
		  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/cd-icon-select.svg) no-repeat center center;
  pointer-events: none;
}
.sammelkorb select {
  position: relative;
  padding: 0 1em 0 0;
  cursor: pointer;
  -webkit-appearance: none;
	 -moz-appearance: none;
		  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 1.4rem;
  margin: 0;
  color: #808b97;
}
.sammelkorb select:focus {
  outline: none;
  color: #2b3e51;
  box-shadow: 0 1px 0 currentColor;
}
.sammelkorb select::-ms-expand {
  /* hide default select arrow on IE */
  display: none;
}
.cart-open .sammelkorb .wrapper {
  height: 100%;
  width: 100%;
  padding: 30px;
  -webkit-transition-delay: 0s;
		  transition-delay: 0s;
}
.cart-open .sammelkorb header, .cart-open .sammelkorb .body {
  opacity: 1;
}
.cart-open .sammelkorb header {
  -webkit-transition: opacity .2s .2s;
  transition: opacity .2s .2s;
}
.cart-open .sammelkorb .body {
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}
.cart-open .sammelkorb .body li {
  -webkit-transition: opacity .3s .2s, -webkit-transform .3s .2s;
  transition: opacity .3s .2s, -webkit-transform .3s .2s;
  transition: transform .3s .2s, opacity .3s .2s;
  transition: transform .3s .2s, opacity .3s .2s, -webkit-transform .3s .2s;
  opacity: 1;
  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
		  transform: translateX(0);
}
.cart-open .sammelkorb .body li:nth-of-type(2) {
  -webkit-transition-duration: .4s;
		  transition-duration: .4s;
}
.cart-open .sammelkorb .body li:nth-of-type(3) {
  -webkit-transition-duration: .5s;
		  transition-duration: .5s;
}
.cart-open .sammelkorb .body li:nth-of-type(4), .cart-open .sammelkorb .body li:nth-of-type(5) {
  -webkit-transition-duration: .55s;
		  transition-duration: .55s;
}
.cart-open .sammelkorb .checkout {
  color: #ffffff;
  -webkit-transition: color .2s .3s;
  transition: color .2s .3s;
}
.cart-open .sammelkorb .checkout em {
  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
		  transform: translateX(0);
  -webkit-transition: padding .2s 0s, -webkit-transform .2s .3s;
  transition: padding .2s 0s, -webkit-transform .2s .3s;
  transition: transform .2s .3s, padding .2s 0s;
  transition: transform .2s .3s, padding .2s 0s, -webkit-transform .2s .3s;
}
.cart-open .sammelkorb .checkout:hover em {
  padding-right: 30px;
}
.cart-open .sammelkorb .checkout:hover em::after {
  opacity: 1;
}
.sammelkorb .table th, .table td {
	padding: 0.2rem 0.2rem 0.2rem 0.2rem;
	vertical-align: top;
	border-top: 0px solid transparent;
}

@media only screen and (min-width: 768px) {
  .sammelkorb .body li:not(:last-of-type) {
	margin-bottom: 14px;
  }
  .sammelkorb .body li.deleted + li {
	-webkit-animation: cd-item-move-up .3s;
			animation: cd-item-move-up .3s;
  }
  .sammelkorb .checkout {
	font-size: 2.4rem;
  }
  .sammelkorb .product-image {
	width: 90px;
  }
  .sammelkorb .product-details {
	padding: 1.4em 0 0 1em;
	width: calc( 100% - 90px);
  }
  .sammelkorb h3, .sammelkorb .price {
	font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
	.cart-open .sammelkorb .wrapper {
	  padding: 20px 5px;
	}
}
@-webkit-keyframes cd-qty-enter {
  0% {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(0);
			transform: translateX(-50%) translateY(0);
  }
  100% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
  }
}

@keyframes cd-qty-enter {
  0% {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(0);
			transform: translateX(-50%) translateY(0);
  }
  100% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
  }
}
@-webkit-keyframes cd-qty-leave {
  0% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
  }
  100% {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-100%);
			transform: translateX(-50%) translateY(-100%);
  }
}
@keyframes cd-qty-leave {
  0% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
  }
  100% {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-100%);
			transform: translateX(-50%) translateY(-100%);
  }
}
@-webkit-keyframes cd-item-move-up-mobile {
  0% {
	padding-top: 70px;
  }
  100% {
	padding-top: 0px;
  }
}
@keyframes cd-item-move-up-mobile {
  0% {
	padding-top: 70px;
  }
  100% {
	padding-top: 0px;
  }
}
@-webkit-keyframes cd-item-move-up {
  0% {
	padding-top: 104px;
  }
  100% {
	padding-top: 0px;
  }
}
@keyframes cd-item-move-up {
  0% {
	padding-top: 104px;
  }
  100% {
	padding-top: 0px;
  }
}
@-webkit-keyframes cd-item-move-down-mobile {
  0% {
	padding-top: 0px;
  }
  100% {
	padding-top: 70px;
  }
}
@keyframes cd-item-move-down-mobile {
  0% {
	padding-top: 0px;
  }
  100% {
	padding-top: 70px;
  }
}
@-webkit-keyframes cd-item-move-down {
  0% {
	padding-top: 0px;
  }
  100% {
	padding-top: 104px;
  }
}
@keyframes cd-item-move-down {
  0% {
	padding-top: 0px;
  }
  100% {
	padding-top: 104px;
  }
}
@-webkit-keyframes cd-item-slide-out {
  0% {
	-webkit-transform: translateX(0);
			transform: translateX(0);
	opacity: 1;
  }
  100% {
	-webkit-transform: translateX(80px);
			transform: translateX(80px);
	opacity: 0;
  }
}
@keyframes cd-item-slide-out {
  0% {
	-webkit-transform: translateX(0);
			transform: translateX(0);
	opacity: 1;
  }
  100% {
	-webkit-transform: translateX(80px);
			transform: translateX(80px);
	opacity: 0;
  }
}
@-webkit-keyframes cd-item-slide-in {
  100% {
	-webkit-transform: translateX(0);
			transform: translateX(0);
	opacity: 1;
  }
  0% {
	-webkit-transform: translateX(80px);
			transform: translateX(80px);
	opacity: 0;
  }
}
@keyframes cd-item-slide-in {
  100% {
	-webkit-transform: translateX(0);
			transform: translateX(0);
	opacity: 1;
  }
  0% {
	-webkit-transform: translateX(80px);
			transform: translateX(80px);
	opacity: 0;
  }
}



#file-size {
	font-size: 0.6rem;
}


.sammelkorb-count-top .count {
  /* number of items indicator */
  position: absolute;
  top: 10px;
  height: 23px;
  width: 23px;
  background: #e94b35;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  text-indent: 0;
  -webkit-transition: -webkit-transform .2s .5s;
  transition: -webkit-transform .2s .5s;
  transition: transform .2s .5s;
  transition: transform .2s .5s, -webkit-transform .2s .5s;
}
.sammelkorb-count-top-mobile .count {
    position: absolute;
    top: 18px;
    height: 20px;
    width: 20px;
    background: #e94b35;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    text-indent: 0;
    -webkit-transition: -webkit-transform .2s .5s;
    transition: -webkit-transform .2s .5s;
    transition: transform .2s .5s;
    transition: transform .2s .5s, -webkit-transform .2s .5s;
    right: -2px;
}
.sammelkorb-count-top .count li, .sammelkorb-count-top-mobile .count li {
  /* this is the number of items in the cart */
  position: absolute;
  -webkit-transform: translateZ(0);
		  transform: translateZ(0);
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
	  -ms-transform: translateX(-50%) translateY(-50%);
		  transform: translateX(-50%) translateY(-50%);
}
.sammelkorb-count-top .count li:last-of-type, .sammelkorb-count-top-mobile .count li:last-of-type {
  visibility: hidden;
}
.sammelkorb-count-top .count.update-count li:last-of-type, .sammelkorb-count-top-mobile .count.update-count li:last-of-type {
  -webkit-animation: cd-qty-enter .15s;
		  animation: cd-qty-enter .15s;
  -webkit-animation-direction: forwards;
		  animation-direction: forwards;
}
.sammelkorb-count-top .count.update-count li:first-of-type, .sammelkorb-count-top-mobile .count.update-count li:first-of-type {
  -webkit-animation: cd-qty-leave .15s;
		  animation: cd-qty-leave .15s;
  -webkit-animation-direction: forwards;
		  animation-direction: forwards;
}
.empty .sammelkorb-count-top .count, .empty .sammelkorb-count-top-mobile .count {
  /* fix bug - when cart is empty, do not animate count */
  -webkit-transform: scale(1);
	  -ms-transform: scale(1);
		  transform: scale(1);
}
