@-webkit-keyframes hvr-ripple-in {
  100% {
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    opacity: 1; } }

@keyframes hvr-ripple-in {
  100% {
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    opacity: 1; } }

.hvr-ripple-in {
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative; }
  .hvr-ripple-in:before {
    content: '';
    position: absolute;
    border: #77BF42 solid 4px;
    top: -9px;
    right: -9px;
    bottom: -9px;
    left: -9px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s; }

.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in; }

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
      transform: scaleX(1);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
      transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white; }

.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
      transform: scaleX(0); }

/* Icon Spin */
.hvr-icon-spin {
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 35px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  z-index: 2; }

.hvr-icon-spin:before {
  padding: 0 1px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  color: transparent; }

.product__btn.done .hvr-icon-spin:before {
  -webkit-transform: rotate(720deg);
  -ms-transform: rotate(720deg);
      transform: rotate(720deg);
  color: white;
  -webkit-transition: all 1s ease-in-out 0.5s;
  transition: all 1s ease-in-out 0.5s; }

.product__btn .buy-text {
  -webkit-transition: all 0.5s ease-in-out 1s;
  transition: all 0.5s ease-in-out 1s;
  position: relative;
  z-index: 3; }

.product-page__buy-btn .hvr-icon-spin {
  line-height: 54px; }

.btn-clear.done .hvr-icon-spin:before {
  color: #454756; }

.product__btn.done .buy-text, .product__btn.loading .buy-text {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.productLoaderWrapper {
	position: absolute;
    width: 100%;
    height: 100%;
    /* line-height: 40px; */
    vertical-align: middle;
    text-align: center;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 4;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
  }

.product__btn.loading .productLoaderWrapper {
  opacity: 1; }

.productLoader:before,
.productLoader:after,
.productLoader {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: productLoaderWrapper 1.8s infinite ease-in-out;
  animation: productLoaderWrapper 1.8s infinite ease-in-out; }

.productLoader {
  font-size: 10px;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

.productLoader:before {
  left: -15px;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.productLoader:after {
  left: 15px; }

.productLoader:before,
.productLoader:after {
  content: '';
  position: absolute;
  top: 0; }

.prod-pg-image {
  max-width: 100%;
  max-height: 100%; }

@-webkit-keyframes productLoaderWrapper {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em #fff; }
  40% {
    box-shadow: 0 2.5em 0 0 #fff; } }

@keyframes productLoaderWrapper {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em #fff; }
  40% {
    box-shadow: 0 2.5em 0 0 #fff; } }

.cartTrans-enter, .cartTrans-leave {
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  overflow: hidden; }

.cartTrans-enter, .cartTrans-leave.cartTrans-leave-active {
  opacity: 0;
  -webkit-transform: scale(0.5, 0);
      -ms-transform: scale(0.5, 0);
          transform: scale(0.5, 0);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left; }

.cartTrans-leave, .cartTrans-enter.cartTrans-enter-active {
  opacity: 1;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center; }

.categoryTrans-enter, .categoryTrans-leave {
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
  overflow: hidden; }

.categoryTrans-enter, .categoryTrans-leave.categoryTrans-leave-active {
  opacity: 0;
  max-width: 0; }

.categoryTrans-leave, .categoryTrans-enter.categoryTrans-enter-active {
  opacity: 1;
  max-width: 450px; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

.arrows {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px; }

.arrows__arrow {
  width: 0;
  height: 0;
  cursor: pointer; }

.arrows__arrow--top {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #000;
  margin-bottom: 5px; }

.arrows__arrow--bottom {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #000; }

.moduletable-prod-menu h3 {
  border-radius: 8px 8px 0 0; }

.filters {
  padding: 0;
  font-weight: bold;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (max-width: 768px) {
    .filters {
      position: fixed;
      top: 0px;
      max-width: 0px;
      overflow: auto;
      -webkit-transition: max-width 1s ease 0s;
      transition: max-width 1s ease 0s;
      background: #FFF none repeat scroll 0% 0%;
      z-index: 100;
      width: 100%;
      border-bottom: 2px solid #D1D1D1;
      height: 100%; } }
  .filters.filters--open {
    max-width: 768px; }
    .filters.filters--open .filters__close {
      display: block !important; }
  .filters__icon {
    width: 42px;
    height: 42px;
    background: #00958C url("/images/filter-icon.png") no-repeat scroll center center;
    position: fixed;
    left: 0;
    z-index: 99;
    display: none;
    top: 30px; }
    @media screen and (max-width: 768px) {
      .filters__icon {
        display: block; } }
  .filters__close {
    background: transparent url("/images/close-icon.png") no-repeat scroll center center;
    z-index: 101;
    display: none !important;
    left: 0;
    right: auto; }
  .filters > img {
    width: 100%; }
    @media screen and (max-width: 768px) {
      .filters > img {
        display: none; } }
  .filters #filtersForm {
    padding: 20px 15px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .filters__header-special, .filters__header {
    font-size: 18px; }
  .filters__header-special {
    background: url("/images/icon-question.png") no-repeat left 10% center; }
    .filters__header-special span {
      border-bottom: 1px solid #454756; }
    @media screen and (max-width: 768px) {
      .filters__header-special {
        display: none; } }
  .filters__header {
    margin: 10px 0 0 0;
    padding-bottom: 10px;
    border-bottom: 1px dotted #d6dccd; }
  .filters__list {
    margin-top: 10px; }
    .filters__list__item {
      border-bottom: 1px dotted #d6dccd;
      padding-bottom: 10px; }
  .filters ul {
    list-style: none;
    margin: 0;
    padding: 0; }

.products-list .products {
  width: 100%;
}

	

    @media screen and (max-width: 992px) {
      .products-list .products__product {
        margin: 8px 1%;
        -webkit-flex-basis: 48%;
            -ms-flex-preferred-size: 48%;
                flex-basis: 48%; } }
    @media screen and (max-width: 480px) {
      .products-list .products__product {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }
    .products-list .products__product__name {
	color: #000;
    font-weight: bold;
    font-size: 18px;
    text-align: right;
    padding: 0 10px 30px;
    margin: 10px 0 5px;
    border-bottom: 1px solid #e2e2e2;
	}
	
	.products__product__desc{
		color: #4d4d4d;
		font-size: 16px;
		font-weight: normal; 
		text-align: right;
		display: block;
	}
.products__product__price-wrapper{
	float:right;
	margin: 18px 0 0;
}

.products__product__price-wrapper span{
	color:#000;
	font-size:18px;
	font-weight:normal;
}
.products-list .products-flex--without-sidebar .products__product {
  -webkit-flex-basis: 24%;
      -ms-flex-preferred-size: 24%;
          flex-basis: 24%;
  margin: 8px 0.5%; }

.products__product {
  background: #ffffff; }
  .products__product__image {
    min-height: 100px;
    vertical-align: middle;
    text-align: center; 
    height: 190px;
    overflow: hidden;
	}
    .products__product__image a {
      display: block;
      width: 100%;
 }
      .products__product__image a img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle; }
  .products__product__price {
    font-size: 20px;
    font-weight: bold; }
    .products__product__price--discounted {
      margin-left: 8px;
      text-decoration: line-through;
      font-weight: normal;
      font-size: 17px; }
  .products__product__wish {
    display: inline-block;
    height: 30px;
    margin: 0 0 -10px 30px;
    text-align: center;
    -webkit-transition: opacity 0.3s ease-in 0s, background 0.5s ease-in 0s;
    transition: opacity 0.3s ease-in 0s, background 0.5s ease-in 0s;
    width: 40px;
    background: transparent url("/images/favorite-ic.png") no-repeat scroll left center;
    cursor: pointer; }
    .products__product__wish:hover, .products__product__wish.fill {
      background: transparent url("/images/favorite-hover-ic.png") no-repeat scroll left center; }

.product__btn {
    background: #c73d40;
    height: 40px;
    line-height: 35px;
    padding: 0 20px;
    color: #fff;
    border-radius: 0;
    position: relative;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    font-size: 16px;
    float: left;
    margin: 8px 0 6px 10px;
  }
  .product__btn .glyphicon {
    color: #454756; }
  .product__btn:hover {
    opacity: 0.8; }

.products__product__company {
  display: none; }

.new-icon {
  display: none; }

.orders__panel .panel-body {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0; }

.orders__products-header {
  padding: 4px 15px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #868686; }

.orders__product {
  padding: 15px;
  border-top: 1px solid #ccc; }
  .orders__product:first-child {
    border-top: 0; }

.orders__header, .orders__header:focus {
  text-decoration: none; }

.orders__header > div, .orders__products-header > div, .orders__product > div {
  display: inline-block;
  text-align: right; }

.orders__header > div:nth-child(1), .orders__products-header > div:nth-child(1) {
  width: 3%; }

.orders__header > div:nth-child(2), .orders__products-header > div:nth-child(2) {
  width: 15%;
  text-align: center; }

.orders__header > div:nth-child(3), .orders__products-header > div:nth-child(3), .orders__product > div:nth-child(2) {
  width: 25%; }

.orders__header > div:nth-child(4), .orders__products-header > div:nth-child(4), .orders__product > div:nth-child(3) {
  width: 25%; }

.orders__product > div:nth-child(1) {
  width: 18%;
  text-align: center; }

.orders__product > div:nth-child(1) img {
  max-height: 100px; }

.orders__products-header > div:nth-child(5), .orders__product > div:nth-child(4) {
  width: 10%;
  text-align: center; }

.orders__products-header > div:nth-child(6), .orders__product > div:nth-child(5) {
  width: 10%;
  text-align: center; }

@media screen and (max-width: 768px) {
  .product-page {
    padding: 0 15px; } }

.product-page__title {
    font-size: 24px;
    color: #000;
    border-bottom: 1px solid #e2e2e2;
    padding: 0 0 14px;
  }

.product-page__company {
  height: 40px;
  line-height: 40px;
  border: 1px solid #d3d9c8;
  border-left: 0;
  border-right: 0;
  margin: 8px 0; }

.product-page__colors {
  height: 32px;
  line-height: 32px;
  vertical-align: middle; }

.product-page__color-wrapper {
  display: inline-block;
  border-radius: 1px 8px 1px 8px;
  padding: 4px;
  height: 30px;
  width: 44px;
  border: 1px solid transparent; }
  .product-page__color-wrapper--active, .product-page__color-wrapper:hover {
    border: 1px solid #b0b0b0; }

.product-page__color {
  border-radius: 1px 8px 1px 8px;
  width: 100%;
  height: 100%; }

.product-page__image-wrapper {
  display: inline-block;
  text-align: center;
 }
  @media screen and (max-width: 768px) {
    .product-page__image-wrapper {
      width: 100%; } }
  .product-page__image-wrapper__image {
    max-width: 100%;
    max-height: 100%; }

.product-page__image-inner-wrapper {
  background: #ffffff; }

.product-page__image-thumbs {
  margin: 10px 0; }
  .product-page__image-thumbs__thumb {
    max-height: 90px;
    max-width: 90px;
    margin: 8px; }
    .product-page__image-thumbs__thumb.color-hide {
      display: none; }
    .product-page__image-thumbs__thumb.color-show {
      display: inline; }

.product-page__attr-label {
  font-weight: bold;
  margin-left: 10px; }

.product-page__attr-block {
}

.product-page__price-wrapper {
  position: relative; }

.product-page__price {
  color:#000;
  font-size: 27px; }
  .product-page__price--discounted {
    margin-right: 8px;
    text-decoration: line-through;
    font-weight: normal;
    font-size: 16px; }

.product-page__discount-icon {
  position: absolute;
  left: 10px;
  top: 50%; }

@media screen and (max-width: 768px) {
  .product-page__buy-btn-wrapper {
    text-align: center; } }
.products-featured.products-list h3{
	font-size:21px;
	color:#000;
	border-bottom:1px solid #c8c8c8;
	padding:0 0 5px;
}
.products-featured.products-list h3:after{
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    background: #c73d40;
    margin: 4px 0 0;
    position: absolute;
}
.product-page__buy-btn {
  color: #ffffff;
  font-size: 26px;
  height: 54px;
  line-height: 54px;
  padding: 0 60px;
  background: #c73d40;
  border-radius: 0;
	margin: 10px 0;
    float: right !important;
  }
  .product-page__buy-btn:hover {
    color: #dfdfdf; }
  @media screen and (max-width: 768px) {
    .product-page__buy-btn {
      float: none !important;
      margin-left: auto;
      margin-right: auto; } }

.product-page__description {
  margin: 10px 0 40px; }
  .product-page__description__header {
    border-bottom: 1px solid #d4dac9;
    font-weight: bold;
    padding: 2px 0; }
    .product-page__description__header span {
      border: 1px solid #000;
      border-radius: 50%;
      display: inline-block;
      text-align: center;
      width: 23px;
      height: 23px;
      line-height: 22px;
      text-indent: -2px;
      margin-left: 5px; }
  .product-page__description__item {
    padding: 5px 30px 5px 10px; }

.product-page .products-featured {
  margin-bottom: 20px;
  width: 100%; }
  .product-page .products-featured .products__product {
    -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
            flex-basis: 24%; }
    @media screen and (max-width: 992px) {
      .product-page .products-featured .products__product {
        margin: 8px 1%;
        -webkit-flex-basis: 48%;
            -ms-flex-preferred-size: 48%;
                flex-basis: 48%; } }
    @media screen and (max-width: 480px) {
      .product-page .products-featured .products__product {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }

.product-page__colors, .product-page__sizes, .product-page__price-wrapper {
  margin-bottom: 10px; }

.category-page {
}
  .category-page__products {
    width: 75%; }
    @media screen and (max-width: 768px) {
      .category-page__products {
        width: 100%; } }
  .category-page__side-wrapper {
    width: 20%; }
    @media screen and (max-width: 768px) {
      .category-page__side-wrapper {
        width: 0;
        margin: 0; } }

.category-page .products-flex--without-sidebar .category-page__products {
  width: 100%; }

.filters__list.fixed {
  top: 10px;
  position: fixed;
  z-index: 1; }

.products-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: flex;
      -ms-flex-wrap: flex;
          flex-wrap: flex; }
  .products-flex > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

.shoppingcart__section__title {
  font-weight: bold; }

.shoppingcart__section--contact-info label {
  float: right;
  width: 90px; }
  .shoppingcart__section--contact-info label.full-width {
    width: 100%; }

.shoppingcart__section--contact-info textarea, .shoppingcart__section--contact-info input {
  border-radius: 0; }

.shoppingcart__section--contact-info input {
  margin-right: 90px;
  width: -webkit-calc(100% - 90px);
  width: calc(100% - 90px); }

.shoppingcart__section--contact-info textarea {
  width: 100%; }

.shoppingcart__products__header > div, .shoppingcart__products__content > div {
  float: right;
  text-align: center;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  height: 80px;
  line-height: 80px;
  overflow: hidden; }
  .shoppingcart__products__header > div:nth-child(1), .shoppingcart__products__content > div:nth-child(1) {
    width: 15%;
    border-right: 1px solid #cccccc; }
  .shoppingcart__products__header > div:nth-child(2), .shoppingcart__products__content > div:nth-child(2) {
    width: 25%; }
  .shoppingcart__products__header > div:nth-child(3), .shoppingcart__products__content > div:nth-child(3) {
    width: 25%; }
  .shoppingcart__products__header > div:nth-child(4), .shoppingcart__products__content > div:nth-child(4) {
    width: 25%; }
  .shoppingcart__products__header > div:nth-child(5), .shoppingcart__products__content > div:nth-child(5) {
    width: 10%; }

.shoppingcart__products__title {
  display: table;
  height: 80px;
  line-height: 80px; }
  .shoppingcart__products__title > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2; }

.shoppingcart__products__header > div {
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #cccccc; }

.shoppingcart__products__image a {
  display: block;
  height: 80px;
  line-height: 80px;
  vertical-align: middle; }
  .shoppingcart__products__image a img {
    max-height: 100%;
    max-width: 100%; }

.shoppingcart__products__delete {
  font-weight: bold; }
  .shoppingcart__products__delete a {
    color: #5f3813; }

.shoppingcart__products__qty {
  height: 30px;
  line-height: 1;
  width: 40px;
  padding: 0 8px; }

.shoppingcart__buttons {
  margin-top: 10px; }
  .shoppingcart__buttons__button {
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    margin-right: 8px;
    border-radius: 0;
    width: 150px; }
    .shoppingcart__buttons__button:hover {
      color: #ffffff;
      opacity: 0.95; }
    .shoppingcart__buttons__button--checkout {
      background: #454756; }
    .shoppingcart__buttons__button--back {
      background: transparent;
      color: #454756;
      border: 1px solid #454756; }
      .shoppingcart__buttons__button--back:hover {
        color: #000;
        opacity: 0.95; }

.arrows {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px; }
  .arrows__arrow {
    width: 0;
    height: 0;
    cursor: pointer; }
    .arrows__arrow--top {
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid #000;
      margin-bottom: 5px; }
    .arrows__arrow--bottom {
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 7px solid #000; }

.logo-list {
  height: 40px;
  padding: 0;
  margin: 0; }
  .logo-list li {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f2f2f2;
    float: left;
    height: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    width: 10%;
    list-style: none; }
    .logo-list li a {
      display: block;
      height: 100%;
      width: 100%; }
    .logo-list li img {
      max-height: 90%;
      max-width: 90%;
      vertical-align: middle; }

.pop-prod-control-box {
  padding: 0;
  margin: 0; }
  .pop-prod-control-box li {
    position: absolute;
    height: 10px;
    width: 13px;
    top: 10px; }
    .pop-prod-control-box li:first-child {
      left: 10px; }
      .pop-prod-control-box li:first-child a {
        background: url("/images/arr-left.jpg") no-repeat center center; }
    .pop-prod-control-box li:last-child {
      right: 10px; }
      .pop-prod-control-box li:last-child a {
        background: url("/images/arr-right.jpg") no-repeat center center; }
    .pop-prod-control-box li a {
      border: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%; }

#logo-carousel {
  margin-top: 10px;
  padding: 0 40px; }
  #logo-carousel .carousel-inner {
    height: 40px;
    box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.8); }

.cart-popup {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 49px;
  -webkit-transition: max-height 1s ease-in-out 0s;
  transition: max-height 1s ease-in-out 0s;
  width: 350px;
  z-index: 100; }
  .cart-popup .products__product__company {
    display: block; }
  .cart-popup .products__product__image a {
    height: 100%; }

.cart-popup.open {
  border-bottom: 1px solid #ccc;
  max-height: 415px; 

  }

.cart-popup.resize {
  -webkit-transition: max-height 500ms ease-in 0s;
  transition: max-height 500ms ease-in 0s; }

.pop-shp-cart {
  background: #fff none repeat scroll 0 0;
  width: 100%; }

.shp-cart-content {
  max-height: 318px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 15px;
  list-style: none; }
  .shp-cart-content input[type="number"] {
    max-width: 60px; }

.wish-content {
  max-height: 415px; }

.shp-cart-content .prod-name {
  height: auto; }

.shp-cart-content .prod-img img {
  max-height: 80px;
  max-width: 80px; }

.shp-cart-content .prod-img {
  height: 80px;
  line-height: 80px;
  padding: 0; }

.shp-cart-content .prod-price {
  display: inline; }

.shp-cart-content li {
  border-bottom: 1px solid #ccc;
  padding: 15px 0; }

.shp-cart-content li:last-child {
  padding: 15px 0; }

.wish-content li:last-child {
  border-bottom: 0 none; }

.shp-cart-content .remove-cell-wrapper {
  margin-top: 45px; }

.shp-cart-content .remove-cell {
  padding-top: 0; }

.remove-cell a {

  display: block;
  min-height: 40px;
  min-width: 40px;
  text-decoration: none; 
  }

.cart-close {
  padding: 5px 0;
  position: absolute;
  top: -10px;
  right: 5px;
  z-index: 10; }

.cart-close a {
  color: #666;
  font-size: 170%;
  font-weight: bold; }

.cart-close a:hover, a#showCart:hover {
  text-decoration: none; }

.pop-cart-button {
  background: #454756 none repeat scroll 0 0;
  color: #fff;
  cursor: pointer;
  margin: 20px 0;
  padding: 8px 30px;
  text-align: center; }

body {
  color: #000; }

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0; }
  .breadcrumb .divider {
    display: none; }
  .breadcrumb span, .breadcrumb a {
    color: #000;
    display: inline-block; }
	.breadcrumb li.active span{
		font-weight:bold;
	}
  .breadcrumb li:first-child {
    display: none; }
  .breadcrumb li:nth-child(2):before {
    display: none;
    content: ''; }

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