#blockcart {
  position: relative;
  display: inline-block;
}

#blockcart:before {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 1px;
  z-index: 14;
}

.ajax_cart_total {
  display: none !important;
}

#blockcart-header {
  display: inline-block;
  vertical-align: top;
  padding: 0 8px;
  line-height: 25px;
  color: #333;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  border: solid 1px transparent;
  position: relative;
}

#blockcart-header.active {
  color: #439CE0;
  border-color: #439CE0;
}

#blockcart-header:after {
  content: "\f0d7";
  font-family: "FontAwesome";
  float: right;
  margin-left: 5px;
}

#blockcart-header:hover:after {
  content: "\f0d8";
}

#blockcart-dropdown {
  position: absolute;
  right: 0;
  top: 26px;
  z-index: 13;
  background: #fff;
  width: 300px;
  border: 1px solid #439CE0;
  padding: 0 10px 10px 10px;
}

#blockcart-dropdown dl {
  margin-bottom: 10px;
}

#blockcart-dropdown dt {
  font-weight: normal;
  padding: 10px 0;
  position: relative;
  border-bottom: solid 1px #333;
}

#blockcart-dropdown dt:last-of-type {
  margin-bottom: 0;
}

#blockcart-dropdown .product-attributes {
  padding-bottom: 5px;
}

#blockcart-dropdown .vouchers {
  margin: 0 0 3px;
  font-size: 18px;
  text-transform: uppercase;
  color: #439CE0;
  font-weight: bold;
}

#blockcart-dropdown .vouchers tr td {
  padding: 0;
  border: none;
}

#blockcart-dropdown .vouchers tr td.price {
  text-align: right;
}

.cart_block_customizations {
  padding: 5px 0;
  margin-bottom: 10px;
  border: 1px dashed #333;
  border-left: none;
  border-right: none;
}

.cart_block_customizations > li {
  position: relative;
}

.deleteCustomizableProduct {
  float: right;
}

.cart_block_list .remove_link {
  position: absolute;
  right: 0;
  top: 10px;
}

.cart_block_list .remove_link a {
  color: #E74C3C;
}

.cart_block_list .remove_link a i {
  margin-right: 0 !important;
}

.cart-images {
  float: left;
  margin-right: 5px;
}

.cart-info {
  padding-right: 10px;
}

.cart-info .product-name {
  padding-bottom: 5px;
}

.cart-info .product-name .quantity-formatted {
  display: block;
}

.cart-info .price {
  font-size: 18px;
  font-weight: bold;
}

.cart-prices {
  font-weight: bold;
  margin-bottom: 10px;
}

.cart-prices-line {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
}

.cart-prices-line:last-of-type {
  padding-bottom: 0;
}

.cart_block_shipping_cost,
.cart_block_tax_cost,
.cart_block_total,
.cart_block_wrapping_cost {
  float: right;
}

.layer_cart_overlay {
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

#layer_cart {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  position: absolute;
  display: none;
  z-index: 99;
  width: 900px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.1em;
}

@media (max-width: 991px) {
  #layer_cart {
    max-width: 900px;
    width: calc(100% - 30px);
  }
  #layer_cart .crossseling {
    display: none;
  }
}

#layer_cart .cross {
  font-size: 2em;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}

@media (max-width: 549px) {
  #layer_cart .cross {
    right: 5px;
    top: 5px;
  }
}

.layer_cart_product {
  overflow: hidden;
  position: static;
  padding: 20px;
}

.layer_cart_product .title {
  margin-top: 0;
  margin-bottom: 25px;
}

.layer_cart_product .text-success {
  color: #439CE0;
}

.layer_cart_product .layer_cart_box_img {
  border-right: solid 1px #439CE0;
}

@media (max-width: 1099px) {
  .layer_cart_product .layer_cart_box_img {
    border-right: none;
  }
}

.layer_cart_cart {
  padding: 20px;
  position: relative;
}

@media (max-width: 991px) {
  .layer_cart_cart {
    border-left: none;
    border-top: 1px solid #ccc;
  }
}

.layer_cart_cart .title {
  margin-top: 0;
  margin-bottom: 25px;
}

.layer_cart_cart .button-container {
  width: 100%;
  margin-top: 40px;
}

.layer_cart_cart .button-container ul > li {
  display: inline-block;
}

.layer_cart_cart .button-container ul > li.next {
  float: right;
}

.layer_cart_cart .button-container ul > li.previous {
  float: left;
}

@media (max-width: 549px) {
  .layer_cart_cart .button-container ul > li {
    width: 100%;
  }
  .layer_cart_cart .button-container ul > li:last-child {
    margin-top: 15px;
  }
  .layer_cart_cart .button-container ul > li .btn {
    width: 100%;
  }
}

.layer_cart_cart .pager {
  margin: 0;
}

@media (max-width: 1099px) {
  .layer_cart_cart .pager > li > a {
    float: none;
    display: block;
    margin-top: 10px;
  }
}

.crossseling-content {
  position: relative;
  padding: 30px;
  border-top: 1px solid #ccc;
}

.crossseling-content h3 {
  margin: 0 0 0.75em;
}

.crossseling-content .product-wrapper {
  text-align: center;
}

.crossseling-content .product-wrapper .thumbnail {
  display: block;
}

.crossseling-content .product-wrapper .thumbnail .lnk_img {
  border: 1px solid #d6d4d4;
  background: white;
  padding: 5px;
  display: block;
}

.crossseling-content .product-wrapper .thumbnail .lnk_img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.crossseling-content .product-wrapper .price-container {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.crossseling-content .product-wrapper .price-container .old-price {
  text-decoration: line-through;
}

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