/*------------------------------------------------------------------
Woo Floating Bar
-------------------------------------------------------------------*/
.owp-floating-bar {
  position: fixed;
  top: 0;
  background-color: #576299;
  width: 100%;
  height: 0;
  z-index: 9999;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.owp-floating-bar.show {
  height: 66px;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  visibility: visible;
}

.owp-floating-bar .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  height: 66px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.owp-floating-bar .right {
      display: flex;
    align-items: center;
  text-align: right;
}

.owp-floating-bar p.selected {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.owp-floating-bar h2.entry-title {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  border: 0;
}

.owp-floating-bar .product_price p {
  font-size: 16px;
  font-weight: 600;
  margin: 0 30px 0 0;
}

.owp-floating-bar .product_price del {
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}

.owp-floating-bar .product_price del .amount,
.owp-floating-bar .product_price .amount,
.owp-floating-bar .product_price .woocommerce-price-suffix {
  color: #fff;
}

.owp-floating-bar form.cart .quantity {
    display: inline-block;
    vertical-align: middle;
    float: none;
    overflow: unset;
}

.owp-floating-bar form.cart .quantity .minus,
.owp-floating-bar form.cart .quantity .plus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  border: 0;
}

.owp-floating-bar form.cart .quantity .minus:hover,
.owp-floating-bar form.cart .quantity .plus:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.owp-floating-bar form.cart .quantity .qty {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
}

.owp-floating-bar button.button {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  height: 46px;
  padding: 0 40px;
}

.owp-floating-bar button.button:hover, .owp-floating-bar button.button:focus {
  background-color: #f1f1f1;
}

.owp-floating-bar .added_to_cart {
  display: none;
}

.owp-floating-bar .out-of-stock {
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.boxed-layout .owp-floating-bar {
  width: 1280px;
  max-width: 100%;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  body {
    margin-bottom: 66px;
  }
  .owp-floating-bar {
    top: auto !important;
    bottom: 0;
  }
  #scroll-top {
    bottom: 80px;
  }
}
@media screen and (max-width: 799px) {
 .owp-floating-bar .left,
  .owp-floating-bar .right {
  	width: 100%;
  	}
  .owp-floating-bar .right {
  	line-height: 1;
  	justify-content: right;
  	}
  .owp-floating-bar button.button {
    height: 30px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 499px) {
 .owp-floating-bar .left,
 .owp-floating-bar .product_price,
 .owp-floating-bar form.cart .quantity {
 	display: none;
 	}
 .owp-floating-bar .right {
 	display: block;
 	text-align: center;
 	}
 .owp-floating-bar button.button {
 	    height: 46px;
    padding: 0 40px;
    }
}

@media screen and (max-width: 280px) {
  .owp-floating-bar {
    display: none;
  }
  body {
    margin-bottom: 0px;
  }
}
