.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }
  100% {
    -moz-transform: rotateX(0deg);
  }
}
@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }
  100% {
    -o-transform: rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-moz-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-o-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}
@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }
  100% {
    -moz-transform: rotateX(-90deg);
  }
}
@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }
  100% {
    -o-transform: rotateX(-90deg);
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}
/*
 * OwlCarousel
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-controls {
  text-align: center;
}
/* Styling Next and Prev buttons */
.owl-controls .owl-buttons div {
  margin-top: -20px;
  height: 50px;
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 999;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 26px;
  background-color: #333;
}
.owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.owl-controls .owl-prev {
  left: -60px;
}
.owl-controls .owl-next {
  right: -60px;
}
/* Styling Pagination*/
.owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 7px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #fff;
}
.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
  background-color: #fff;
}
/* If PaginationNumbers is true */
.owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.btn-primary {
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
  background-color: #990000;
  font-family: Poppins, Arial, sans-serif;
  transition: all 0.5s;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #333;
}
.btn-secondary {
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
  background-color: #990000;
  font-family: Poppins, Arial, sans-serif;
  transition: all 0.5s;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  border-color: #262e31;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #333;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #333;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: #fff;
  background-color: #0c0f10;
}
img {
  max-width: 100%;
  height: auto;
}
input[type=text],
textarea {
  border: 1px solid #666;
  background-color: #fff;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  animation: fadeIn 1 1s ease;
  display: block;
}
.vc_row.vc_row-fluid {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.vc_row.vc_inner {
  margin-left: -15px;
  margin-right: -15px;
}
.vc_row > .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.vc_row.overlay-enable {
  position: relative;
}
.vc_row .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.vc_row.parallax {
  background-attachment: fixed;
  background-position: 50% 50%;
}
.vc_row .wpb_content_element {
  margin-bottom: 0;
}
.vc_row .wpb_content_element .dropcap-second,
.vc_row .wpb_content_element .dropcap-primary {
  font-size: 60px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  float: left;
  text-transform: uppercase;
  margin: 9px 25px 0 0;
  line-height: 1;
}
.vc_row .wpb_content_element .dropcap-primary {
  color: #cc3333;
}
.vc_row .wpb_content_element .dropcap-third,
.vc_row .wpb_content_element .dropcap-fourth {
  font-size: 30px;
  color: #999;
  font-weight: 600;
  display: inline-block;
  float: left;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 15px;
  background-color: #f3f3f3;
  margin: 8px 25px 5px 0;
  border-radius: 5px;
}
.vc_row .wpb_content_element .dropcap-fourth {
  color: #fff;
  background-color: #cc3333;
}
.vc_row.vc_row-flex > .container-fluid {
  width: 100%;
}
.vc_row.vc_row-flex > .container > .row,
.vc_row.vc_row-flex > .container-fluid > .row {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.vc_row.vc_row-flex > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-flex > .container-fluid > .row > .vc_column_container > .vc_column-inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.vc_row.vc_row-flex > .container > .row:after,
.vc_row.vc_row-flex > .container-fluid > .row:after,
.vc_row.vc_row-flex > .container > .row:before,
.vc_row.vc_row-flex > .container-fluid > .row:before {
  display: none;
}
.vc_row.vc_row-o-columns-top > .container > .row,
.vc_row.vc_row-o-columns-top > .container-fluid > .row {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.vc_row.vc_row-o-columns-middle > .container > .row,
.vc_row.vc_row-o-columns-middle > .container-fluid > .row {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.vc_row.vc_row-o-columns-bottom > .container > .row,
.vc_row.vc_row-o-columns-bottom > .container-fluid > .row {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.vc_row.vc_row-o-equal-height > .container > .row .vc_column_container,
.vc_row.vc_row-o-equal-height > .container-fluid > .row .vc_column_container {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: flex;
}
.vc_row.vc_row-o-content-top > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-top > .container-fluid > .row > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.vc_row.vc_row-o-content-middle > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-middle > .container-fluid > .row > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vc_row.vc_row-o-content-bottom > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-bottom > .container-fluid > .row > .vc_column_container > .vc_column-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.product-carousel.woocommerce ul.products {
  margin-left: -5px;
  margin-right: -5px;
}
.product-carousel.woocommerce ul.products.owl-carousel li.product {
  width: 100%;
}
.product-carousel.woocommerce ul.products li.product {
  padding-left: 5px;
  padding-right: 5px;
}
.product-carousel.woocommerce ul.products li.product h3 {
  font-size: 18px;
}
.product-carousel.woocommerce ul.products li.product .star-rating {
  display: block;
}
.product-carousel.woocommerce ul.products li.product h3 + .star-rating {
  display: none;
}
.product-carousel.woocommerce ul.products li.product .price {
  font-weight: 400;
}
.product-carousel .footer-link {
  text-align: center;
}
.product-carousel .footer-link .link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  margin-top: 20px;
}
.product-carousel .footer-link .link:hover {
  color: #990000;
  border-color: #990000;
}
.product-carousel.has-navigation {
  overflow: hidden;
}
.product-carousel.has-navigation ul.products li.product .product-content-thumbnails > a:before {
  transition: 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
  opacity: 0;
}
.product-carousel.has-navigation ul.products .owl-item.active li.product .product-content-thumbnails > a {
  position: relative;
  display: block;
}
.product-carousel.has-navigation ul.products .owl-item.active li.product .product-content-thumbnails > a:before {
  opacity: 1;
}
.product-carousel.has-navigation ul.products .owl-item.active li.product .footer-product {
  z-index: 10;
}
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-prev,
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-next {
  position: absolute;
  top: 40%;
  transform: translate(0, -40%);
  background-color: transparent;
  color: #999;
  font-size: 72px;
  height: auto;
}
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-prev:hover,
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-next:hover {
  color: #000;
}
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-prev {
  left: 150px;
}
.product-carousel.has-navigation ul.products .owl-controls .owl-buttons .owl-next {
  right: 150px;
}
.product-carousel.has-navigation ul.products .owl-controls .owl-pagination {
  display: none;
}
.product-carousel .owl-controls .owl-pagination .owl-page span {
  width: 20px;
  height: 20px;
  background-color: #d3e0e1;
  transition: all 0.5s;
}
.product-carousel .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #aac4c7;
}
.product-carousel .owl-controls .owl-pagination .owl-page.active span {
  background-color: #aac4c7;
}
.product-carousel.style-2 .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.2;
  font-size: 18px;
  color: #000;
}
.product-carousel.style-2 ul.products {
  margin-left: -15px;
  margin-right: -15px;
}
.product-carousel.style-2 .mrbara-products {
  margin-top: 20px;
}
.product-carousel.style-2 .mrbara-products li {
  margin: 20px 0;
}
.product-carousel.style-2 .mrbara-products li .product-thumbnail {
  width: 85px;
  float: left;
}
.product-carousel.style-2 .mrbara-products li .product-thumbnail .ribbons {
  display: none;
}
.product-carousel.style-2 .mrbara-products li .product-content {
  padding-left: 110px;
}
.product-carousel.style-2 .mrbara-products li .product-content .product-cat {
  display: none;
}
.product-carousel.style-2 .mrbara-products li .product-content .product-title {
  display: block;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  padding-bottom: 15px;
}
.product-carousel.style-2 .mrbara-products li .product-content .price {
  color: #669900;
  font-size: 18px;
}
.product-carousel.style-2 .mrbara-products li .btn-add-to-cart {
  display: none;
}
.product-carousel.style-2 .mrbara-products li:hover .product-title {
  text-decoration: underline;
}
.product-carousel.style-2 .owl-controls .owl-buttons div {
  top: -33px;
  right: 15px;
  background-color: transparent;
  width: auto;
  height: auto;
  color: #999;
  font-size: 20px;
}
.product-carousel.style-2 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.product-carousel.style-2 .owl-controls .owl-buttons div.owl-next i:before {
  content: "\f3d3";
}
.product-carousel.style-2 .owl-controls .owl-buttons div.owl-prev {
  right: 40px;
  left: auto;
}
.product-carousel.style-2 .owl-controls .owl-buttons div.owl-prev i:before {
  content: "\f3d2";
}
.mrbara-product-list .products .product-list {
  display: block;
  overflow: hidden;
  padding: 10px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.5s;
}
.mrbara-product-list .products .product-list:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.mrbara-product-list .products .product-list:hover .product-title {
  text-decoration: underline;
}
.mrbara-product-list .products .product-list:hover .btn-add-to-cart,
.mrbara-product-list .products .product-list:hover .added_to_cart.wc-forward {
  opacity: 1;
}
.mrbara-product-list .products .product-list span.ribbon {
  display: none;
}
.mrbara-product-list .products .product-list .product-thumbnail {
  float: left;
  margin-right: 25px;
}
.mrbara-product-list .products .product-list .product-thumbnail img {
  max-width: 136px;
  height: auto;
}
.mrbara-product-list .products .product-list .product-content .product-cat {
  line-height: 1;
}
.mrbara-product-list .products .product-list .product-content .product-cat .cat-link {
  font-size: 12px;
  color: #999;
  transition: all 0.5s;
}
.mrbara-product-list .products .product-list .product-content .product-cat .cat-link:hover {
  color: #000;
}
.mrbara-product-list .products .product-list .product-content .product-title {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 20px;
}
.mrbara-product-list .products .product-list .product-content .price .amount {
  font-size: 20px;
  color: #669900;
}
.mrbara-product-list .products .product-list .product-content .price del .amount {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}
.mrbara-product-list .products .product-list .product-content .price ins {
  text-decoration: none;
}
.mrbara-product-list .products .product-list .product-content .price ins .amount {
  font-size: 20px;
  color: #cc0000;
}
.mrbara-product-list .products .product-list .btn-add-to-cart,
.mrbara-product-list .products .product-list .added_to_cart.wc-forward {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background-color: #cc0000;
  cursor: pointer;
  padding: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  color: #fff;
  -webkit-box-shadow: none;
  text-shadow: none;
  transition: 0.5s;
  min-width: inherit;
  overflow: hidden;
  text-align: center;
  opacity: 0;
}
.mrbara-product-list .products .product-list .btn-add-to-cart:hover,
.mrbara-product-list .products .product-list .added_to_cart.wc-forward:hover {
  background-color: #333;
}
.mrbara-product-list .products .product-list .btn-add-to-cart:hover,
.mrbara-product-list .products .product-list .added_to_cart.wc-forward:hover {
  text-decoration: none;
}
.mrbara-product-list .products .product-list .btn-add-to-cart {
  font-size: 0;
}
.mrbara-product-list .products .product-list .btn-add-to-cart.added {
  display: none;
}
.mrbara-product-list .products .product-list .btn-add-to-cart i {
  left: 14px;
  font-size: 20px;
}
.mrbara-product-list .products .product-list .btn-add-to-cart i:before {
  line-height: 38px;
  content: "\f110";
}
.mrbara-product-list .products .product-list .btn-add-to-cart.loading {
  background-color: #333;
}
.mrbara-product-list .products .product-list .btn-add-to-cart.loading i:before {
  content: "\f29c";
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.mrbara-product-list .products .product-list .added_to_cart.wc-forward {
  font-size: 0;
}
.mrbara-product-list .products .product-list .added_to_cart.wc-forward:before {
  position: absolute;
  width: 38px;
  height: 38px;
  line-height: 38px;
  top: 9px;
  left: 1px;
  content: '\f121';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 18px;
}
.mrbara-products .grid-link {
  text-align: center;
  margin-top: 20px;
}
.mrbara-products .grid-link .link {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 1;
}
.mrbara-products .grid-link .link:hover {
  color: #990000;
  border-color: #990000;
}
.mrbara-products.mrbara-grid-cats .title {
  padding-bottom: 25px;
}
.mrbara-products.mrbara-grid-cats .title .subtitle {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  display: block;
  float: inherit;
}
.mrbara-products.mrbara-grid-cats .filters-dropdown {
  margin-bottom: 35px;
}
.mrbara-products.mrbara-grid-cats .filters-dropdown ul.option-set li {
  padding: 0 15px;
  font-size: 16px;
  font-family: Poppins, Arial, sans-serif;
}
.mrbara-products.mrbara-grid-cats ul.products li.product {
  transition: none;
}
.mrbara-products.mrbara-product-list .products li {
  margin-bottom: 30px;
}
.mrbara-products.mrbara-product-list .products .product-list {
  padding: 0;
  border: none;
}
.mrbara-products.mrbara-product-list .products .product-list:hover .btn-add-to-cart,
.mrbara-products.mrbara-product-list .products .product-list:hover .added_to_cart.wc-forward {
  display: none;
}
.mrbara-products.mrbara-product-list .products .product-list .product-thumbnail img {
  max-width: 85px;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .product-cat {
  display: none;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .product-title {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .price .amount {
  font-size: 20px;
  color: #669900;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .price del .amount {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .price ins {
  text-decoration: none;
}
.mrbara-products.mrbara-product-list .products .product-list .product-content .price ins .amount {
  font-size: 20px;
  color: #cc0000;
}
.mrbara-products.font-semibold .title .subtitle {
  font-weight: 600;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied,
.mrbara-newletter.newsletter-style2 .b-form .letter-fied {
  position: relative;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied input[type=email],
.mrbara-newletter.newsletter-style2 .b-form .letter-fied input[type=email] {
  width: 100%;
  border: none;
  height: 60px;
  padding: 10px 180px 10px 30px;
  outline: inherit;
  border-radius: 30px;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied input[type=submit],
.mrbara-newletter.newsletter-style2 .b-form .letter-fied input[type=submit] {
  position: absolute;
  width: 160px;
  height: 60px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #990000;
  font-size: 14px;
  border: none;
  border-radius: 0 30px 30px 0;
  text-transform: uppercase;
  font-family: Montserrat, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
}
.mrbara-newletter.newsletter-style1 .b-content .title {
  padding-left: 0;
  font-size: 30px;
  color: #000;
  line-height: 60px;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied input[type=email] {
  background-color: #b00000;
  color: #ff9999;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied input[type=submit] {
  color: #fff;
  background-color: transparent;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ff9999;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ff9999;
  opacity: 1;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ff9999;
  opacity: 1;
}
.mrbara-newletter.newsletter-style1 .b-form .letter-fied :-ms-input-placeholder {
  color: #ff9999;
}
.mrbara-newletter.newsletter-style2 .b-content {
  width: 41.6%;
}
.mrbara-newletter.newsletter-style2 .b-content .title {
  padding-left: 100px;
  font-size: 36px;
  line-height: 60px;
  position: relative;
  color: #000;
}
.mrbara-newletter.newsletter-style2 .b-content .title span {
  font-weight: 700;
  color: #990000;
}
.mrbara-newletter.newsletter-style2 .b-content .title:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 70px;
  height: 1px;
  content: "";
  background-color: #000;
}
.mrbara-newletter.newsletter-style2 .b-form {
  width: 58.4%;
}
.mrbara-newletter.newsletter-style3 .b-content {
  width: 100%;
  color: #000;
}
.mrbara-newletter.newsletter-style3 .b-content .sub-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 20px;
  line-height: 1;
}
.mrbara-newletter.newsletter-style3 .b-content .title {
  margin-top: 20px;
  font-size: 30px;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
}
.mrbara-newletter.newsletter-style3 .b-content .desc {
  font-size: 14px;
  color: #000;
  line-height: 1;
  margin-top: 35px;
  margin-bottom: 90px;
}
.mrbara-newletter.newsletter-style3 .b-form {
  width: 100%;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields {
  position: relative;
  display: inline-block;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields:before {
  content: '\f422';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 0;
  color: #000;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields:after {
  content: '\f3d6';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 24px;
  position: absolute;
  top: 5px;
  right: 0;
  color: #000;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=email] {
  border: 0;
  border-bottom: 1px solid #000;
  padding: 8px 30px;
  min-width: 275px;
  background-color: transparent;
  outline: none;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #000;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000;
  opacity: 1;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000;
  opacity: 1;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
.mrbara-newletter.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=submit] {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 41px;
  width: 30px;
  text-indent: -9999px;
  background-color: transparent;
  border: 0;
  outline: none;
  z-index: 9;
}
.mrbara-newletter.newsletter-style4 .b-content {
  width: 100%;
}
.mrbara-newletter.newsletter-style4 .b-content .title {
  padding-left: 70px;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 13px;
  line-height: 1;
}
.mrbara-newletter.newsletter-style4 .b-content .desc {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 2;
}
.mrbara-newletter.newsletter-style4 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style4 .b-form {
  width: 100%;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=email] {
  border: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  padding: 10px 30px 10px 0;
  background-color: transparent;
  outline: none;
  width: 100%;
  margin-top: 50px;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ccc;
  opacity: 1;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ccc;
  opacity: 1;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}
.mrbara-newletter.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=submit] {
  margin-top: 55px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  padding: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  padding-bottom: 5px;
  letter-spacing: 1px;
}
.mrbara-newletter.newsletter-style5 {
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-content {
  width: 100%;
}
.mrbara-newletter.newsletter-style5 .b-content .title {
  font-size: 36px;
  color: #000;
  line-height: 1;
}
.mrbara-newletter.newsletter-style5 .b-content .desc {
  font-size: 14px;
  color: #666;
  padding-top: 30px;
}
.mrbara-newletter.newsletter-style5 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style5 .b-form {
  width: 100%;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied {
  margin: 0 auto;
  max-width: 770px;
  width: 100%;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=email] {
  border: 0;
  padding: 24px 30px;
  background-color: #fff;
  outline: none;
  width: 100%;
  display: block;
  margin-top: 60px;
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999;
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
  text-align: center;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=submit] {
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
  background-color: #990000;
  font-family: Poppins, Arial, sans-serif;
  transition: all 0.5s;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  min-width: 170px;
  border-radius: 5px;
  height: 56px;
  line-height: 56px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
  letter-spacing: 2px;
  padding: 0 20px;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=submit]:hover,
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=submit]:focus {
  background-color: #333;
}
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=submit]:hover,
.mrbara-newletter.newsletter-style5 .b-form .letter-fied input[type=submit]:focus {
  background-color: #333;
}
.mrbara-newletter.newsletter-style5.font-semibold .b-content .title {
  font-weight: 600;
}
.mrbara-newletter.newsletter-style6 {
  background-color: transparent;
}
.mrbara-newletter.newsletter-style6 .b-form .letter-fied {
  position: relative;
}
.mrbara-newletter.newsletter-style6 .b-form .letter-fied input[type=email] {
  width: 100%;
  height: 50px;
  padding: 10px 190px 10px 30px;
  outline: inherit;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.mrbara-newletter.newsletter-style6 .b-form .letter-fied input[type=submit] {
  position: absolute;
  width: 170px;
  height: 50px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #990000;
  font-size: 16px;
  border: none;
  font-family: Montserrat, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.5s;
}
.mrbara-newletter.newsletter-style6 .b-form .letter-fied input[type=submit]:hover {
  background-color: #000;
}
.mrbara-newletter.newsletter-style6 .b-content {
  position: relative;
}
.mrbara-newletter.newsletter-style6 .b-content:before {
  position: absolute;
  top: -5px;
  left: 15px;
  content: '\f384';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 48px;
  color: #990000;
}
.mrbara-newletter.newsletter-style6 .b-content .title {
  padding-left: 70px;
  font-size: 24px;
  font-family: Poppins, Arial, sans-serif;
  color: #000;
  line-height: 1;
}
.mrbara-newletter.newsletter-style6 .b-content .desc {
  padding-left: 70px;
}
.mrbara-newletter.newsletter-style6 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style7 {
  background-color: transparent;
  padding-top: 70px;
  padding-bottom: 70px;
}
.mrbara-newletter.newsletter-style7 .b-form {
  padding-right: 0;
}
.mrbara-newletter.newsletter-style7 .b-form .letter-fied {
  position: relative;
}
.mrbara-newletter.newsletter-style7 .b-form .letter-fied input[type=email] {
  width: 100%;
  padding: 0 190px 0 30px;
  outline: inherit;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 53px;
  line-height: 53px;
}
.mrbara-newletter.newsletter-style7 .b-form .letter-fied input[type=submit] {
  position: absolute;
  width: 170px;
  height: 54px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #990000;
  font-size: 16px;
  border: none;
  font-family: Montserrat, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.5s;
}
.mrbara-newletter.newsletter-style7 .b-form .letter-fied input[type=submit]:hover {
  background-color: #000;
}
.mrbara-newletter.newsletter-style7 .b-content {
  padding-left: 0;
  position: relative;
}
.mrbara-newletter.newsletter-style7 .b-content:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '\f384';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 48px;
  color: #990000;
}
.mrbara-newletter.newsletter-style7 .b-content .title {
  padding-left: 55px;
  font-size: 24px;
  color: #000;
  line-height: 1;
  margin-bottom: 5px;
}
.mrbara-newletter.newsletter-style7 .b-content .desc {
  padding-left: 55px;
}
.mrbara-newletter.newsletter-style7 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style7.font-semibold .b-content .title {
  font-weight: 600;
}
.mrbara-newletter.newsletter-style8 .b-content {
  width: 100%;
}
.mrbara-newletter.newsletter-style8 .b-content .title {
  font-family: Oswald, "Times New Roman", serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 15px;
  color: #990000;
  line-height: 1;
  margin-bottom: 65px;
}
.mrbara-newletter.newsletter-style8 .b-content .desc {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 2;
}
.mrbara-newletter.newsletter-style8 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style8 .b-form {
  width: 100%;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields input[type=email] {
  border: 0;
  padding: 15px 25px;
  background-color: #fff;
  outline: none;
  width: 100%;
  margin-top: 35px;
  border-radius: 5px;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields input[type=submit] {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #990000;
  border: none;
  text-transform: uppercase;
  padding: 16px 35px 14px 35px;
  border-radius: 5px;
  transition: all 0.5s;
  letter-spacing: 1px;
}
.mrbara-newletter.newsletter-style8 .b-form .mc4wp-form-fields input[type=submit]:hover {
  background-color: #000;
}
.mrbara-newletter.newsletter-style9 .b-content {
  width: 100%;
}
.mrbara-newletter.newsletter-style9 .b-content .title {
  font-size: 36px;
  color: #000;
  line-height: 1;
  padding-bottom: 25px;
  position: relative;
  padding-top: 55px;
}
.mrbara-newletter.newsletter-style9 .b-content .title span {
  color: #990000;
}
.mrbara-newletter.newsletter-style9 .b-content .title:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #000;
  height: 1px;
  width: 72px;
}
.mrbara-newletter.newsletter-style9 .b-content .desc {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}
.mrbara-newletter.newsletter-style9 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.newsletter-style9 .b-form {
  width: 100%;
  margin-top: 70px;
}
.mrbara-newletter.newsletter-style9 .b-form .mc4wp-form-fields {
  position: relative;
}
.mrbara-newletter.newsletter-style9 .b-form .mc4wp-form-fields:after {
  position: absolute;
  content: "\f30f";
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  transform: translate(0, 0);
  right: 0;
  font-size: 30px;
  color: #999;
  top: 18px;
}
.mrbara-newletter.newsletter-style9 .b-form .mc4wp-form-fields input[type=email] {
  line-height: 65px;
  height: 65px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}
.mrbara-newletter.newsletter-style9 .b-form .mc4wp-form-fields input[type=submit] {
  position: absolute;
  right: 0;
  top: 12px;
  opacity: 0;
  width: 30px;
  height: 40px;
  padding: 0;
  border: none;
  z-index: 100;
}
.mrbara-newletter.newsletter-style10 {
  background-color: transparent;
  padding-top: 70px;
  padding-bottom: 70px;
}
.mrbara-newletter.newsletter-style10 .b-form {
  padding-right: 0;
}
.mrbara-newletter.newsletter-style10 .b-form .letter-fied {
  position: relative;
}
.mrbara-newletter.newsletter-style10 .b-form .letter-fied input[type=email] {
  width: 100%;
  height: 50px;
  padding: 10px 190px 10px 30px;
  outline: inherit;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.mrbara-newletter.newsletter-style10 .b-form .letter-fied input[type=submit] {
  position: absolute;
  width: 170px;
  height: 50px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #990000;
  font-size: 16px;
  border: none;
  font-family: Montserrat, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.5s;
}
.mrbara-newletter.newsletter-style10 .b-form .letter-fied input[type=submit]:hover {
  background-color: #000;
}
.mrbara-newletter.newsletter-style10 .b-content {
  padding-left: 0;
  position: relative;
}
.mrbara-newletter.newsletter-style10 .b-content .title {
  font-size: 30px;
  font-family: Prata, "Times New Roman", serif;
  color: #000;
  line-height: 1;
  margin-bottom: 2px;
}
.mrbara-newletter.newsletter-style10 .b-content .desc p {
  margin-bottom: 0;
}
.mrbara-newletter.light-skin .b-content .title {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style2 .b-content .title:before {
  background-color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-content {
  color: #e6e6e6;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-content .title {
  color: #e6e6e6;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-content .desc {
  color: #999;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields:before {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields:after {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=email] {
  border-color: #e6e6e6;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 1;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style3 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=submit] {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 41px;
  width: 30px;
  text-indent: -9999px;
  background-color: transparent;
  border: 0;
  outline: none;
  z-index: 9;
}
.mrbara-newletter.light-skin.newsletter-style4 .b-content .title {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style4 .b-content .desc {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style4 .b-form {
  width: 100%;
}
.mrbara-newletter.light-skin.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=email] {
  border-color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style4 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=submit] {
  color: #fff;
  border-color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style5 .b-form .letter-fied .mc4wp-form .mc4wp-form-fields input[type=email] {
  background-color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style8 .b-content .desc {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style9 .b-content .title:after {
  background-color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style9 .b-form .mc4wp-form-fields input[type=email] {
  background-color: transparent;
}
.mrbara-newletter.light-skin.newsletter-style10 .b-form .letter-fied input[type=email] {
  background-color: #f7f7f7;
}
.mrbara-newletter.light-skin.newsletter-style10 .b-form .letter-fied input[type=submit] {
  color: #fff;
}
.mrbara-newletter.light-skin.newsletter-style10 .b-form .letter-fied input[type=submit]:hover {
  background-color: #000;
}
.mrbara-newletter.light-skin.newsletter-style10 .b-content .title {
  color: #fff;
}
.mrbara-newletter.textbox-gray .b-form .letter-fied input[type=email] {
  background-color: #f7f7f7;
}
.mr-sliders {
  height: 644px;
  overflow: hidden;
  transition: 0.5s;
  direction: ltr;
}
.mr-sliders .loading {
  height: 644px;
  position: relative;
}
.mr-sliders .loading i {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  opacity: 1;
  width: 100%;
  background-color: #fff;
  text-align: center;
  font-size: 50px;
}
.mr-sliders .loading i:before {
  animation: spin 2s linear infinite;
}
.mr-sliders .sliders-frame {
  position: relative;
}
.mr-sliders .mr-slider {
  float: left;
  margin-left: 50px;
  margin-right: 50px;
  position: relative;
  overflow: hidden;
  width: 1170px;
}
.mr-sliders .mr-slider.slider-style-1 .s-link span {
  display: none;
}
.mr-sliders .mr-slider.slider-style-2 .s-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
}
.mr-sliders .mr-slider.slider-style-2 .s-link span {
  float: left;
}
.mr-sliders .mr-slider.slider-style-2 .s-link i {
  padding-left: 10px;
  font-size: 18px;
  float: left;
}
.mr-sliders .mr-slider.slider-style-2 .s-link i:before {
  content: "\f488";
}
.mr-sliders .mr-slider.slider-style-2 .s-subtitle {
  color: #999;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 100px;
  margin-bottom: 40px;
  line-height: 1.4;
}
.mr-sliders .mr-slider.slider-style-2 .s-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1;
  margin-bottom: 30px;
}
.mr-sliders .mr-slider.slider-style-2 .s-desc {
  color: #666;
  font-size: 13px;
  max-width: 285px;
  min-height: 140px;
  vertical-align: top;
}
.mr-sliders .mr-slider.slider-style-3 .s-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 0 30px;
  line-height: 47px;
  height: 47px;
  border-radius: 5px;
}
.mr-sliders .mr-slider.slider-style-3 .s-link i {
  display: none;
}
.mr-sliders .mr-slider.slider-style-3.active .s-link {
  background-color: #990000;
}
.mr-sliders .mr-slider.slider-style-3.active .s-link:hover {
  background-color: #000;
  color: #fff;
}
.mr-sliders .mr-slider.slider-style-3 .s-subtitle {
  color: #999;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.mr-sliders .mr-slider.slider-style-3 .s-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1;
  margin-bottom: 30px;
}
.mr-sliders .mr-slider .s-content {
  position: absolute;
  top: 50%;
  left: 140px;
  transform: translate(0, -50%);
}
.mr-sliders .mr-slider .link-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -9999px;
  opacity: 0;
}
.mr-sliders .mr-slider .s-title {
  font-family: Oswald, "Times New Roman", serif;
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 30px;
  margin-bottom: 50px;
  font-weight: 400;
}
.mr-sliders .mr-slider .s-title p {
  margin: 0;
}
.mr-sliders .mr-slider .s-desc {
  font-size: 14px;
  color: #7c9da0;
}
.mr-sliders .mr-slider .s-cat {
  font-size: 14px;
  color: #7c9da0;
}
.mr-sliders .mr-slider .s-link {
  font-size: 24px;
  color: #000;
  margin-top: 20px;
  display: inline-block;
}
.mr-sliders .mr-slider .s-link:hover {
  color: #990000;
}
.mr-sliders .mr-slider img {
  max-width: 100%;
  height: auto;
}
.mr-sliders .mr-slider.first,
.mr-sliders .mr-slider.last {
  position: absolute;
  top: 0;
  left: -35%;
  z-index: -1;
}
.mr-sliders .mr-slider.last {
  right: -35%;
  left: inherit;
}
.mr-sliders .pages {
  text-align: center;
  display: none;
  margin-top: 40px;
}
.mr-sliders .pages li {
  cursor: pointer;
  list-style: none;
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: inline-block;
  margin: 0 10px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #c0cacb;
  text-indent: -999px;
  font-size: 0;
}
.mr-sliders .pages li:before {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: transparent;
  border-radius: 50%;
}
.mr-sliders .pages li.active:before {
  background-color: #c0cacb;
}
.mr-sliders .scrollbar {
  margin: 100px 0 0 0;
  height: 1px;
  background: #e1e1e1;
  line-height: 0;
  position: relative;
}
.mr-sliders .scrollbar .handle {
  width: 200px;
  height: 3px;
  background: #c0cacb;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mr-sliders .scrollbar .handle .mousearea {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 20px;
}
.mr-sliders .navigation {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
}
.mr-sliders .navigation .container {
  position: relative;
}
.mr-sliders .navigation .container .btn-prev,
.mr-sliders .navigation .container .btn-next {
  position: absolute;
  top: 0;
  left: -58px;
}
.mr-sliders .navigation .container .btn-next {
  right: -55px;
  left: auto;
}
.mr-sliders .btn-prev,
.mr-sliders .btn-next {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
  transition: 0.5s;
}
.mr-sliders .btn-prev:hover,
.mr-sliders .btn-next:hover {
  color: #000;
}
.mr-sliders.hide-navigation .btn-prev,
.mr-sliders.hide-navigation .btn-next {
  display: none;
}
.mr-sliders.hide-scrollbar .scrollbar {
  display: none;
}
.mr-sliders.loaded {
  height: auto;
}
.mr-sliders.loaded .loading {
  display: none;
}
.slider-container {
  width: 970px;
}
.section-title .desc {
  margin-top: 35px;
}
.section-title .desc p {
  margin-bottom: 0;
}
.section-title .desc .mr-btn-buy {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  padding-right: 28px;
}
.section-title .desc .mr-btn-buy:after {
  position: absolute;
  content: '\e046';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  transform: translate(0, 0);
  right: 0;
  top: -1px;
  color: #990000;
  padding-right: 5px;
}
.section-title .desc .mr-btn-buy:hover {
  color: #990000;
}
.section-title.style-1 .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #990000;
  line-height: 1;
  letter-spacing: 15px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.section-title.style-1 .title {
  font-size: 48px;
  color: #000;
  line-height: 1.2;
}
.section-title.style-1.light-skin .title {
  color: #fff;
}
.section-title.style-2 .subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.section-title.style-2 .subtitle span {
  color: #ccc;
  font-size: 36px;
  font-weight: 400;
  font-family: 'Great Vibes', cursive;
}
.section-title.style-2 .title {
  color: #000;
  font-size: 72px;
  line-height: 1;
  margin: 0;
}
.section-title.style-2.light-skin .title,
.section-title.style-2.light-skin .subtitle {
  color: #fff;
}
.section-title.style-3 .title {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 13px;
  line-height: 1;
}
.section-title.style-3 .subtitle {
  font-size: 12px;
  color: #999;
  font-weight: 400;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 55px;
  position: relative;
}
.section-title.style-3 .subtitle:after {
  bottom: 0;
  left: 50%;
  content: "";
  position: absolute;
  background-color: rgba(51, 51, 51, 0.5);
  width: 100px;
  height: 1px;
  transform: translate(-50%, 0);
}
.section-title.style-3 .desc {
  margin-top: 40px;
}
.section-title.style-4 {
  position: relative;
  padding-left: 115px;
  padding-bottom: 80px;
  margin-left: -2px;
}
.section-title.style-4 .title {
  max-width: 30px;
  line-height: 1.6;
  text-align: center;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 13px;
  position: absolute;
  top: 50px;
  left: 0;
}
.section-title.style-4 .title:before {
  position: absolute;
  content: "";
  background-color: #ababab;
  height: 64px;
  width: 1px;
  left: 7px;
  top: -136px;
}
.section-title.style-4 .desc {
  margin-top: 0;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 2;
}
.section-title.light-skin .desc {
  color: #ccc;
}
.feature-box {
  padding-top: 25px;
  position: relative;
}
.feature-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 4px;
  width: 50px;
  background-color: #990000;
}
.feature-box .title {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.feature-box .title p {
  margin-bottom: 0;
}
.feature-box .desc {
  font-size: 14px;
  color: #999;
  line-height: 2;
  margin-top: 20px;
  padding-right: 50px;
}
.feature-box.white-skin .title {
  color: #000;
}
.feature-box.style-2 {
  padding-top: 0;
}
.feature-box.style-2:before {
  display: none;
}
.feature-box.style-2 .title {
  font-weight: 600;
  font-size: 36px;
  color: #000;
}
.feature-box.style-2 .desc {
  margin-top: 40px;
  padding-right: 0;
}
.video-banner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 21px 53px -6px rgba(0, 0, 0, 0.25);
}
.video-banner .fluid-width-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-banner video {
  object-fit: cover;
  width: 100%;
  display: block;
}
.video-banner .status {
  position: absolute;
  bottom: 40px;
  left: 50px;
  cursor: pointer;
}
.video-banner .status .video-title {
  transition: all 0.5s;
}
.video-banner .status .text-play {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  display: inline-block;
  padding-left: 3px;
  transition: all 0.5s;
}
.video-banner .status .text-pause {
  display: none;
}
.video-banner .status i {
  padding-left: 10px;
  transition: 0.3s;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.video-banner .status i:before {
  line-height: 20px;
}
.video-banner.playing:before {
  display: none;
}
.video-banner.playing .text-play {
  display: none;
}
.video-banner.playing .text-pause {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  display: inline-block;
  padding-left: 3px;
  transition: all 0.5s;
}
.video-banner.playing .video-title {
  opacity: 0;
}
.video-banner.playing i {
  opacity: 0;
}
.video-banner.playing i:before {
  content: "\f210";
}
.video-banner.playing h3 {
  opacity: 0;
}
.video-banner.playing:hover i,
.video-banner.playing:hover h3 {
  opacity: 1;
}
.video-banner.has-title i {
  margin-top: -70px;
}
.video-banner.has-title h3 {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 70px;
  width: 100%;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  padding: 0 20px;
}
.video-banner.video-style2 {
  position: relative;
  box-shadow: none;
}
.video-banner.video-style2.playing .video-desc {
  opacity: 0;
}
.video-banner.video-style2.playing .status {
  border-color: transparent;
}
.video-banner.video-style2.playing:hover .status {
  border-color: #fff;
}
.video-banner.video-style2 .video-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  font-weight: 300;
  margin-top: -90px;
  letter-spacing: -1px;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  line-height: 1.1;
}
.video-banner.video-style2 .status {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 33px;
  padding-left: 5px;
  transition: all 0.5s;
}
.video-banner.video-style2 .status i {
  padding-left: 0;
  font-size: 48px;
}
.video-banner.video-style2 .video-desc {
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
.video-banner.video-style2 .video-desc .status {
  display: none;
}
.video-banner.video-style2 .video-desc p {
  margin-bottom: 0;
}
.video-banner.video-style3 {
  background-color: #fff;
  padding: 20px;
}
.video-banner.video-style3 .banner-content {
  overflow: hidden;
}
.video-banner.video-style4 {
  position: relative;
  box-shadow: none;
}
.video-banner.video-style4.playing .video-title {
  opacity: 1;
}
.video-banner.video-style4.playing .video-desc .v-desc {
  opacity: 0;
}
.video-banner.video-style4 .video-title {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.video-banner.video-style4 .banner-content .status {
  text-align: center;
  line-height: 1;
  position: static;
  display: inline-block;
  margin-top: 20px;
}
.video-banner.video-style4 .banner-content .status i {
  padding-left: 0;
  font-size: 48px;
}
.video-banner.video-style4 .video-desc {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fefefe;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 770px;
  width: 100%;
  text-align: center;
}
.video-banner.video-style4 .video-desc p {
  margin-bottom: 0;
}
.video-banner.video-style5 {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 53px -6px rgba(0, 0, 0, 0.25);
}
.video-banner.video-style5 .banner-content {
  overflow: hidden;
}
.video-banner.video-style5 .status {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.video-banner.video-style5 .status i {
  width: 65px;
  height: 65px;
  font-size: 36px;
  color: #000;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  padding-left: 5px;
  transition: none;
}
.video-banner.video-style5 .status i:before {
  line-height: 63px;
}
.video-banner.video-style5.playing .status {
  opacity: 0;
}
.video-banner.video-style5.playing .status i {
  padding-left: 0;
}
.video-banner.video-style5.playing .status i:before {
  line-height: 64px;
}
.video-banner.video-style5.playing:hover .status {
  opacity: 1;
}
.mrbara-about .about-bg {
  background-color: #fff;
  box-shadow: 3px 3px 3px #d0d0d0;
}
.mrbara-about .about-bg > .row {
  display: flex;
  align-items: center;
}
.mrbara-about .about-content {
  padding: 80px 0;
  max-width: 470px;
}
.mrbara-about .about-content .title {
  font-size: 24px;
  color: #000;
  line-height: 1;
  padding-bottom: 40px;
}
.mrbara-about .about-content .desc {
  font-size: 14px;
  color: #999;
  line-height: 2;
  padding-bottom: 60px;
}
.mrbara-about .about-content .about-info {
  color: #999;
  font-weight: 300;
}
.mrbara-about .about-content .about-info .name,
.mrbara-about .about-content .about-info .job {
  display: inline-block;
}
.mrbara-about .about-content .about-info .name {
  font-size: 14px;
  font-weight: 600;
  padding-right: 10px;
  color: #000;
}
.mrbara-about .about-content .about-info .job {
  padding-left: 10px;
}
.mrbara-about .video-content .video-banner {
  box-shadow: none;
}
.mrbara-about .video-content .video-banner .bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 10;
  transition: 0.5s;
}
.mrbara-about .video-content .video-banner .status {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.mrbara-about .video-content .video-banner .status .video-title {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 15px;
}
.mrbara-about .video-content .video-banner .status .video-title p {
  margin-bottom: 0;
}
.mrbara-about .video-content .video-banner.playing .bg-overlay {
  display: none;
}
.mrbara-about.gray-skin .about-bg {
  background-color: #f5f5f5;
  box-shadow: none;
}
.mrbara-about.font-normal .about-content .title {
  font-weight: 400;
}
.mrbara-icon-box {
  display: table;
  margin: 0 auto;
  position: relative;
}
.mrbara-icon-box.text-left {
  display: block;
  margin: 0;
  overflow: hidden;
}
.mrbara-icon-box .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mrbara-icon-box .icon-box-wapper {
  float: left;
  display: flex;
  align-items: center;
}
.mrbara-icon-box .icon-box-content {
  float: left;
}
.mrbara-icon-box .i-icon {
  font-size: 36px;
  color: #000;
  float: left;
  margin-right: 30px;
  line-height: 1;
}
.mrbara-icon-box .b-content {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}
.mrbara-icon-box .b-content p {
  line-height: 1.4;
  margin-bottom: 0;
}
.mrbara-icon-box.icon-box-style2 .i-icon {
  color: #990000;
}
.mrbara-icon-box.icon-box-style2.icon-dark .i-icon {
  color: #000;
}
.mrbara-icon-box.icon-box-style2.icon-gray .i-icon {
  color: #999;
}
.mrbara-icon-box.icon-box-style2 .icon-box-content {
  padding-left: 30px;
}
.mrbara-icon-box.icon-box-style2 span {
  margin-right: 0;
}
.mrbara-icon-box.icon-box-style2 .b-content {
  font-weight: 500;
}
.mrbara-icon-box.icon-box-style3 .i-icon {
  color: #fff;
}
.mrbara-icon-box.icon-box-style3 .b-content {
  color: #fff;
}
.mrbara-icon-box.icon-box-style3 .sub-title {
  color: #ccc;
}
.mrbara-icon-box.icon-box-style3 .b-content {
  font-weight: 500;
}
.mrbara-icon-box.icon-box-style4 .b-content {
  color: #000;
}
.mrbara-icon-box.icon-box-style4 .i-icon,
.mrbara-icon-box.icon-box-style4 .sub-title {
  color: #999;
  transition: 0.5s;
}
.mrbara-icon-box.icon-box-style4 .b-content {
  font-weight: 500;
}
.mrbara-icon-box.icon-box-style4:hover .i-icon {
  color: #990000;
}
.mrbara-icon-box.icon-box-style5 .i-icon {
  color: #990000;
}
.mrbara-icon-box.icon-box-style5.icon-dark .i-icon {
  color: #000;
}
.mrbara-icon-box.icon-box-style5.icon-gray .i-icon {
  color: #999;
}
.mrbara-icon-box.icon-box-style5 .b-content {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.mrbara-icon-box.icon-box-style5 .sub-title {
  color: #999;
  transition: 0.5s;
}
.mrbara-icon-box.icon-box-style5 .sub-title {
  font-size: 13px;
}
.mrbara-icon-box.icon-box-style5:hover .i-icon {
  color: #990000;
}
.mrbara-icon-box.icon-opacity {
  opacity: 0.3;
  transition: all 0.5s;
}
.mrbara-icon-box.icon-opacity:hover {
  opacity: 1;
  cursor: pointer;
}
.mrbara-about-2 {
  position: relative;
}
.mrbara-about-2 .mr-verticle-line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #999;
  margin-left: -15px;
  margin-top: 10px;
}
.mrbara-about-2 .col-left {
  padding-left: 0;
  padding-right: 0;
}
.mrbara-about-2 .col-right {
  padding-left: 0;
  padding-right: 0;
}
.mrbara-about-2 .about-content {
  margin-left: -15px;
}
.mrbara-about-2 .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
}
.mrbara-about-2 .title,
.mrbara-about-3 .title {
  font-size: 39px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-bottom: 75px;
}
.mrbara-about-2 .title p,
.mrbara-about-3 .title p {
  margin-bottom: 0;
}
.mrbara-about-2 .desc,
.mrbara-about-3 .desc {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.mrbara-about-2 .about-img,
.mrbara-about-3 .about-img {
  margin-top: 50px;
}
.mrbara-team .team-item {
  text-align: center;
  margin-bottom: 75px;
}
.mrbara-team .team-item .team-img img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
}
.mrbara-team .team-item .team-content {
  margin-top: 30px;
}
.mrbara-team .team-item .team-content .t-name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.mrbara-team .team-item .team-content .t-job {
  font-size: 13px;
  color: #999;
  line-height: 1;
  display: block;
}
.mrbara-image-carousel {
  text-align: center;
}
.mrbara-image-carousel.image-opacity .mrbara-owl-list .image-item {
  opacity: 0.3;
  transition: all 0.5s;
}
.mrbara-image-carousel.image-opacity .mrbara-owl-list .image-item:hover {
  opacity: 1;
  cursor: pointer;
}
.mrbara-image-carousel.style-2 {
  position: relative;
}
.mrbara-image-carousel.style-2 .bx-controls .bx-controls-direction {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.mrbara-image-carousel.style-2 .bx-controls .bx-prev,
.mrbara-image-carousel.style-2 .bx-controls .bx-next {
  width: 25px;
  height: 25px;
  display: block;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.5s;
  color: #fff;
}
.mrbara-image-carousel.style-2 .bx-controls .bx-prev:hover,
.mrbara-image-carousel.style-2 .bx-controls .bx-next:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.mrbara-image-carousel .owl-pagination {
  margin-top: 50px;
}
.mrbara-image-carousel .owl-pagination .owl-page {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #aaa;
  margin: 0 10px;
  position: relative;
  transition: 0.5s;
}
.mrbara-image-carousel .owl-pagination .owl-page span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.mrbara-image-carousel .owl-pagination .owl-page.active {
  border-color: rgba(0, 0, 0, 0.6);
}
.mrbara-image-carousel .owl-pagination .owl-page.active span {
  background-color: rgba(0, 0, 0, 0.6);
}
.mrbara-products-images-carousel .products .product-list {
  text-align: center;
}
.mrbara-products-images-carousel .products .product-list .product-content,
.mrbara-products-images-carousel .products .product-list .btn-add-to-cart {
  display: none;
}
.mrbara-products-images-carousel .products .product-list img {
  max-width: 104px;
}
.mrbara-products-images-carousel .mrbara-owl-list {
  padding: 25px 70px;
  background-color: #fff;
}
.mrbara-products-images-carousel .mrbara-owl-list .product-thumbnail {
  text-align: center;
}
.mrbara-products-images-carousel .mrbara-owl-list .product-thumbnail img {
  border: 1px solid transparent;
  transition: all 0.5s;
}
.mrbara-products-images-carousel .mrbara-owl-list .product-thumbnail:hover img {
  border-color: rgba(0, 0, 0, 0.15);
}
.mrbara-products-images-carousel .mrbara-owl-list .product-thumbnail .ribbons {
  display: none;
}
.mrbara-products-images-carousel .mrbara-owl-list .owl-controls .owl-buttons div {
  background-color: transparent;
  color: #ccc;
  font-size: 36px;
  margin-top: -25px;
  transition: all 0.5s;
}
.mrbara-products-images-carousel .mrbara-owl-list .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-images-carousel .mrbara-owl-list .owl-controls .owl-buttons div.owl-prev {
  left: -45px;
  right: auto;
}
.mrbara-products-images-carousel .mrbara-owl-list .owl-controls .owl-buttons div.owl-next {
  right: -45px;
  left: auto;
}
.mrbara-icon-box-2 .b-icon {
  margin-bottom: 20px;
}
.mrbara-icon-box-2 .b-icon span {
  font-size: 40px;
  line-height: 1;
  color: #000;
}
.mrbara-icon-box-2 .b-icon span:before {
  font-weight: 700;
}
.mrbara-icon-box-2 .b-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.mrbara-icon-box-2 .b-content {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  line-height: 2;
}
.mrbara-icon-box-2 .b-content p {
  line-height: 2;
  margin-bottom: 0;
}
.mrbara-icon-list .icon {
  font-size: 16px;
  color: #666;
  float: left;
  margin-right: 15px;
  transition: all 0.5s;
}
.mrbara-icon-list .desc {
  font-size: 14px;
  color: #666;
}
.mrbara-icon-list:hover {
  cursor: pointer;
}
.mrbara-icon-list.icon-style1:hover .icon {
  color: #990000;
}
.mrbara-icon-list.icon-style2 .icon {
  color: #990000;
}
.mrbara-icon-list.icon-style2:hover .icon {
  color: #666;
}
.mrbara-icon-list.icon-style3 .icon,
.mrbara-icon-list.icon-style4 .icon {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid #999;
  border-radius: 50%;
}
.mrbara-icon-list.icon-style3 .desc,
.mrbara-icon-list.icon-style4 .desc {
  line-height: 35px;
}
.mrbara-icon-list.icon-style3:hover .icon {
  background-color: #990000;
  color: #fff;
  border-color: transparent;
}
.mrbara-icon-list.icon-style4 .icon {
  background-color: #990000;
  color: #fff;
  border-color: transparent;
}
.mrbara-icon-list.icon-style4:hover .icon {
  color: #999;
  background-color: transparent;
  border-color: #999;
}
.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 20px 20px 10px 0;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  outline: none;
  background-color: transparent;
  transition: 0.5s;
  font-size: 14px;
  color: #000;
}
.wpcf7 .wpcf7-form-control-wrap input:focus,
.wpcf7 .wpcf7-form-control-wrap textarea:focus {
  border-color: #000;
}
.wpcf7 .wpcf7-form-control-wrap textarea {
  padding-top: 45px;
  height: 190px;
}
.wpcf7 .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .wpcf7-form-control-wrap :-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-size: 14px;
}
.wpcf7 .wpcf7-form-control-wrap ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-size: 14px;
}
.wpcf7 .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 input[type="submit"] {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 40px;
  background-color: transparent;
  border: 0;
  position: relative;
  padding: 0;
  border-bottom: 1px solid #000;
}
.vc_toggle .vc_toggle_title h4 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: Poppins, Arial, sans-serif;
}
.vc_toggle .vc_toggle_content {
  margin-top: 30px;
}
.vc_toggle .vc_toggle_content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.mrbara-coming-soon {
  width: 100%;
  overflow: hidden;
}
.mrbara-coming-soon .coming-title {
  font-size: 16px;
  color: #e6e6e6;
  font-weight: 600;
  padding-top: 80px;
}
.mrbara-coming-soon .sale-price-date .box {
  display: inline-block;
  padding: 0 30px;
}
.mrbara-coming-soon .sale-price-date .box.timer-day {
  display: block;
  padding-left: 100px;
}
.mrbara-coming-soon .sale-price-date .box.timer-day .timer-content {
  display: inline-block;
}
.mrbara-coming-soon .sale-price-date .box.timer-day .timer-content .day {
  font-size: 200px;
  color: #e6e6e6;
  font-weight: 300;
  line-height: 1;
}
.mrbara-coming-soon .sale-price-date .box.timer-day .timer-content .title {
  float: right;
  font-size: 18px;
  color: #e6e6e6;
  font-weight: 600;
}
.mrbara-coming-soon .sale-price-date .box.timer-minu {
  position: relative;
}
.mrbara-coming-soon .sale-price-date .box.timer-minu:before,
.mrbara-coming-soon .sale-price-date .box.timer-minu:after {
  position: absolute;
  top: 0;
  left: -3px;
  content: ":";
  font-size: 24px;
  font-weight: 600;
  color: #e6e6e6;
}
.mrbara-coming-soon .sale-price-date .box.timer-minu:after {
  right: -3px;
  left: auto;
}
.mrbara-coming-soon .sale-price-date .box .timer-content {
  font-size: 25px;
  color: #e6e6e6;
  font-weight: 600;
}
.mrbara-coming-soon .sale-price-date .box .timer-content .secs {
  min-width: 35px;
  display: inline-block;
}
.mrbara-coming-soon .sale-price-date .box .timer-content .title {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 10px;
}
.mrbara-coming-soon .sale-price-date .box:last-child {
  margin-right: 0;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:after {
  position: absolute;
  top: 0;
  right: -5px;
  content: ":";
  font-size: 24px;
  font-weight: 600;
  color: #e6e6e6;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:last-child:after {
  display: none;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:first-child {
  padding: 0 100px;
  display: block;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:first-child .inn {
  font-size: 200px;
  color: #e6e6e6;
  font-weight: 300;
  line-height: 1;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:first-child .flip-clock-label {
  float: right;
  font-size: 18px;
  color: #e6e6e6;
  font-weight: 600;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper:first-child:after {
  content: "";
  display: block;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper .inn {
  font-size: 25px;
  color: #e6e6e6;
  font-weight: 600;
  min-width: 35px;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper .flip-clock-label {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 10px;
  display: inline-block;
  color: #fff;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper ul {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper ul li {
  list-style: none;
}
.mrbara-coming-soon .sale-price-date .flip-wrapper .flip-clock-before,
.mrbara-coming-soon .sale-price-date .flip-wrapper .up {
  display: none;
}
.primary-color {
  color: #990000;
}
.mrbara-heading {
  position: relative;
}
.mrbara-heading p {
  margin-bottom: 0;
}
.mrbara-heading.text-right .view-all {
  left: 0;
  right: auto;
}
.mrbara-heading .title {
  line-height: 1;
  font-size: 36px;
  color: #000;
  display: inline-block;
}
.mrbara-heading .title .bold {
  font-weight: 700;
}
.mrbara-heading .title .semibold {
  font-weight: 600;
}
.mrbara-heading .title .light {
  font-weight: 300;
}
.mrbara-heading.heading-style2 .title {
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}
.mrbara-heading.heading-style2 .title .mr-vertical-line {
  position: absolute;
  content: "";
  height: 1px;
  width: 35px;
  background-color: #000;
  bottom: 0;
  left: 0;
}
.mrbara-heading.heading-style2.text-right .title .mr-vertical-line {
  right: 0;
  left: auto;
}
.mrbara-heading.heading-style2.text-center .title .mr-vertical-line {
  left: 50%;
  transform: translate(-50%, 0);
}
.mrbara-heading.heading-style3 .title-behind {
  font-family: Montserrat, "Times New Roman", serif;
  color: rgba(204, 204, 204, 0.15);
  font-size: 60px;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  display: inline-block;
}
.mrbara-heading.heading-style3 .title-behind .title {
  font-size: 24px;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mrbara-heading.heading-style4 .mr-vertical-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  margin-top: 18px;
}
.mrbara-heading.heading-style4.text-right .col-left {
  float: right;
}
.mrbara-heading.heading-style5 .title {
  padding-right: 170px;
  position: relative;
}
.mrbara-heading.heading-style5 .title .mr-vertical-line {
  position: absolute;
  width: 100px;
  height: 1px;
  top: 6px;
  right: 0;
  content: "";
  background-color: #000;
}
.mrbara-heading.heading-style5.text-right .title {
  padding-right: 0;
  padding-left: 170px;
}
.mrbara-heading.heading-style5.text-right .title .mr-vertical-line {
  right: auto;
  left: 0;
}
.mrbara-heading.heading-style6 .mr-vertical-line {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #999;
  margin-left: -15px;
  margin-top: 10px;
}
.mrbara-heading.heading-style6 .col-left {
  padding-left: 0;
  padding-right: 0;
}
.mrbara-heading.heading-style6 .col-right {
  padding-left: 0;
}
.mrbara-heading.heading-style6.text-right .col-left {
  float: right;
}
.mrbara-heading.heading-style6.text-right .col-right {
  text-align: right;
}
.mrbara-counter .counter-number {
  font-size: 36px;
  color: #000;
  line-height: 1;
  display: inline-block;
}
.mrbara-counter .counter-title {
  font-size: 13px;
  color: #999;
  line-height: 1;
  margin-top: 15px;
}
.mrbara-counter.counter-style2 .counter-number {
  font-size: 60px;
  color: #000;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}
.mrbara-counter.counter-style2 .counter-title {
  font-size: 12px;
  color: #999;
  font-weight: 600;
  line-height: 1;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mrbara-counter.bold-text .counter-number {
  font-weight: 400;
}
.mrbara-map {
  padding-top: 5px;
}
.mrbara-map p {
  margin: 0;
}
.mrbara-map .mr-map-info {
  min-width: 330px;
}
.mrbara-map .mr-map-info img {
  float: left;
  margin-right: 20px;
}
.mrbara-map .mr-map-info .mr-box {
  padding-top: 20px;
}
.mrbara-map .mr-map-info .mr-box .m-title {
  font-family: Montserrat, "Times New Roman", serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
}
.mrbara-map .m-desc {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  font-family: 'Open Sans', "Times New Roman", Times, serif;
  font-weight: 400;
}
.vc-row-box-shadow .container {
  box-shadow: 0px 20px 47px -16px rgba(0, 0, 0, 0.5);
}
.vc-row-box-shadow .vc_column_container:first-child {
  position: relative;
  z-index: 10;
}
.mrbara-cta {
  background-color: #f0f0f0;
}
.mrbara-cta .cta-content {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 36px;
  color: #000;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.mrbara-cta .cta-content .cta-title {
  padding-right: 10px;
}
.mrbara-cta .cta-content .cta-btn {
  border-bottom: 2px solid #cc3333;
  display: inline-block;
  color: #cc3333;
}
.mrbara-products-ads {
  text-align: center;
}
.mrbara-products-ads.woocommerce ul.products li.product.fd-first {
  display: none;
}
.mrbara-products-ads.woocommerce ul.products li.product.first {
  clear: none;
}
.mrbara-products-ads.woocommerce ul.products li.product.fd-col-4:nth-child( 4n +1 ) {
  clear: both;
}
.mrbara-products-ads .ads-banner {
  position: relative;
}
.mrbara-products-ads .ads-banner .ads-subtitle {
  position: absolute;
  top: 40px;
  right: 40px;
  font-weight: 600;
  color: #000;
  text-align: right;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 14px;
}
.mrbara-products-ads .ads-banner .ads-title {
  position: absolute;
  top: 140px;
  right: 40px;
  font-weight: 600;
  color: #000;
  text-align: right;
  line-height: 1;
  font-size: 48px;
  max-width: 240px;
}
.mrbara-products-ads .ads-banner .ads-link {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-weight: 600;
  color: #000;
  text-align: right;
  line-height: 1;
  font-size: 12px;
  text-transform: uppercase;
}
.mrbara-products-ads .ads-banner .ads-link:after {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #000;
  right: 0;
  transition: 0.35s;
}
.mrbara-products-ads .ads-banner .ads-link:hover:after {
  width: 100%;
  left: 0;
}
.mrbara-products-ads .link {
  color: #999;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 12px;
  margin-top: 30px;
}
.mrbara-products-ads .link:hover {
  color: #990000;
}
.section-title-ver {
  position: absolute;
  z-index: 10;
  height: 100%;
  overflow: hidden;
}
.section-title-ver + div {
  position: relative;
  z-index: 100;
}
.section-title-ver .title {
  transform: rotate(270deg);
  transform-origin: left top;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 50px;
  left: 80px;
  margin-top: 100px;
  font-weight: 600;
}
.section-title-ver .title p {
  margin: 0;
}
.section-title-ver .number {
  position: absolute;
  right: -60px;
  top: 50px;
  font-size: 230px;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  font-weight: 600;
}
.section-title-ver.align-right .title {
  transform-origin: right top;
  left: auto;
  right: 80px;
  top: 95px;
  margin-top: 20px;
}
.section-title-ver.align-right .number {
  right: auto;
  left: -65px;
  top: 100px;
}
.section-title-ver.white-text .title {
  color: #fff;
}
.section-title-ver.white-text .number {
  color: rgba(255, 255, 255, 0.1);
}
.mrbara-single-image {
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 999;
}
.mrbara-single-image.text-right {
  left: auto;
  right: -50px;
}
ul.mr-payment {
  margin: 0;
  padding: 0;
}
ul.mr-payment li {
  list-style: none;
}
ul.mr-payment li a {
  position: relative;
  font-size: 14px;
  color: #999999;
  padding-left: 30px;
  padding-bottom: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
ul.mr-payment li a:after {
  content: "\f3ff";
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #99cc00;
}
.mr-sliders-banners .banner-item {
  float: left;
  position: relative;
}
.mr-sliders-banners .banner-item:nth-child(3) {
  clear: both;
}
.mr-sliders-banners .banner-item .banner-content {
  position: absolute;
  bottom: 70px;
  text-align: center;
  padding: 0 15px;
  width: 100%;
  font-size: 14px;
  color: #999;
}
.mr-sliders-banners .banner-item .banner-content p {
  margin-bottom: 0;
}
.mr-sliders-banners .banner-item .banner-content .b-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1;
}
.mr-sliders-banners .banner-item .banner-content .link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  padding-top: 20px;
  display: inline-block;
}
.mr-sliders-banners .banner-item .banner-content .link i {
  padding-left: 8px;
}
.mr-sliders-banners .banner-item .banner-content .link:hover {
  color: #cc0000;
}
.mr-sliders-banners .banner-full {
  width: 70.3%;
}
.mr-sliders-banners .banner-long {
  width: 29.7%;
}
.mr-sliders-banners .banner-normal {
  width: 22.5%;
}
.mr-sliders-banners .banner-wide {
  width: 47.8%;
}
.mr-sliders-banners .banner-thumb {
  width: 29.7%;
}
.mrbara-heading-2 {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 13px;
  line-height: 1;
}
.mrbara-posts .col-blog {
  padding-bottom: 45px;
}
.mrbara-posts .col-blog:last-child {
  padding-bottom: 0;
}
.mrbara-posts .single_blog_item {
  position: relative;
}
.mrbara-posts .single_blog_item .blog-date {
  display: inline-block;
  color: #ccc;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
}
.mrbara-posts .single_blog_item .blog-date .p-date {
  font-size: 36px;
  display: block;
}
.mrbara-posts .single_blog_item .blog-date .p-month {
  font-size: 12px;
  display: block;
  padding-top: 5px;
  padding-left: 3px;
}
.mrbara-posts .single_blog_item .blog-content {
  display: inline-block;
  padding-left: 70px;
}
.mrbara-posts .single_blog_item .blog-content .post-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  font-family: Poppins, Arial, sans-serif;
}
.mrbara-posts .single_blog_item .blog-content .post-title a {
  color: #000;
  transition: all 0.5s;
  line-height: 1.3;
  display: inline-block;
}
.mrbara-posts .single_blog_item .blog-content .post-title:hover a {
  text-decoration: underline;
}
.mrbara-posts .single_blog_item .blog-content .post-meta {
  font-size: 13px;
  color: #ccc;
  line-height: 1;
  padding-top: 10px;
}
.mrbara-posts .single_blog_item .blog-content .post-meta a {
  color: #ccc;
}
.mrbara-posts .single_blog_item .blog-content .post-meta .p-author {
  padding-right: 10px;
  position: relative;
  text-transform: capitalize;
}
.mrbara-posts .single_blog_item .blog-content .post-meta .p-author:after {
  position: absolute;
  top: 1px;
  right: 0;
  height: 16px;
  width: 1px;
  content: "";
  background-color: #ccc;
  -ms-transform: rotate(12deg);
  /* IE 9 */
  -webkit-transform: rotate(12deg);
  /* Chrome, Safari, Opera */
  transform: rotate(12deg);
}
.mrbara-posts .single_blog_item .blog-content .post-meta .p-cat {
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
}
.mrbara-posts .single_blog_item .blog-content .post-meta .p-cat:after {
  position: absolute;
  top: 1px;
  right: 0;
  height: 16px;
  width: 1px;
  content: "";
  background-color: #ccc;
  -ms-transform: rotate(12deg);
  /* IE 9 */
  -webkit-transform: rotate(12deg);
  /* Chrome, Safari, Opera */
  transform: rotate(12deg);
}
.mrbara-posts .single_blog_item .blog-content .post-meta .p-comment {
  padding-left: 10px;
}
.mrbara-posts.mr-post-style2 .single_blog_item {
  background-color: #fff;
  padding-bottom: 40px;
}
.mrbara-posts.mr-post-style2 .single_blog_item .entry-date {
  display: none;
}
.mrbara-posts.mr-post-style2 .single_blog_item .post-title {
  text-align: center;
  padding: 0 50px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.mrbara-posts.mr-post-style2 .single_blog_item .post-title .p-title {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  transition: all 0.5s;
}
.mrbara-posts.mr-post-style2 .single_blog_item .desc {
  text-align: center;
  margin-bottom: 20px;
}
.mrbara-posts.mr-post-style2 .single_blog_item .post-footer {
  text-align: center;
}
.mrbara-posts.mr-post-style2 .single_blog_item .post-footer .readmore {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  transition: all 0.5s;
  position: relative;
  padding: 0 10px;
}
.mrbara-posts.mr-post-style2 .single_blog_item .post-footer .readmore:after {
  position: absolute;
  top: 3px;
  right: 0;
  content: '\f3d1';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 13px;
  font-weight: 600;
}
.mrbara-posts.mr-post-style2 .single_blog_item:hover .post-title .p-title {
  text-decoration: underline;
}
.mrbara-posts.mr-post-style2 .single_blog_item:hover .post-footer .readmore {
  color: #990000;
}
.mrbara-posts.mr-post-style3 .col-blog {
  padding-bottom: 40px;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-date {
  color: #990000;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-date .p-month {
  color: #666;
  font-weight: 400;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-title a {
  font-size: 18px;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-meta {
  line-height: 1;
  padding-top: 10px;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-meta a {
  color: #999;
  font-size: 13px;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-meta .p-author:after {
  background-color: #999;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-meta .p-cat:after {
  background-color: #999;
}
.mrbara-posts.mr-post-style3 .single_blog_item .blog-content .post-meta .p-comment {
  color: #999;
}
.mrbara-posts.mr-post-style4 .single_blog_item {
  background-color: #fff;
}
.mrbara-posts.mr-post-style4 .single_blog_item .entry-date {
  font-size: 13px;
  color: #ccc;
  padding-top: 20px;
  display: inline-block;
}
.mrbara-posts.mr-post-style4 .single_blog_item .post-title {
  font-family: Poppins, Arial, sans-serif;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 15px;
}
.mrbara-posts.mr-post-style4 .single_blog_item .post-title .p-title {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  transition: all 0.5s;
}
.mrbara-posts.mr-post-style4 .single_blog_item .desc {
  margin-bottom: 20px;
}
.mrbara-posts.mr-post-style4 .single_blog_item .post-footer {
  margin-top: 15px;
}
.mrbara-posts.mr-post-style4 .single_blog_item .post-footer .readmore {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  transition: all 0.5s;
  position: relative;
  padding-right: 25px;
}
.mrbara-posts.mr-post-style4 .single_blog_item .post-footer .readmore:after {
  position: absolute;
  top: 1px;
  right: 0;
  content: '\24';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 18px;
}
.mrbara-posts.mr-post-style4 .single_blog_item:hover .post-title .p-title {
  text-decoration: underline;
}
.mrbara-posts.mr-post-style4 .single_blog_item:hover .post-footer .readmore {
  color: #990000;
}
.mrbara-video .status {
  width: 76px;
  height: 76px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  padding: 6px;
}
.mrbara-video .status .m-icon {
  width: 64px;
  height: 64px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  padding: 0;
  color: #000;
  font-size: 36px;
  padding-top: 2px;
  padding-left: 5px;
}
.mrbara-video .status .m-icon:before {
  line-height: 64px;
}
.mrbara-products-tabs .tabs-nav {
  text-align: center;
  margin-bottom: 65px;
}
.mrbara-products-tabs .tabs-nav li {
  display: inline-block;
  float: none;
  padding: 0 40px;
}
.mrbara-products-tabs .tabs-nav li a {
  color: #999;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 24px;
  line-height: 1;
  transition: all 0.5s;
}
.mrbara-products-tabs .tabs-nav li a.active,
.mrbara-products-tabs .tabs-nav li a:hover {
  color: #000;
}
.mrbara-products-tabs .tabs-nav li:first-child {
  padding-left: 0;
}
.mrbara-products-tabs .tabs-nav li:last-child {
  padding-right: 0;
}
.mrbara-products-tabs .view-more {
  text-align: center;
  margin-top: 20px;
}
.mrbara-products-tabs .view-more .link {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #7f7f7f;
}
.mrbara-products-tabs .view-more .link:hover {
  color: #990000;
  border-color: #990000;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav {
  clear: both;
  text-align: left;
  margin-bottom: 40px;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li {
  padding: 0 15px;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li:first-child {
  padding-left: 0;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li:last-child {
  padding-right: 0;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li a {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0;
  position: relative;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li a:before {
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  right: 0;
  content: "";
  background-color: #000;
  transition: all 0.35s;
}
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li a:hover:before,
.mrbara-products-tabs.products-tabs-style2 .tabs-nav li a.active:before {
  width: 100%;
  right: auto;
  left: 0;
}
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li {
  padding: 0 15px;
}
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li a {
  font-size: 14px;
  font-weight: 600;
  color: #999;
}
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li a.active,
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li a:hover {
  color: #990000;
}
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li:first-child {
  padding-left: 0;
}
.mrbara-products-tabs.products-tabs-style3 .tabs-nav li:last-child {
  padding-right: 0;
}
.mrbara-products-tabs.products-tabs-style3 ul.products li.product {
  width: 100%;
}
.mrbara-products-tabs.products-tabs-style3 .view-more .link {
  position: relative;
  padding-top: 63px;
  border-bottom: none;
  color: #000;
  letter-spacing: 3px;
  font-size: 14px;
}
.mrbara-products-tabs.products-tabs-style3 .view-more .link:before {
  content: '\f3d4';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 48px;
  color: #990000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.mrbara-products-tabs.products-tabs-style3 .view-more .link:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  transition: 0.5s;
  height: 1px;
  background-color: #000;
}
.mrbara-products-tabs.products-tabs-style3 .view-more .link:hover {
  color: #000;
}
.mrbara-products-tabs.products-tabs-style3 .view-more .link:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li {
  padding: 0 15px;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  position: relative;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a:after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.5s;
  content: "";
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a.active,
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a:hover {
  color: #000;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a.active:after,
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li a:hover:after {
  left: 0;
  width: 100%;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li:first-child {
  padding-left: 0;
}
.mrbara-products-tabs.products-tabs-style4 .tabs-nav li:last-child {
  padding-right: 0;
}
.mrbara-products-tabs.products-tabs-style4 ul.products li.product {
  width: 100%;
}
.mrbara-products-tabs.products-tabs-style4 .view-more .link {
  position: relative;
  padding-top: 63px;
  border-bottom: none;
  color: #000;
  letter-spacing: 3px;
  font-size: 14px;
}
.mrbara-products-tabs.products-tabs-style4 .view-more .link:before {
  content: '\f3d4';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 48px;
  color: #990000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.mrbara-products-tabs.products-tabs-style4 .view-more .link:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  transition: 0.5s;
  height: 1px;
  background-color: #000;
}
.mrbara-products-tabs.products-tabs-style4 .view-more .link:hover {
  color: #000;
}
.mrbara-products-tabs.products-tabs-style4 .view-more .link:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav {
  background-color: #f6f6f6;
  text-align: right;
  margin-bottom: 10px;
  position: relative;
  overflow: inherit;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav:before {
  position: absolute;
  top: 0;
  left: -30px;
  background-color: #f6f6f6;
  width: 30px;
  height: 100%;
  content: "";
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li {
  padding: 17px 15px 16px;
  margin-bottom: 0;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li a {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li a.active,
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li a:hover {
  color: #990000;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li a.active:after,
.mrbara-products-tabs.products-tabs-style5 .tabs-nav li a:hover:after {
  left: 0;
  width: 100%;
}
.mrbara-products-tabs.products-tabs-style5 .tabs-panel {
  padding-left: 30px;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .product-cat {
  display: none;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .price {
  text-align: center;
  color: #669900;
  display: block;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .price del {
  font-size: 12px;
  color: #999;
  padding-right: 7px;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .price ins {
  color: #cc3333;
  text-decoration: none;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .product-title {
  color: #000;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
  text-align: center;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .btn-add-to-cart {
  display: none;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .product-thumbnail {
  position: relative;
  display: block;
  padding: 10px;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li .product-thumbnail span.ribbon {
  top: 0;
  right: 0;
}
.mrbara-products-tabs.products-tabs-style5 ul.products li:hover .product-title {
  text-decoration: underline;
}
.mrbara-products-tabs.products-tabs-style5.has-navigation .owl-buttons div {
  opacity: 0;
  transition: 0.5s;
}
.mrbara-products-tabs.products-tabs-style5.has-navigation .owl-buttons .owl-prev {
  left: 15px;
  font-size: 50px;
}
.mrbara-products-tabs.products-tabs-style5.has-navigation .owl-buttons .owl-next {
  right: 15px;
  font-size: 50px;
}
.mrbara-products-tabs.products-tabs-style5.has-navigation ul.products:hover .owl-buttons div {
  opacity: 1;
}
.mrbara-products-tabs.has-navigation .owl-controls .owl-buttons div {
  top: 30%;
  margin-top: 0;
  background-color: transparent;
  font-size: 72px;
  color: #ccc;
}
.mrbara-products-tabs.has-navigation .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-tabs.has-navigation .owl-controls .owl-pagination {
  display: none;
}
.mrbara-products-tabs.has-navigation .owl-controls .owl-page span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: none;
  background-color: #e5e5e5;
}
.mrbara-products-tabs.has-navigation .owl-controls .owl-page.active span {
  background-color: #999;
}
.mrbara-products-tabs.has-pagigation .owl-controls .owl-page span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: none;
  background-color: #e5e5e5;
}
.mrbara-products-tabs.has-pagigation .owl-controls .owl-page.active span {
  background-color: #999;
}
.mrbara-products-tabs-2 .tab-header {
  overflow: hidden;
  padding-bottom: 5px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e1e1e1;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav {
  float: right;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li:last-child {
  padding-right: 0;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li a {
  padding: 5px 20px;
  color: #999;
  font-weight: 500;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li a:hover {
  color: #000;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li a.active {
  background-color: #f0f0f0;
  color: #000;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li .link {
  font-style: italic;
  padding-right: 0;
}
.mrbara-products-tabs-2 .tab-header .tabs-nav li .link i {
  padding-left: 10px;
}
.mrbara-products-tabs-2 .tab-header .title {
  float: left;
  margin: 0;
  font-size: 24px;
  color: #000;
}
.mrbara-products-tabs-2 .tabs-panel .col-product {
  width: 100%;
}
.mrbara-products-tabs-2 .tabs-panel .col-product ul.mrbara-products li {
  margin-bottom: 25px;
  width: 100%;
}
.mrbara-products-tabs-2 .tabs-panel .col-product ul.mrbara-products .ribbons {
  display: none;
}
.mrbara-products-tabs-2 .owl-controls .owl-pagination .owl-page span {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  transition: all 0.5s;
}
.mrbara-products-tabs-2 .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #666;
}
.mrbara-products-tabs-2 .owl-controls .owl-pagination .owl-page.active span {
  background-color: #666;
}
.mrbara-testi-carousel-2 .testi-quote {
  color: rgba(0, 0, 0, 0.15);
  font-size: 72px;
  margin-bottom: 100px;
  line-height: 1;
  text-align: center;
}
.mrbara-testi-carousel-2 .testi-list {
  text-align: center;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-desc {
  font-size: 14px;
  padding: 0 195px;
  margin-bottom: 50px;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-desc h2 {
  font-size: 36px;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1.2;
  color: #000;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-desc h2:last-of-type {
  margin-bottom: 30px;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-desc p {
  margin-bottom: 0;
  color: #666;
  line-height: 2;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-company-info .testi-name {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 20px;
  display: inline-block;
}
.mrbara-testi-carousel-2 .testi-list .testi-item .testi-company-info span {
  font-size: 14px;
  color: #999;
  line-height: 1;
  display: inline-block;
}
.mrbara-testi-carousel-2 .testi-list .owl-controls .owl-buttons div {
  margin-top: 0;
  background-color: transparent;
  font-size: 60px;
  color: #ccc;
  top: 55px;
}
.mrbara-testi-carousel-2 .testi-list .owl-controls .owl-buttons div span {
  font-weight: 700;
  transition: all 0.5s;
}
.mrbara-testi-carousel-2 .testi-list .owl-controls .owl-buttons div span:hover {
  color: #666;
}
.mrbara-testi-carousel-2 .testi-list .owl-controls .owl-buttons div.owl-prev {
  left: 0;
}
.mrbara-testi-carousel-2 .testi-list .owl-controls .owl-buttons div.owl-next {
  right: 0;
}
.mrbara-testi-carousel-2 .owl-pagination {
  margin-top: 50px;
  display: none;
}
.mrbara-testi-carousel-2 .owl-pagination .owl-page {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #aaa;
  margin: 0 10px;
  position: relative;
  transition: 0.5s;
}
.mrbara-testi-carousel-2 .owl-pagination .owl-page span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.mrbara-testi-carousel-2 .owl-pagination .owl-page.active {
  border-color: rgba(0, 0, 0, 0.6);
}
.mrbara-testi-carousel-2 .owl-pagination .owl-page.active span {
  background-color: rgba(0, 0, 0, 0.6);
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-quote {
  color: #fff;
  font-size: 60px;
  margin-bottom: 70px;
  line-height: 1;
  text-align: center;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list {
  text-align: center;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list .testi-item .testi-desc {
  margin-bottom: 60px;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list .testi-item .testi-desc h2 {
  font-size: 48px;
  line-height: 1.6;
  color: #fff;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list .testi-item .testi-desc h2:last-of-type {
  margin-bottom: 30px;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list .testi-item .testi-desc p {
  margin-bottom: 0;
  color: #fff;
  line-height: 2;
}
.mrbara-testi-carousel-2.testimonial-style-2 .testi-list .testi-item .testi-company-info {
  font-size: 16px;
  color: #fff;
  line-height: 1;
}
.mrbara-pricing {
  border: 1px solid #e3e3e3;
  padding: 30px;
  text-align: left;
}
.mrbara-pricing .pricing-title {
  padding-bottom: 35px;
  margin-right: 5px;
  border-bottom: 1px dashed #ccc;
}
.mrbara-pricing .pricing-title .title {
  font-size: 18px;
  color: #cc3333;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.mrbara-pricing .pricing-title .pricing-info {
  line-height: 1;
  margin-bottom: 20px;
}
.mrbara-pricing .pricing-title .pricing-info .p-price {
  font-weight: 600;
  color: #000;
  font-size: 36px;
  display: inline-block;
  position: relative;
  padding-right: 10px;
}
.mrbara-pricing .pricing-title .pricing-info .p-price:after {
  position: absolute;
  bottom: 5px;
  right: 0;
  height: 20px;
  width: 2px;
  content: "";
  background-color: #000;
  -ms-transform: rotate(12deg);
  /* IE 9 */
  -webkit-transform: rotate(12deg);
  /* Chrome, Safari, Opera */
  transform: rotate(12deg);
}
.mrbara-pricing .pricing-title .pricing-info .p-time {
  font-weight: 400;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  padding-left: 5px;
}
.mrbara-pricing .pricing-title .pricing-desc {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  padding-right: 20px;
}
.mrbara-pricing .pricing-box {
  padding-top: 25px;
}
.mrbara-pricing .pricing-box .pricing-content {
  min-height: 180px;
}
.mrbara-pricing .pricing-box .pricing-content ul {
  list-style: none;
  padding-left: 0;
}
.mrbara-pricing .pricing-box .pricing-content ul li {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}
.mrbara-pricing .pricing-box .pricing-content ul li:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: '\4e';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  color: #669900;
}
.mrbara-pricing .pricing-box .link {
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
  background-color: #990000;
  font-family: Poppins, Arial, sans-serif;
  transition: all 0.5s;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 20px;
  display: block;
  margin-bottom: 20px;
  background-color: #eee;
  color: #000;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 52px;
}
.mrbara-pricing .pricing-box .link:hover,
.mrbara-pricing .pricing-box .link:focus {
  background-color: #333;
}
.mrbara-pricing .pricing-box .link:hover,
.mrbara-pricing .pricing-box .link:focus {
  background-color: #333;
}
.mrbara-pricing .pricing-box .link:hover {
  background-color: #cc3333;
  color: #fff;
}
.mrbara-pricing.featured {
  background-color: #f7f7f7;
}
.mrbara-pricing.featured .pricing-box .link {
  background-color: #cc3333;
  color: #fff;
}
.mrbara-pricing.featured .pricing-box .link:hover {
  background-color: #000;
}
.mrbara-facts-box .b-icon {
  font-size: 36px;
  line-height: 1;
}
.mrbara-facts-box .number {
  font-size: 24px;
  font-weight: 600;
  color: #252525;
  line-height: 1;
  margin-top: 20px;
}
.mrbara-facts-box .b-content {
  margin-top: 5px;
  color: #999;
  font-size: 13px;
}
.counters .box {
  display: inline-block;
  padding: 0 35px;
  font-size: 72px;
  font-weight: 300;
  color: #000;
  line-height: 1;
}
.counters .box .timer-content .title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-top: 15px;
}
.counters .box .timer-content .minu,
.counters .box .timer-content .secs {
  display: inline-block;
  min-width: 90px;
}
.counters .box.timer-hour,
.counters .box.timer-secs,
.counters .box.timer-minu {
  position: relative;
}
.counters .box.timer-hour:before,
.counters .box.timer-secs:before,
.counters .box.timer-minu:before {
  position: absolute;
  top: 0;
  left: -8px;
  content: ":";
}
.mrbara-counters .sale-price-date .flip-wrapper {
  display: inline-block;
  font-size: 72px;
  color: #000;
  line-height: 1;
  padding: 0 25px;
  font-weight: 300;
  position: relative;
}
.mrbara-counters .sale-price-date .flip-wrapper:before {
  position: absolute;
  top: -5px;
  left: -8px;
  content: ":";
}
.mrbara-counters .sale-price-date .flip-wrapper:first-child:before {
  display: none;
}
.mrbara-counters .sale-price-date .flip-wrapper ul {
  padding: 0;
  margin: 0;
}
.mrbara-counters .sale-price-date .flip-wrapper ul li {
  list-style: none;
  margin-bottom: 0;
  min-width: 100px;
  text-align: center;
}
.mrbara-counters .sale-price-date .flip-wrapper ul li a {
  color: #000;
}
.mrbara-counters .sale-price-date .flip-wrapper .flip-clock-before,
.mrbara-counters .sale-price-date .flip-wrapper .up {
  display: none;
}
.mrbara-counters .sale-price-date .flip-wrapper .flip-clock-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-top: 15px;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top {
  font-size: 13px;
  color: #666;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container {
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list {
  position: relative;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list:before {
  position: absolute;
  bottom: 1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(204, 204, 204, 0.5);
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin-left: 0;
  margin-right: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:first-child a {
  padding-left: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  color: #999;
  border-color: transparent;
  background-color: transparent;
  transition: all 0.5s;
  position: relative;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:before {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
  width: 0;
  height: 2px;
  content: "";
  transition: all 0.35s;
  background-color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
  color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:before {
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  top: auto;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-panels-container .vc_tta-panels {
  border-color: transparent;
  background-color: transparent;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
  padding-left: 0;
  padding-top: 25px;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-top .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body p {
  margin-bottom: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left {
  font-size: 13px;
  color: #666;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container {
  font-size: 14px;
  text-transform: uppercase;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list {
  position: relative;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.5);
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin-left: 0;
  margin-right: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:first-child a {
  padding-top: 5px;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  padding: 8px 50px 8px 0;
  color: #999;
  border-color: transparent;
  background-color: transparent;
  transition: all 0.5s;
  position: relative;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:before {
  position: absolute;
  right: -1px;
  width: 2px;
  left: auto;
  bottom: 0;
  height: 0;
  top: auto;
  content: "";
  transition: all 0.35s;
  background-color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
  color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover:before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  color: #cc3333;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a:before {
  height: 100%;
  display: block;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels {
  border-color: transparent;
  background-color: transparent;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
  padding-left: 30px;
  padding-top: 2px;
}
.vc_tta.vc_tta-style-classic.vc_tta.vc_tta-color-white.vc_tta.vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body p {
  margin-bottom: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square {
  font-size: 13px;
  color: #666;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading,
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  border-color: rgba(204, 204, 204, 0.5);
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  font-weight: 600;
  color: #000;
  padding: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon {
  width: 58px;
  height: 55px;
  display: inline-block;
  text-align: center;
  background-color: #f0f0f0;
  transition: all 0.5s;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon:before {
  line-height: 55px;
  font-size: 20px;
  color: #999;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon {
  border-left: 1px solid rgba(204, 204, 204, 0.5);
  width: 55px;
  height: 55px;
  right: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
  border-width: 0;
  top: 2px;
  right: 50%;
  content: '\4c';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 25px;
  transform: translate(50%, 50%);
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:after {
  height: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-title-text {
  margin-left: 22px;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  padding: 25px 35px 25px 80px;
  line-height: 2;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body p {
  margin-bottom: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #cc3333;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon {
  background-color: #cc3333;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon:before {
  line-height: 55px;
  color: #fff;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
  content: '\4b';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 25px;
  transform: translate(50%, 50%);
  color: #cc3333;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:after {
  height: 0;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-title-text {
  margin-left: 22px;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel:hover .vc_tta-panel-heading {
  background-color: transparent;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #cc3333;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon {
  background-color: #cc3333;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon:before {
  color: #fff;
}
.vc_tta.vc_tta-accordion.vc_tta-color-white.vc_tta-style-classic.vc_tta-shape-square .vc_tta-panels-container .vc_tta-panels .vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
  color: #cc3333;
}
.vc_btn3 {
  text-transform: uppercase;
  font-family: Montserrat, "Times New Roman", serif;
  min-width: 170px;
}
.vc_btn3.vc_general.vc_btn3-color-juicy-pink,
.vc_btn3.vc_general.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
  background-color: #cc3333;
}
.vc_btn3.vc_general.vc_btn3-color-juicy-pink:hover,
.vc_btn3.vc_general.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover {
  background-color: #000;
  color: #fff;
}
.vc_btn3.vc_general.vc_btn3-color-grey,
.vc_btn3.vc_general.vc_btn3-color-grey.vc_btn3-style-flat {
  background-color: #f0f0f0;
  color: #999;
}
.vc_btn3.vc_general.vc_btn3-color-grey:hover,
.vc_btn3.vc_general.vc_btn3-color-grey.vc_btn3-style-flat:hover {
  background-color: #000;
  color: #fff;
}
.vc_btn3.vc_general.vc_btn3-color-white,
.vc_btn3.vc_general.vc_btn3-color-white.vc_btn3-style-outline {
  color: #999;
  border: 1px dashed #ccc;
}
.vc_btn3.vc_general.vc_btn3-color-white:hover,
.vc_btn3.vc_general.vc_btn3-color-white.vc_btn3-style-outline:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.vc_btn3.vc_general.vc_btn3-size-lg {
  font-size: 14px;
}
.vc_btn3.vc_general.vc_btn3-size-md,
.vc_btn3.vc_general.vc_btn3-size-sm {
  font-size: 13px;
}
.vc_btn3.vc_general.vc_btn3-size-xs {
  font-size: 12px;
}
.vc_progress_bar.vc_progress-bar-color-custom .vc_single_bar .vc_bar {
  background-color: #cc3333;
}
.vc_progress_bar .wpb_heading {
  padding: 0;
  margin: 0;
}
.vc_progress_bar .vc_general.vc_single_bar {
  background: #e4e3e3;
  box-shadow: none;
  position: relative;
  margin-top: 55px;
  margin-bottom: 10px;
  height: 4px;
  border-radius: 0 !important;
}
.vc_progress_bar .vc_general.vc_single_bar:first-child {
  margin-top: 35px;
}
.vc_progress_bar .vc_general.vc_single_bar .vc_label {
  top: -35px;
  color: #000;
  font-weight: 600;
  padding: 0 !important;
  box-shadow: none;
  font-size: 14px;
  text-shadow: none;
  position: relative;
  font-family: Poppins, Arial, sans-serif;
  text-transform: uppercase;
}
.vc_progress_bar .vc_general.vc_single_bar .vc_label_units {
  display: inline-block;
  text-align: right;
  top: -57px;
  position: relative;
  right: 0;
  width: 100% !important;
}
.vc_progress_bar .vc_general.vc_single_bar .vc_label_units span {
  text-align: center;
  position: relative;
  color: #cc3333;
  font-size: 18px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.vc_progress_bar .vc_general.vc_single_bar .vc_bar {
  border-radius: 0 !important;
}
.btn {
  transition: 0.5s ease-in;
  border-radius: 29px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 58px;
  min-width: 200px;
  padding: 0 30px;
  border: none;
  background-color: #990000;
}
.btn:hover {
  color: #fff;
  background-color: #333;
}
.mrbara-button-container {
  padding: 20px 20px 42px 20px;
}
.mrbara-button-container.mrbara-button-inline {
  display: inline-block;
  padding: 0;
}
.mrbara-button-container.mrbara-button-left {
  text-align: left;
}
.mrbara-button-container.mrbara-button-right {
  text-align: right;
}
.mrbara-button-container.mrbara-button-center {
  text-align: center;
}
.mrbara-button-container.lighten .mrbara-button {
  background-color: #cc3333;
}
.mrbara-button-container.lighten .mrbara-button:hover {
  background-color: #990000;
}
.mrbara-button-container.darken .mrbara-button {
  background-color: #290a0a;
}
.mrbara-button-container.darken .mrbara-button:hover {
  background-color: #990000;
}
.mrbara-button-container.shadow .mrbara-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  height: 43px;
  min-width: 168px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 22px;
  z-index: -1;
}
.mrbara-button {
  transition: 0.5s ease-in;
  border-radius: 29px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 58px;
  min-width: 200px;
  padding: 0 30px;
  position: relative;
  border-width: 0;
  background-color: #990000;
}
.mrbara-button:hover {
  background-color: #333;
}
.mrbara-link-container .mrbara-link {
  font-size: 14px;
  color: #990000;
  line-height: 36px;
  transition: all 0.5s;
  display: inline-block;
  position: relative;
}
.mrbara-link-container .mrbara-link.show-icon {
  padding-right: 30px;
}
.mrbara-link-container .mrbara-link.show-icon:after {
  content: '\f3d6';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  position: absolute;
  font-size: 24px;
}
.mrbara-link-container .mrbara-link.color-dark {
  color: #000;
}
.mrbara-link-container .mrbara-link.color-dark:hover {
  color: #990000;
}
.mrbara-link-container .mrbara-link.color-light {
  color: #fff;
}
.mrbara-link-container .mrbara-link.color-light:hover {
  color: #990000;
}
.mrbara-link-container .mrbara-link.color-gray {
  color: #999;
}
.mrbara-link-container .mrbara-link.color-gray:hover {
  color: #000;
}
.mrbara-link-container .mrbara-link.color-primary {
  color: #990000;
}
.mrbara-link-container .mrbara-link.color-primary:hover {
  color: #000;
}
.mrbara-link-container .mrbara-link.italic {
  font-style: italic;
}
.mrbara-link-container.link-style-1 .mrbara-link {
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
  padding-top: 50px;
}
.mrbara-link-container.link-style-1 .mrbara-link:before {
  height: 2px;
  width: 50px;
  background-color: #990000;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.mrbara-link-container.link-style-1 .mrbara-link.color-dark:before {
  background-color: #000;
}
.mrbara-link-container.link-style-1 .mrbara-link.color-light:before {
  background-color: #fff;
}
.mrbara-link-container.link-style-1 .mrbara-link.color-gray:before {
  background-color: #999;
}
.mrbara-product-detail {
  text-align: center;
}
.mrbara-product-detail .product-content .p-title,
.mrbara-product-detail .product-content .p-price {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}
.mrbara-product-detail .product-content .p-price {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #cc3333;
}
.mrbara-product-detail .product-content .p-desc {
  font-size: 14px;
  color: #999;
  line-height: 2.142;
  margin-bottom: 60px;
}
.mrbara-product-detail .product-content .p-desc p {
  margin-bottom: 0;
}
.mrbara-product-detail .product-content .link {
  transition: 0.5s ease-in;
  border-radius: 29px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 58px;
  min-width: 200px;
  padding: 0 40px;
  position: relative;
  border-width: 0;
  background-color: #cc3333;
  letter-spacing: 2px;
  box-shadow: 0px 8px 40px -9px rgba(0, 0, 0, 0.5);
}
.mrbara-product-detail .product-content .link:hover {
  background-color: #333;
}
.mrbara-vertical-line {
  height: 100px;
  position: relative;
}
.mrbara-vertical-line:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 200%;
  border-left: 1px solid #ababab;
  z-index: 999;
}
.mrbara-vertical-line.bottom:before {
  bottom: auto;
  top: 0;
}
.mrbara-section-layout-2 {
  position: relative;
  margin-bottom: 50px;
}
.mrbara-section-layout-2 h2 {
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.mrbara-section-layout-2 .subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.mrbara-section-layout-2 .subtitle span {
  color: #ccc;
  font-size: 36px;
  font-weight: 400;
  font-family: 'Great Vibes', cursive;
}
.mrbara-section-layout-2 .line {
  display: block;
  position: absolute;
  top: 25px;
}
.mrbara-section-layout-2 .line:before {
  transition: 1s;
  transform: scaleX(0);
  transform-origin: top left;
  content: "";
  display: block;
  border-bottom: 1px solid #adadad;
}
.mrbara-section-layout-2.align-right {
  text-align: right;
  margin-bottom: 60px;
}
.mrbara-section-layout-2.align-right .line {
  top: 74px;
}
.mrbara-section-layout-2.align-right .line:before {
  transform-origin: top right;
}
.mrbara-section-layout-2.start-animation .line:before {
  transform: scaleX(1);
}
.mrbara-section-layout-2.no-subtitle .line {
  top: 36px;
}
.mrbara-pa-swatches {
  margin-bottom: 50px;
}
.mrbara-pa-swatches .swatches-sets-title {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 30px;
}
.mrbara-pa-swatches .sep {
  margin: 0 40px;
}
.mrbara-pa-swatches .product-attribute {
  border-radius: 50%;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-right: 15px;
  overflow: hidden;
  vertical-align: middle;
  background-color: #f1f1f1;
}
.mrbara-pa-swatches .product-attribute:last-child {
  margin-right: 0;
}
.mrbara-pa-swatches .product-color {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.mrbara-testimonials {
  padding-top: 10px;
}
.mrbara-testimonials .testimonial-content {
  margin-bottom: 30px;
}
.mrbara-testimonials .testimonial-content h2 {
  margin-bottom: 35px;
}
.mrbara-testimonials .testimonial-content strong {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}
.mrbara-testimonials .rating {
  color: #ffcc00;
  font-size: 18px;
  display: block;
}
.mrbara-testimonials .testimonial-author {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.mrbara-testimonials .testimonial-author .avatar {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.mrbara-testimonials .testimonial-author .avatar img {
  display: block;
}
.mrbara-testimonials .testimonial-author .byline {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  padding-right: 3px;
}
.mrbara-testimonials .owl-controls {
  padding-top: 35px;
  position: relative;
  text-align: left;
}
.mrbara-testimonials .owl-controls .owl-buttons div {
  position: static;
  transition: 0.5s ease-out;
  font-size: 16px;
  line-height: 40px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #dedcd9;
}
.mrbara-testimonials .owl-controls .owl-buttons div:hover {
  background-color: #990000;
}
.mrbara-testimonials .owl-controls .owl-prev {
  margin-right: 10px;
}
.mrbara-testimonials.align-right {
  text-align: right;
}
.mrbara-testimonials.align-right .testimonial-content {
  margin-bottom: 50px;
}
.mrbara-testimonials.align-right .testimonial-author {
  text-transform: none;
}
.mrbara-testimonials.align-right .owl-controls {
  text-align: right;
}
.mrbara-testimonials.align-center {
  text-align: center;
}
.mrbara-testimonials.align-center .testimonial-carousel {
  padding-left: 70px;
  padding-right: 70px;
  position: relative;
}
.mrbara-testimonials.align-center .testimonial-carousel:before,
.mrbara-testimonials.align-center .testimonial-carousel:after {
  content: "\f347";
  font: 30px/1 Ionicons;
  color: #ccc;
  position: absolute;
}
.mrbara-testimonials.align-center .testimonial-carousel:before {
  left: 0;
  top: -10px;
}
.mrbara-testimonials.align-center .testimonial-carousel:after {
  right: 0;
  top: 27px;
  transform: rotate(180deg);
}
.mrbara-testimonials.align-center .owl-controls {
  text-align: center;
}
.mrbara-testimonials.nav-plain .owl-buttons div {
  color: #999;
  font-size: 24px;
  background-color: transparent;
}
.mrbara-testimonials.nav-plain .owl-buttons div:hover {
  color: #990000;
  background-color: transparent;
}
.mrbara-testimonials.show-avatar .testimonial-author {
  text-transform: none;
}
.mrbara-testimonials.show-avatar .rating {
  display: inline-block;
}
.mrbara-testimonials.show-avatar .owl-controls {
  padding-top: 60px;
}
.mrbara-testimonials.show-avatar .owl-buttons div {
  margin-top: 0;
  line-height: 36px;
}
.mrbara-testimonials.show-avatar.nav-plain .owl-buttons div {
  font-size: 30px;
  width: auto;
}
.mrbara-testimonials.show-avatar.nav-plain .owl-buttons div:hover {
  color: #000;
}
.mrbara-testimonials.show-avatar.nav-plain .owl-buttons .owl-prev {
  margin-right: 30px;
}
.mrbara-cta-2 {
  width: 1520px;
  max-width: 100%;
  margin: 0 auto;
  padding: 190px 0 125px;
  background: no-repeat center center;
}
.mrbara-cta-2 .subtitle,
.mrbara-cta-2 .title {
  font-weight: 600;
  line-height: 1;
  font-family: Poppins, Arial, sans-serif;
  color: #fff;
}
.mrbara-cta-2 .subtitle {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.mrbara-cta-2 .title {
  font-size: 72px;
  margin: 25px 0 50px;
}
.mrbara-cta-2.cta-has-fill {
  color: #fff;
}
.mrbara-banner {
  position: relative;
  padding-left: 70px;
}
.mrbara-banner h3 {
  color: #000;
  font-weight: 600;
  font-family: Poppins, Arial, sans-serif;
  line-height: 30px;
  letter-spacing: -0.025em;
  margin-top: 45px;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.mrbara-banner:hover h3 {
  border-color: #000;
}
.mrbara-banner.banner-style2 h3 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.mrbara-banner.banner-style3 h3 {
  font-weight: 400;
  font-size: 36px;
}
.mrbara-banner .text {
  color: #990000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.048em;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  left: -70px;
  top: 0;
  transform: rotate(-90deg) translateX(-50%);
  transition: 0.5s;
}
.mrbara-banner .text span {
  display: block;
  position: relative;
  left: -75px;
}
.mrbara-banner.text-color-gray .text {
  color: #999;
}
.mrbara-banner.text-position-right {
  padding-left: 0;
  padding-right: 70px;
}
.mrbara-banner.text-position-right .text {
  left: auto;
  right: -70px;
}
.mrbara-portfolio-slider .portfolio-content .col-port-left {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
.mrbara-portfolio-slider .portfolio-content .col-port-left:before {
  position: absolute;
  top: 0;
  right: 30%;
  content: "";
  background-color: #ececec;
  height: 100%;
  width: 200%;
}
.mrbara-portfolio-slider .portfolio-content .col-port-left .portfolio-image {
  border: 8px solid #fff;
  position: relative;
  z-index: 10;
}
.mrbara-portfolio-slider .portfolio-content .col-port-right {
  padding-top: 100px;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper {
  padding-left: 40px;
  position: relative;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport {
  display: block;
  padding-right: 180px;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-cat {
  font-size: 14px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 30px;
  display: block;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-cat:hover {
  color: #990000;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 35px;
  display: block;
  transition: all 0.5s;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-title:hover {
  color: #990000;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-desc {
  line-height: 2;
  padding-bottom: 40px;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .portfolio-desc p {
  line-height: 2;
  margin-bottom: 0;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .view-more {
  font-size: 13px;
  font-weight: 600;
  color: #050505;
  text-transform: uppercase;
  font-family: Poppins, Arial, sans-serif;
  transition: all 0.5s;
  display: block;
  margin-top: 30px;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-viewport .portfolio-list .portfolio-item .view-more:hover {
  color: #990000;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-controls {
  position: absolute;
  top: 0;
  right: 0;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-controls .bx-pager-item {
  padding: 16px 0;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link {
  font-size: 16px;
  color: #ccc;
  font-weight: 600;
}
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link:hover,
.mrbara-portfolio-slider .portfolio-content .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link.active {
  color: #000;
}
.mrbara-divider {
  text-align: center;
  padding: 50px;
  background-color: #f4f4f4;
  border-radius: 5px;
}
.mrbara-divider p {
  margin-bottom: 0;
}
.mrbara-divider .title {
  font-size: 24px;
  color: #000;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.mrbara-divider .desc {
  color: #666;
}
.mrbara-divider.light-skin {
  background-color: transparent;
}
.mrbara-divider.box-shadow {
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  position: relative;
}
.mrbara-divider.box-shadow:after {
  position: absolute;
  bottom: -44px;
  left: 0;
  content: "";
  height: 44px;
  width: 100%;
  background: transparent url('../images/box-shadow-divider.png') no-repeat center bottom;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square {
  padding: 30px 120px;
  border-width: 1px;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square .vc_message_box-icon {
  padding: 0 42px;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-info .vc_message_box-icon {
  border-right: 1px solid #56b0ee;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-warning .vc_message_box-icon {
  border-right: 1px solid #fcb53f;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-success .vc_message_box-icon {
  border-right: 1px solid #1bbc9b;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-danger .vc_message_box-icon {
  border-right: 1px solid #ff7877;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-alert-info .vc_message_box-icon {
  border-right: 1px solid #67CCE0;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-alert-warning .vc_message_box-icon {
  border-right: 1px solid #F9CF79;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-alert-success .vc_message_box-icon {
  border-right: 1px solid #9AD36A;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-alert-danger .vc_message_box-icon {
  border-right: 1px solid #EF8495;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-blue .vc_message_box-icon {
  border-right: 1px solid #5472D2;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-turquoise .vc_message_box-icon {
  border-right: 1px solid #00C1CF;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-pink .vc_message_box-icon {
  border-right: 1px solid #FE6C61;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-violet .vc_message_box-icon {
  border-right: 1px solid #8D6DC4;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-peacoc .vc_message_box-icon {
  border-right: 1px solid #4CADC9;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-chino .vc_message_box-icon {
  border-right: 1px solid #CEC2AB;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-mulled_wine .vc_message_box-icon {
  border-right: 1px solid #50485B;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-vista_blue .vc_message_box-icon {
  border-right: 1px solid #75D69C;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-black .vc_message_box-icon {
  border-right: 1px solid #2A2A2A;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-grey .vc_message_box-icon {
  border-right: 1px solid #EBEBEB;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-orange .vc_message_box-icon {
  border-right: 1px solid #F7BE68;
}
.vc_message_box.vc_message_box-outline.vc_message_box-square.vc_color-sky .vc_message_box-icon {
  border-right: 1px solid #5AA1E3;
}
.vc_message_box.vc_message_box-solid.vc_message_box-square.vc_color-vista_blue {
  padding: 30px 120px;
  background-color: #f0f6e7;
  color: #669900;
}
.vc_message_box.vc_message_box-solid.vc_message_box-square.vc_color-vista_blue .vc_message_box-icon {
  padding: 0 42px;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square {
  padding: 30px 120px;
  border-color: transparent;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square .vc_message_box-icon {
  padding: 0 42px;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-info .vc_message_box-icon {
  background-color: #7ccafb;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-warning .vc_message_box-icon {
  background-color: #ffcd7c;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-success .vc_message_box-icon {
  background-color: #88f5de;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-danger .vc_message_box-icon {
  background-color: #f48d8d;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-info .vc_message_box-icon {
  background-color: #85c5e5;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-warning .vc_message_box-icon {
  background-color: #f2e187;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-success .vc_message_box-icon {
  background-color: #a3d48e;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-alert-danger .vc_message_box-icon {
  background-color: #d59595;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-blue .vc_message_box-icon {
  background-color: #9db3e4;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-turquoise .vc_message_box-icon {
  background-color: #8eeef4;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-pink .vc_message_box-icon {
  background-color: #ff9089;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-violet .vc_message_box-icon {
  background-color: #b7a4d9;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-peacoc .vc_message_box-icon {
  background-color: #9cd2df;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-chino .vc_message_box-icon {
  background-color: #d0c4b3;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-mulled_wine .vc_message_box-icon {
  background-color: #b6afc0;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-vista_blue .vc_message_box-icon {
  background-color: #94e0b2;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-black .vc_message_box-icon {
  background-color: #090909;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-grey .vc_message_box-icon {
  background-color: #b8b8b8;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-orange .vc_message_box-icon {
  background-color: #f9ca8a;
}
.vc_message_box.vc_message_box-standard.vc_message_box-square.vc_color-sky .vc_message_box-icon {
  background-color: #94c2eb;
}
.mrbara-progressbar .progress-area {
  text-align: center;
}
.mrbara-progressbar .progress-area .progress-item {
  position: relative;
  height: 140px;
}
.mrbara-progressbar .progress-area .progress-item .inner-circle .value {
  font-size: 37px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  line-height: 1;
  margin-top: -14px;
}
.mrbara-progressbar .progress-area .progress-title {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  display: block;
  padding-top: 20px;
}
.mrbara-piechart .piechart-area {
  text-align: center;
}
.mrbara-piechart .piechart-area .piechart-item {
  position: relative;
  height: 100px;
}
.mrbara-piechart .piechart-area .piechart-item .inner-circle i {
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -18px;
  line-height: 1;
}
.mrbara-piechart .piechart-area .piechart-title,
.mrbara-piechart .piechart-area .value {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  display: block;
  padding-top: 20px;
}
.mrbara-piechart .piechart-area .value {
  padding-top: 0;
}
.element-box {
  text-align: center;
}
.element-box .element-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.element-box .element-title:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  bottom: 0;
  left: 0;
  background-color: #000;
}
.element-box .element-desc {
  padding-top: 75px;
}
.element-box .element-desc .e-content {
  padding: 15px 15px 15px 50px;
  background-color: #efefef;
  position: relative;
  color: #666;
  font-size: 14px;
  display: inline-block;
}
.element-box .element-desc .e-content:before {
  position: absolute;
  content: "\f271";
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  top: 19px;
  left: 15px;
  font-size: 18px;
}
.mrbara-instagram .section-title {
  font-size: 48px;
  font-family: Poppins, Arial, sans-serif;
  color: #000;
  margin-bottom: 30px;
}
.mrbara-instagram .ins-list {
  padding: 0;
  clear: both;
  list-style-type: none;
}
.mrbara-instagram .ins-list li {
  padding: 15px;
  margin: 0;
  float: left;
  width: 20%;
}
.mrbara-instagram .ins-list.owl-carousel li {
  width: 100%;
}
.mrbara-instagram .ins-list a {
  position: relative;
  display: block;
}
.mrbara-instagram .ins-list a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: 0.5s;
}
.mrbara-instagram .ins-list a:hover:after {
  background-color: rgba(239, 239, 239, 0.5);
}
.mrbara-instagram .ins-list a img {
  width: 100%;
}
.mrbara-instagram .ins-list .owl-pagination {
  margin-top: 50px;
}
.mrbara-instagram .ins-list .owl-pagination .owl-page {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #aaa;
  margin: 0 10px;
  position: relative;
  transition: 0.5s;
}
.mrbara-instagram .ins-list .owl-pagination .owl-page span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.mrbara-instagram .ins-list .owl-pagination .owl-page.active {
  border-color: rgba(0, 0, 0, 0.6);
}
.mrbara-instagram .ins-list .owl-pagination .owl-page.active span {
  background-color: rgba(0, 0, 0, 0.6);
}
.mrbara-instagram.gray-scale a:after {
  display: none;
}
.mrbara-instagram.gray-scale a img {
  filter: grayscale(100%);
  transition: 0.5s;
}
.mrbara-instagram.gray-scale a:hover img {
  filter: none;
}
.mr-promotion-medium {
  transition: 0.5s;
}
.mr-promotion-medium .promotion-content {
  position: relative;
  background-position: bottom right;
  background-repeat: no-repeat;
}
.mr-promotion-medium:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.mr-promotion-medium .p-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.mr-promotion-medium .p-desc .p-content {
  padding: 30px;
}
.mr-promotion-medium .p-desc .p-content .banner-title {
  font-size: 24px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mr-promotion-medium .p-desc .p-content .banner-title p {
  margin-bottom: 0;
}
.mr-promotion-medium .p-desc .p-content .old-price {
  display: block;
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}
.mr-promotion-medium .p-desc .p-content .new-price {
  display: block;
  font-size: 16px;
  color: #669900;
  line-height: 1;
  margin-top: 5px;
}
.mr-promotion-medium .p-desc .p-content .link-text {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  margin-right: 25px;
  margin-top: 55px;
  display: inline-block;
}
.mr-promotion-medium .p-desc .p-content .link-text:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.35s;
  content: "";
}
.mr-promotion-medium .p-desc .p-content .link-text:after {
  position: absolute;
  content: '\e046';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  right: -25px;
  padding-right: 5px;
  top: 1px;
  color: #990000;
}
.mr-promotion-medium.text-position-center .promotion-content {
  background-position: bottom center;
}
.mr-promotion-medium.text-position-center .p-desc .p-content {
  text-align: center;
}
.mr-promotion-medium.text-position-center .p-desc .p-content .banner-title {
  margin-bottom: 5px;
}
.mr-promotion-medium.text-position-center .p-desc .p-content .link-text {
  margin-top: 30px;
}
.mr-promotion-medium.has-border {
  border: 1px solid #d9d9d9;
}
.mr-promotion-medium.dark-skin .p-desc .p-content .banner-title,
.mr-promotion-medium.dark-skin .p-desc .p-content .old-price {
  color: #fff;
}
.mr-promotion-medium.style-2 .p-desc .p-content .banner-title {
  font-family: Prata, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}
.mr-promotion-medium.style-2 .p-desc .p-content .new-price {
  color: #cc0000;
}
.mr-promotion-medium.style-3 .p-desc .p-content .banner-title {
  font-weight: 600;
  line-height: 1;
  font-size: 20px;
}
.mr-promotion-medium.style-3 .p-desc .p-content .new-price {
  color: #cc0000;
  font-weight: 600;
}
.mr-promotion-medium.style-3 .p-desc .p-content .link-text {
  background-color: #000;
  color: #fff;
  padding: 0 15px;
  line-height: 33px;
  height: 30px;
  display: inline-block;
  border-radius: 3px;
  margin-right: 0;
}
.mr-promotion-medium.style-3 .p-desc .p-content .link-text:after {
  display: none;
}
.mr-promotion-medium.style-3.dark-skin .p-desc .p-content .link-text {
  background-color: #fff;
  color: #000;
}
.mr-promotion-large {
  position: relative;
  padding: 50px 0 55px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.5s;
}
.mr-promotion-large .title {
  padding-left: 0;
}
.mr-promotion-large .title .p-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 20px;
}
.mr-promotion-large .title .p-title p {
  margin-bottom: 0;
}
.mr-promotion-large .title .sub-title {
  color: #999;
}
.mr-promotion-large .p-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.mr-promotion-large .p-content {
  padding-top: 15px;
  padding-left: 50px;
}
.mr-promotion-large .p-content .old-price {
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 10px;
}
.mr-promotion-large .p-content .new-price {
  display: block;
  font-size: 30px;
  color: #669900;
  line-height: 1;
  margin-bottom: 20px;
}
.mr-promotion-large .p-content .link-text {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  margin-right: 30px;
}
.mr-promotion-large .p-content .link-text:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.35s;
  content: "";
}
.mr-promotion-large .p-content .link-text:after {
  position: absolute;
  content: '\e046';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 5px;
  color: #990000;
}
.mr-promotion-large.has-bg {
  position: relative;
}
.mr-promotion-large.has-bg .promotion-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
}
.mr-promotion-large.has-bg .promotion-content .title {
  margin-left: -15px;
}
.mr-promotion-large.has-border {
  border: 1px solid #d9d9d9;
}
.mr-promotion-large:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.hot-deal-product.has-navigation {
  padding-top: 55px;
  position: relative;
}
.hot-deal-product.has-border .box-stock-product {
  border: 1px solid #bfbfbf;
}
.hot-deal-product .box-stock-product {
  background-color: #fff;
  padding-bottom: 44px;
  text-align: center;
  transition: 0.5s;
}
.hot-deal-product .box-stock-product:hover {
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.15);
}
.hot-deal-product .box-stock-product .product-thumbnail {
  display: block;
  margin-bottom: 20px;
}
.hot-deal-product .box-stock-product .cat-link {
  display: block;
  font-size: 12px;
  color: #999;
  padding: 0 50px;
  margin-bottom: 5px;
}
.hot-deal-product .box-stock-product .product-title {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  padding: 0 30px;
  max-width: 302px;
  margin: 0 auto;
  display: block;
  line-height: 1.3;
  transition: all 0.5s;
  margin-bottom: 15px;
}
.hot-deal-product .box-stock-product .product-title:hover {
  text-decoration: underline;
}
.hot-deal-product .box-stock-product .product-price ins {
  font-size: 24px;
  color: #cc0000;
  padding-right: 5px;
  text-decoration: none;
}
.hot-deal-product .box-stock-product .product-price del {
  font-size: 16px;
  color: #999;
  font-weight: 300;
  text-decoration: line-through;
}
.hot-deal-product .box-stock-product .product-stock {
  margin-top: 18px;
}
.hot-deal-product .box-stock-product .product-stock .total-stock {
  display: inline-block;
  padding: 0 20px;
  margin-right: 20px;
  font-size: 14px;
  color: #999;
  position: relative;
}
.hot-deal-product .box-stock-product .product-stock .total-stock:before {
  position: absolute;
  top: -1px;
  left: -7px;
  content: '\f394';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 24px;
}
.hot-deal-product .box-stock-product .product-stock .total-stock:after {
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 15px;
  content: "";
  background-color: #999;
}
.hot-deal-product .box-stock-product .product-stock .total-stock .number {
  padding: 0 5px;
  font-weight: 600;
  color: #000;
}
.hot-deal-product .box-stock-product .product-stock .availalbe {
  font-weight: 600;
  color: #000;
}
.hot-deal-product .box-stock-product .product-stock .stock-status .in-stock {
  color: #99cc00;
}
.hot-deal-product .box-stock-product .product-stock .stock-status .out-stock {
  color: #999;
}
.hot-deal-product .box-stock-product .product-link {
  padding: 15px 45px 13px 20px;
  margin-top: 35px;
  text-transform: uppercase;
  background-color: #990000;
  color: #fff;
  display: inline-block;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  border-radius: 4px;
}
.hot-deal-product .box-stock-product .product-link:after {
  position: absolute;
  top: 12px;
  right: 15px;
  content: '\e046';
  display: inline-block;
  font: normal normal normal 14px/1 ElegantIcons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 18px;
}
.hot-deal-product .box-stock-product .product-link:hover {
  background-color: #000;
}
.hot-deal-product .box-stock-product .time-offer {
  font-size: 14px;
  color: #000;
  margin-top: 35px;
  margin-bottom: 25px;
  display: block;
  line-height: 1;
  font-weight: 500;
}
.hot-deal-product .box-stock-product .sale-price-date .box {
  font-family: Oswald, "Times New Roman", serif;
  display: inline-block;
  padding: 0 25px;
  font-size: 36px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
.hot-deal-product .box-stock-product .sale-price-date .box .title {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
  font-family: Poppins, Arial, sans-serif;
}
.hot-deal-product .box-stock-product .sale-price-date .box .minu,
.hot-deal-product .box-stock-product .sale-price-date .box .secs {
  display: inline-block;
}
.hot-deal-product .box-stock-product .sale-price-date .box.timer-secs,
.hot-deal-product .box-stock-product .sale-price-date .box.timer-minu {
  position: relative;
}
.hot-deal-product .box-stock-product .sale-price-date .box.timer-secs:before,
.hot-deal-product .box-stock-product .sale-price-date .box.timer-minu:before {
  position: absolute;
  top: 0;
  left: -8px;
  content: ":";
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper {
  display: inline-block;
  padding: 0 25px;
  color: #000;
  line-height: 1;
  position: relative;
  font-family: Oswald, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper:before {
  position: absolute;
  top: -2px;
  left: -5px;
  content: ":";
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper:first-child:before {
  display: none;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper ul {
  margin: 0;
  padding: 0;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper ul li {
  list-style: none;
  margin-bottom: 0;
  font-weight: 400;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper ul li a {
  color: #000;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper ul li .up {
  display: none;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper .flip-clock-before {
  display: none;
}
.hot-deal-product .box-stock-product .sale-price-date .flip-wrapper .flip-clock-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
  text-transform: capitalize;
  font-family: Poppins, Arial, sans-serif;
}
.hot-deal-product .owl-controls .owl-buttons div {
  top: -3px;
  background-color: transparent;
  color: #999;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: 0;
  font-size: 24px;
  transition: all 0.5s;
}
.hot-deal-product .owl-controls .owl-buttons div:hover {
  color: #000;
}
.hot-deal-product .owl-controls .owl-buttons .owl-prev,
.hot-deal-product .owl-controls .owl-buttons .owl-next {
  left: auto;
  right: 0;
}
.hot-deal-product .owl-controls .owl-buttons .owl-prev {
  right: 30px;
}
.mrbara-products-picks li.col-product {
  width: 100%;
}
.mrbara-products-picks .owl-carousel li.product {
  width: 100%;
}
.mrbara-products-picks ul.products li.product {
  margin-bottom: 0;
}
.mrbara-products-picks .title {
  font-family: Poppins, Arial, sans-serif;
}
.mrbara-products-picks .footer-link {
  text-align: center;
  margin-top: 80px;
}
.mrbara-products-picks .footer-link .link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  color: #000;
}
.mrbara-products-picks .footer-link .link:hover {
  border-color: #990000;
  color: #990000;
}
.mrbara-products-picks.style-1 ul.products {
  margin-left: -5px;
  margin-right: -5px;
}
.mrbara-products-picks.style-1 li.product {
  padding: 0 5px;
}
.mrbara-products-picks.style-1 ul.mrbara-products li.product {
  margin-bottom: 5px;
  padding-top: 5px;
}
.mrbara-products-picks.products-navi-1 {
  padding-top: 55px;
}
.mrbara-products-picks.products-navi-1 .owl-controls .owl-buttons div {
  top: -50px;
  background-color: transparent;
  color: #999;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: 0;
  font-size: 24px;
  transition: all 0.5s;
}
.mrbara-products-picks.products-navi-1 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-picks.products-navi-1 .owl-controls .owl-buttons .owl-prev,
.mrbara-products-picks.products-navi-1 .owl-controls .owl-buttons .owl-next {
  left: auto;
  right: 0;
}
.mrbara-products-picks.products-navi-1 .owl-controls .owl-buttons .owl-prev {
  right: 30px;
}
.mrbara-products-picks.products-navi-2 {
  padding-bottom: 70px;
}
.mrbara-products-picks.products-navi-2 .owl-controls {
  margin-top: 50px;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons div {
  background-color: transparent;
  color: #999;
  width: auto;
  height: auto;
  margin-top: 0;
  font-size: 13px;
  transition: all 0.5s;
  text-transform: uppercase;
  font-weight: 600;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons div i {
  font-size: 16px;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-prev,
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-next {
  top: auto;
  bottom: -70px;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-prev i,
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-next i {
  position: absolute;
  top: 0;
  left: -20px;
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-prev {
  left: 50%;
  right: auto;
  transform: translateX(-150%);
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-next {
  right: 50%;
  left: auto;
  transform: translateX(150%);
}
.mrbara-products-picks.products-navi-2 .owl-controls .owl-buttons .owl-next i {
  left: auto;
  right: -20px;
}
.mrbara-products-picks.products-navi-3 .owl-controls .owl-buttons div {
  top: 30%;
  color: #ccc;
  left: -70px;
  font-size: 72px;
  background-color: transparent;
  transition: 0.5s;
  margin-top: 0;
}
.mrbara-products-picks.products-navi-3 .owl-controls .owl-buttons div.owl-next {
  right: -70px;
  left: auto;
}
.mrbara-products-picks.products-navi-3 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-picks.products-pagi-1 .owl-controls,
.mrbara-products-picks.has-navigation .owl-controls {
  margin-top: 40px;
}
.mrbara-products-picks.products-pagi-1 .owl-controls .owl-pagination .owl-page span,
.mrbara-products-picks.has-navigation .owl-controls .owl-pagination .owl-page span {
  width: 17px;
  height: 17px;
  background-color: #d3e0e1;
  transition: all 0.5s;
}
.mrbara-products-picks.products-pagi-1 .owl-controls .owl-pagination .owl-page span:hover,
.mrbara-products-picks.has-navigation .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #aac4c7;
}
.mrbara-products-picks.products-pagi-1 .owl-controls .owl-pagination .owl-page.active span,
.mrbara-products-picks.has-navigation .owl-controls .owl-pagination .owl-page.active span {
  background-color: #aac4c7;
}
.mrbara-products-picks.products-pagi-1.products-navi-1 .owl-controls,
.mrbara-products-picks.has-navigation.products-navi-1 .owl-controls {
  margin-top: 0;
}
.mrbara-products-picks .owl-pagination {
  display: none;
}
.mrbara-products-picks.has-pagination .owl-pagination {
  display: block;
}
.mrbara-products-picks.products-pagi-2 .owl-controls {
  margin-top: 55px;
}
.mrbara-products-picks.products-pagi-2 .owl-controls .owl-pagination .owl-page span {
  width: 17px;
  height: 17px;
  background-color: #d3e0e1;
  transition: all 0.5s;
}
.mrbara-products-picks.products-pagi-2 .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #990000;
}
.mrbara-products-picks.products-pagi-2 .owl-controls .owl-pagination .owl-page.active span {
  background-color: #990000;
}
.mrbara-products-picks.products-picks-2 ul.products li.product {
  margin-bottom: 0;
}
.mrbara-products-picks.products-picks-2 .title {
  font-size: 48px;
  font-weight: 300;
  color: #000;
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 0;
}
.mrbara-products-picks.products-picks-2 .owl-controls {
  margin-top: 40px;
}
.mrbara-products-picks.products-picks-2 .owl-controls .owl-pagination .owl-page span {
  width: 17px;
  height: 17px;
  background-color: #d3e0e1;
  transition: all 0.5s;
}
.mrbara-products-picks.products-picks-2 .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #aac4c7;
}
.mrbara-products-picks.products-picks-2 .owl-controls .owl-pagination .owl-page.active span {
  background-color: #aac4c7;
}
.mrbara-products-picks.products-picks-3 {
  padding-bottom: 70px;
}
.mrbara-products-picks.products-picks-3 ul.products li.product {
  margin-bottom: 0;
}
.mrbara-products-picks.products-picks-3 .title {
  font-size: 36px;
  font-weight: 300;
  color: #000;
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 0;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons div {
  background-color: transparent;
  color: #999;
  width: auto;
  height: auto;
  margin-top: 0;
  font-size: 13px;
  transition: all 0.5s;
  text-transform: uppercase;
  font-weight: 600;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons div i {
  font-size: 16px;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-prev,
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-next {
  top: auto;
  bottom: -70px;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-prev i,
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-next i {
  position: absolute;
  top: 0;
  left: -20px;
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-prev {
  left: 50%;
  right: auto;
  transform: translateX(-150%);
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-next {
  right: 50%;
  left: auto;
  transform: translateX(150%);
}
.mrbara-products-picks.products-picks-3 .owl-controls .owl-buttons .owl-next i {
  left: auto;
  right: -20px;
}
.mrbara-products-picks.products-picks-4 ul.products li.product {
  margin-bottom: 0;
}
.mrbara-products-picks.products-picks-4 .title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: #990000;
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 0;
  font-family: Oswald, "Times New Roman", serif;
}
.mrbara-products-picks.products-picks-4 .owl-controls {
  margin-top: 55px;
}
.mrbara-products-picks.products-picks-4 .owl-controls .owl-pagination .owl-page span {
  width: 17px;
  height: 17px;
  background-color: #d3e0e1;
  transition: all 0.5s;
}
.mrbara-products-picks.products-picks-4 .owl-controls .owl-pagination .owl-page span:hover {
  background-color: #990000;
}
.mrbara-products-picks.products-picks-4 .owl-controls .owl-pagination .owl-page.active span {
  background-color: #990000;
}
.mrbara-products-picks.products-picks-5 .title {
  font-size: 36px;
  font-weight: 300;
  color: #000;
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 0;
}
.mrbara-products-picks.products-picks-5 .owl-controls .owl-buttons div {
  top: 30%;
  color: #ccc;
  left: -70px;
  font-size: 72px;
  background-color: transparent;
  transition: 0.5s;
  margin-top: 0;
}
.mrbara-products-picks.products-picks-5 .owl-controls .owl-buttons div.owl-next {
  right: -70px;
  left: auto;
}
.mrbara-products-picks.products-picks-5 .owl-controls .owl-buttons div:hover {
  color: #000;
}
.wpb_single_image.img-box-shadow img {
  -webkit-box-shadow: 5px 8px 120px 8px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 5px 8px 120px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 8px 120px 8px rgba(0, 0, 0, 0.25);
}
.vc_row.bg-position-right {
  background-position: top right !important;
}
.products-carousel-2 {
  overflow-x: hidden;
}
.products-carousel-2 ul.products li.product {
  clear: none !important;
  transition: none;
}
.products-carousel-2 ul.products li.product.first {
  clear: none !important;
}
.products-carousel-2 ul.products li.product .product-content-thumbnails > a {
  position: relative;
  display: block;
  height: 100%;
  transition: none;
}
.products-carousel-2 ul.products li.product .product-content-thumbnails > a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  opacity: 0;
  transition: none;
}
.products-carousel-2.has-navigation ul.products li.product.slick-current .product-content-thumbnails > a:before {
  opacity: 1;
}
.products-carousel-2.columns-4.has-navigation ul.products li.product.slick-current + li + li + li .product-content-thumbnails > a:before {
  opacity: 1;
}
.products-carousel-2.columns-5.has-navigation ul.products li.product.slick-current + li + li + li + li .product-content-thumbnails > a:before {
  opacity: 1;
}
.products-carousel-2.columns-3.has-navigation ul.products li.product.slick-current + li + li .product-content-thumbnails > a:before {
  opacity: 1;
}
.products-carousel-2 .slick-dots {
  text-align: center;
  display: none !important;
}
.products-carousel-2 .slick-dots li {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #000;
  margin: 0 10px;
  position: relative;
  transition: 0.5s;
}
.products-carousel-2 .slick-dots li button {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  overflow: hidden;
  text-indent: -999px;
  font-size: 0;
  background-color: transparent;
}
.products-carousel-2 .slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.6);
}
.products-carousel-2 .slick-arrow {
  position: absolute;
  top: 25%;
  font-size: 72px;
  cursor: pointer;
  z-index: 999;
  color: #999;
}
.products-carousel-2 .slick-arrow:hover {
  color: #000;
}
.products-carousel-2 .slick-arrow-left {
  left: 10%;
}
.products-carousel-2 .slick-arrow-right {
  right: 10%;
}
.products-carousel-2.carousel-style-1 .filters-dropdown {
  margin-bottom: 40px;
}
.products-carousel-2.carousel-style-1 .filters-dropdown ul.option-set li {
  font-family: Poppins, Arial, sans-serif;
  color: #999;
  font-weight: 600;
  text-transform: capitalize;
}
.products-carousel-2.carousel-style-1 .view-all {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
}
.products-carousel-2.carousel-style-1 .view-all .link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  transition: all 0.5s;
}
.products-carousel-2.carousel-style-1 .view-all .link:before {
  position: absolute;
  content: '\f3d4';
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 48px;
  color: #990000;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s;
}
.products-carousel-2.carousel-style-1 .view-all .link:after {
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 0;
  content: "";
  background-color: #000;
  height: 1px;
  transition: all 0.35s;
}
.products-carousel-2.carousel-style-1 .view-all .link:hover:after {
  right: auto;
  left: 0;
  width: 100%;
}
.products-carousel-2.carousel-style-2 .slick-arrow {
  line-height: 1;
  font-size: 120px;
}
.products-carousel-2.carousel-style-2 .slick-arrow:hover {
  color: #000;
}
.products-carousel-2.carousel-style-2 .slick-arrow-left {
  left: 5%;
}
.products-carousel-2.carousel-style-2 .slick-arrow-right {
  right: 5%;
}
.products-carousel-2.carousel-style-2 .filters-dropdown {
  margin-bottom: 40px;
}
.products-carousel-2.carousel-style-2 .filters-dropdown ul.option-set li {
  font-family: Poppins, Arial, sans-serif;
  color: #999;
  font-weight: 600;
  text-transform: capitalize;
}
.products-carousel-2.carousel-style-2 .filters-dropdown ul.option-set li a {
  font-size: 16px;
}
.products-carousel-2.carousel-style-2 .view-all {
  text-align: center;
  margin-top: 50px;
}
.products-carousel-2.carousel-style-2 .view-all .link {
  padding: 25px 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-color: #990000;
  display: inline-block;
  transition: all 0.5s;
  line-height: 1;
  letter-spacing: 1px;
}
.products-carousel-2.carousel-style-2 .view-all .link:hover {
  background-color: #000;
}
.products-carousel-2.carousel-style-3 {
  overflow: inherit;
}
.products-carousel-2.carousel-style-3 .slick-arrow {
  line-height: 1;
  font-size: 60px;
}
.products-carousel-2.carousel-style-3 .slick-arrow:hover {
  color: #000;
}
.products-carousel-2.carousel-style-3 .slick-arrow-left {
  left: -60px;
}
.products-carousel-2.carousel-style-3 .slick-arrow-right {
  right: -60px;
}
.products-carousel-2.carousel-style-3 ul.products li.product.slick-current .product-content-thumbnails > a:before {
  display: none;
}
.products-carousel-2.carousel-style-3.columns-4 ul.products li.product.slick-current + li + li + li .product-content-thumbnails > a:before {
  display: none;
}
.products-carousel-2.carousel-style-3.columns-5 ul.products li.product.slick-current + li + li + li + li .product-content-thumbnails > a:before {
  display: none;
}
.products-carousel-2.carousel-style-3.columns-3 ul.products li.product.slick-current + li + li .product-content-thumbnails > a:before {
  display: none;
}
.products-carousel-2.carousel-style-3 .filters-dropdown {
  margin-bottom: 40px;
}
.products-carousel-2.carousel-style-3 .filters-dropdown ul.option-set li {
  font-family: Poppins, Arial, sans-serif;
  color: #999;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0 15px;
}
.products-carousel-2.carousel-style-3 .filters-dropdown ul.option-set li a {
  font-size: 16px;
}
.products-carousel-2.carousel-style-3 .view-all {
  text-align: center;
  margin-top: 40px;
}
.products-carousel-2.carousel-style-3 .view-all .link {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.5s;
  line-height: 1;
  border-bottom: 1px solid #000;
}
.products-carousel-2.carousel-style-3 .view-all .link:hover {
  color: #990000;
  border-color: #990000;
}
.mrbara-image-box {
  padding: 25px;
  background-color: #fff;
  transition: all 0.5s;
  text-align: center;
}
.mrbara-image-box .sep {
  display: block;
}
.mrbara-image-box .title {
  font-size: 30px;
  color: #000;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 35px;
  position: relative;
  display: inline-block;
  transition: all 0.5s;
}
.mrbara-image-box .title:after {
  position: absolute;
  width: 0;
  height: 1px;
  content: "";
  background-color: #000;
  bottom: -2px;
  right: 0;
  transition: all 0.35s;
}
.mrbara-image-box .desc {
  text-align: center;
  margin-top: 30px;
  padding: 0 30px;
}
.mrbara-image-box .desc ul {
  list-style: none;
  padding-left: 0;
}
.mrbara-image-box .desc ul li a {
  font-size: 14px;
  color: #999;
  transition: all 0.5s;
  font-weight: 500;
  position: relative;
}
.mrbara-image-box .desc ul li a:after {
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 0;
  content: "";
  background-color: #000;
  height: 1px;
  transition: all 0.35s;
}
.mrbara-image-box .desc ul li a:hover {
  color: #000;
}
.mrbara-image-box .desc ul li a:hover:after {
  right: auto;
  left: 0;
  width: 100%;
}
.mrbara-image-box:hover .title:after {
  width: 100%;
  left: 0;
  right: auto;
}
.mrbara-image-box.box-shadow:hover {
  -webkit-box-shadow: 0px 25px 80px -15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 25px 80px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 25px 80px -15px rgba(0, 0, 0, 0.3);
}
.mrbara-image-box.box-shadow:hover .title:after {
  display: none;
}
.mrbara-image-box.style2 {
  padding: 0;
  background-color: transparent;
}
.mrbara-image-box.style2 .title {
  font-size: 18px;
  color: #000;
  margin-top: 35px;
  margin-bottom: 0;
  transition: 0.5s;
  display: inline-block;
}
.mrbara-image-box.style2 .desc {
  padding-bottom: 30px;
}
.mrbara-info-box .info-title {
  color: #000;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 30px;
}
.mrbara-info-box .info-title span {
  display: block;
}
.mrbara-info-box .info-desc h5 {
  font-size: 14px;
  font-weight: 600;
  font-family: Poppins, Arial, sans-serif;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-top: 20px;
}
.mrbara-info-box .info-desc p {
  margin-bottom: 0;
}
.mrbara-info-box .info-desc .old-price {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  display: block;
  line-height: 1;
  padding-bottom: 10px;
}
.mrbara-info-box .info-desc .new-price {
  font-size: 30px;
  font-weight: 600;
  color: #669900;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1;
  display: block;
  padding-bottom: 10px;
}
.mrbara-info-box .mr-button {
  transition: 0.5s ease-in;
  border-radius: 29px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 58px;
  min-width: 200px;
  padding: 0 25px;
  position: relative;
  border-width: 0;
  letter-spacing: 2px;
  background-color: #cc3333;
  display: inline-block;
  margin-top: 50px;
}
.mrbara-info-box .mr-button:hover {
  background-color: #990000;
}
.mrbara-info-box .mr-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  height: 43px;
  min-width: 168px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 22px;
  z-index: -1;
}
.mrbara-banner-large {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
.mrbara-banner-large.parallax {
  background-attachment: fixed;
  background-position: center center;
}
.mrbara-banner-large .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
}
.mrbara-banner-large .banner-content {
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 999;
}
.mrbara-banner-large .banner-content .title {
  font-size: 48px;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
}
.mrbara-banner-large .banner-content .title p {
  margin-bottom: 0;
}
.mrbara-banner-large .banner-content .sub-title {
  font-size: 18px;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 1;
  display: inline-block;
}
.mrbara-banner-large .banner-content .view-more {
  margin-top: 40px;
}
.mrbara-banner-large .banner-content .view-more .link {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  line-height: 50px;
  min-width: 140px;
  padding: 0 30px;
  background-color: #2d2d2d;
  color: #fff;
  transition: all 0.5s;
  border-radius: 5px;
}
.mrbara-banner-large .banner-content .view-more .link:hover {
  background-color: #990000;
}
.mrbara-banner-large.light-skin .banner-content .sub-title,
.mrbara-banner-large.light-skin .banner-content .title {
  color: #fff;
}
.mrbara-banner-large.light-skin .banner-content .sub-title {
  border-color: #fff;
}
.mr-info-banners {
  margin-left: -15px;
  margin-right: -15px;
}
.mr-info-banners .heading {
  margin-bottom: 75px;
}
.mr-info-banners .heading .info-title {
  padding-right: 15px;
  padding-left: 15px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #000;
}
.mr-info-banners .heading .info-desc {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  font-size: 18px;
}
.mr-info-banners .banner-item,
.mr-info-banners .banner-sizer {
  float: left;
  padding: 15px;
  width: 25%;
}
.mr-info-banners .banner-item {
  float: left;
  padding: 15px;
  width: 25%;
}
.mr-info-banners .banner-item .banner-grid {
  position: relative;
}
.mr-info-banners .banner-item .banner-grid.no-image {
  display: flex;
  align-items: center;
}
.mr-info-banners .banner-item .banner-grid.link-hover .banner-desc {
  transform: translateY(40px);
  transition: 0.5s;
}
.mr-info-banners .banner-item .banner-grid.link-hover .link {
  opacity: 0;
}
.mr-info-banners .banner-item .banner-grid.link-hover:hover .banner-desc {
  transform: translateY(0);
}
.mr-info-banners .banner-item .banner-grid.link-hover:hover .link {
  opacity: 1;
  color: #990000;
}
.mr-info-banners .banner-item .banner-grid.no-image .sc-content,
.mr-info-banners .banner-item .banner-grid.no-image .newsletter-content {
  position: static;
  transform: none;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .banner-content .b-title {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .banner-content .desc {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .banner-content .link {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .sc-content {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .sc-content .sc-title {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .sc-content .sc-title:after {
  background-color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .sc-content .sc-desc ul.socials li a {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .sc-content .sc-desc ul.socials li a:hover {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .newsletter-content {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .newsletter-content .nl-title {
  color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .newsletter-content .nl-title:after {
  background-color: #fff;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .newsletter-content .mc4wp-form input[type='email'] {
  background-color: transparent;
  border-bottom: 1px solid #999;
}
.mr-info-banners .banner-item .banner-grid.dark-skin .newsletter-content .mc4wp-form:after {
  color: #fff;
}
.mr-info-banners .banner-item .banner-content {
  position: absolute;
  bottom: 45px;
  left: 50px;
  right: 50px;
  color: #999;
  transition: 0.35s;
}
.mr-info-banners .banner-item .banner-content .banner-desc {
  padding-bottom: 20px;
}
.mr-info-banners .banner-item .banner-content .b-title {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}
.mr-info-banners .banner-item .banner-content .desc p {
  margin-bottom: 0;
}
.mr-info-banners .banner-item .banner-content .link {
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  transition: 0.5s;
  display: block;
}
.mr-info-banners .banner-item .banner-content .link i {
  padding-left: 10px;
}
.mr-info-banners .banner-item .banner-content .link:hover {
  color: #990000;
}
.mr-info-banners .banner-item .sc-content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 20px 25px 20px 45px;
  left: 0;
  color: #999;
  width: 100%;
}
.mr-info-banners .banner-item .sc-content .sc-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  padding-bottom: 35px;
  position: relative;
  margin-bottom: 50px;
}
.mr-info-banners .banner-item .sc-content .sc-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #000;
  height: 1px;
  width: 72px;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials {
  margin-top: 10px;
  padding: 0;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials li {
  list-style: none;
  display: inline-block;
  padding-right: 20px;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials li:last-child {
  padding-right: 0;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials li a {
  font-size: 16px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: block;
  color: #666;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials li a:hover {
  color: #990000;
}
.mr-info-banners .banner-item .sc-content .sc-desc ul.socials li a i {
  width: 20px;
  height: 20px;
}
.mr-info-banners .banner-item .sc-content .sc-desc .mr-number-phone {
  font-size: 24px;
}
.mr-info-banners .banner-item .sc-content p {
  margin-bottom: 0;
}
.mr-info-banners .banner-item .newsletter-content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 20px 45px;
  left: 0;
  color: #999;
  width: 100%;
}
.mr-info-banners .banner-item .newsletter-content .nl-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  padding-bottom: 35px;
  position: relative;
  margin-bottom: 50px;
}
.mr-info-banners .banner-item .newsletter-content .nl-title span {
  color: #990000;
}
.mr-info-banners .banner-item .newsletter-content .nl-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #000;
  height: 1px;
  width: 72px;
}
.mr-info-banners .banner-item .newsletter-content .nl-desc p {
  margin-bottom: 0;
}
.mr-info-banners .banner-item .newsletter-content .mc4wp-form {
  margin-top: 60px;
  position: relative;
}
.mr-info-banners .banner-item .newsletter-content .mc4wp-form input[type='email'] {
  line-height: 65px;
  height: 65px;
  width: 100%;
  border: none;
  border-radius: 3px;
  padding-right: 30px;
  padding-left: 30px;
}
.mr-info-banners .banner-item .newsletter-content .mc4wp-form:after {
  position: absolute;
  content: "\f30f";
  display: inline-block;
  font: normal normal normal 14px/1 ionicons;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  right: 30px;
  font-size: 30px;
  color: #999;
  top: 18px;
}
.mr-info-banners .banner-item .newsletter-content .mc4wp-form input[type='submit'] {
  position: absolute;
  right: 28px;
  top: 12px;
  opacity: 0;
  width: 30px;
  height: 40px;
  padding: 0;
  border: none;
  z-index: 100;
}
.mr-info-banners .banner-full {
  width: 50%;
}
.mr-info-banners .banner-wide {
  width: 50%;
}
.mr-info-banners.style-2 .heading .info-title {
  font-weight: 400;
  font-family: Prata, "Times New Roman", serif;
}
.mr-info-banners.style-2 .banner-item .banner-content .b-title {
  font-weight: 400;
  margin-bottom: 10px;
  font-family: Prata, "Times New Roman", serif;
}
.mr-info-banners.style-2 .banner-item .sc-content .sc-title {
  font-weight: 400;
  font-family: Prata, "Times New Roman", serif;
}
.mr-info-banners.style-2 .banner-item .newsletter-content .nl-title {
  font-weight: 400;
  font-family: Prata, "Times New Roman", serif;
}
.product-category-box {
  overflow: hidden;
  display: flex;
  background-color: #fff;
}
.product-category-box .cats-info {
  width: 20%;
  float: left;
  padding: 30px 30px 65px;
  border-top: 3px solid #990000;
  position: relative;
}
.product-category-box .cats-info h2 {
  line-height: 1;
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 45px;
}
.product-category-box .cats-info .cat-title {
  color: #990000;
}
.product-category-box .cats-info .sub-cats {
  margin: 0;
  padding: 0;
}
.product-category-box .cats-info .sub-cats li {
  list-style: none;
  margin: 10px 0;
}
.product-category-box .cats-info .sub-cats li a {
  color: #000;
}
.product-category-box .cats-info .sub-cats li a:hover {
  color: #999;
}
.product-category-box .cats-info .footer-link {
  position: absolute;
  bottom: 40px;
  left: 30px;
}
.product-category-box .cats-info .footer-link .link {
  font-size: 14px;
  color: #999;
  font-style: italic;
}
.product-category-box .images-slider {
  width: 22%;
  float: left;
}
.product-category-box .images-slider .owl-controls .owl-pagination {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 10px;
  text-align: center;
}
.product-category-box .images-slider .owl-controls .owl-page span {
  width: 10px;
  height: 10px;
  transition: 0.5s;
}
.product-category-box .products-box {
  width: 58%;
  float: left;
  clear: none;
  margin-top: -1px;
}
.product-category-box .products-box ul.products {
  margin-right: 0;
  margin-left: 0;
}
.product-category-box .products-box li {
  width: 33.33%;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  text-align: center;
  position: relative;
}
.product-category-box .products-box li:after {
  position: absolute;
  right: 0;
  top: 0;
  height: 110%;
  width: 1px;
  border-right: 1px solid #e0e0e0;
  content: "";
}
.product-category-box .products-box li .product-list {
  padding: 15px;
}
.product-category-box .products-box li .product-cat {
  display: none;
}
.product-category-box .products-box li .price {
  text-align: center;
  color: #669900;
  display: block;
}
.product-category-box .products-box li .price del {
  font-size: 12px;
  color: #999;
  padding-right: 7px;
}
.product-category-box .products-box li .price ins {
  color: #cc3333;
  text-decoration: none;
}
.product-category-box .products-box li .product-thumbnail {
  padding: 6px 10px 10px;
  display: block;
}
.product-category-box .products-box li .product-title {
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}
.product-category-box .products-box li .btn-add-to-cart {
  display: none;
}
.product-category-box .products-box li:nth-child( 3n+1 ) {
  clear: both;
  border-top: 1px solid #e0e0e0;
}
.product-category-box .products-box li:nth-child( 3n+2 ) {
  border-top: 1px solid #e0e0e0;
}
.product-category-box .products-box li:nth-child( 3n+3 ) {
  border-top: 1px solid #e0e0e0;
}
.product-category-box .products-box li:nth-child( 3n ):after {
  border: none;
}
.product-category-box .products-box li:hover .product-title {
  text-decoration: underline;
}
.product-category-box.product-category-box-2 {
  display: block;
  position: relative;
  z-index: 10;
}
.product-category-box.product-category-box-2 .images-slider {
  width: 100%;
}
.product-category-box.product-category-box-2 h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: Poppins, Arial, sans-serif;
}
.product-category-box.product-category-box-2 .cat-title {
  padding: 15px 0 13px 45px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.product-category-box.product-category-box-2 .cat-title .cat-icon {
  position: absolute;
  top: 16px;
  left: 22px;
}
.product-category-box.product-category-box-2:hover .cat-title {
  text-decoration: underline;
}
.wpb_text_column p {
  margin-bottom: 0;
}
@-moz-document url-prefix() {
  .product-carousel.woocommerce ul.products li.product .price,
  .mrbara-banner.banner-style3 h3 {
    font-weight: 300;
  }
}
.admin-bar .left-side-menu-icon {
  top: 64px;
}
.left-side-menu-icon {
  position: fixed;
  top: 30px;
  left: 35px;
  z-index: 9999;
  display: none;
}
.left-side-menu-icon ul {
  margin: 0;
  padding: 0;
}
.left-side-menu-icon ul li {
  display: block;
  margin: 0;
}
.left-side-menu-icon ul li a {
  height: 50px;
  line-height: 50px;
  display: block;
  color: #fff;
  position: relative;
  padding-left: 50px;
}
.left-side-menu-icon ul li a:hover .cat-title {
  z-index: 99;
  transition: all 0.5s;
  transform: translateX(50px);
  opacity: 1;
}
.left-side-menu-icon ul li a:hover .cat-icon {
  background-color: transparent;
  color: #fff;
}
.left-side-menu-icon ul li a.active .cat-icon {
  background-color: transparent;
  color: #fff;
}
.left-side-menu-icon ul li .cat-title {
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  z-index: -9999;
  white-space: nowrap;
  transform: translateX(0);
  width: auto;
  opacity: 0;
}
.left-side-menu-icon ul li .cat-icon {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #000;
  transition: 0.35s;
}
.left-side-menu-icon ul li .cat-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.posts-carousel .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.2;
  font-size: 18px;
  color: #000;
}
.posts-carousel .posts-list {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 20px;
}
.posts-carousel .posts-list .single_blog_item {
  padding-left: 15px;
  padding-right: 15px;
  margin: 20px 0;
  width: 100%;
  overflow: hidden;
}
.posts-carousel .posts-list .single_blog_item .entry-image {
  width: 80px;
  float: left;
}
.posts-carousel .posts-list .single_blog_item .post-title {
  padding-left: 100px;
  margin: 0;
  line-height: 1.2;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}
.posts-carousel .posts-list .single_blog_item .p-title {
  font-weight: 600;
  color: #000;
  display: block;
  padding-bottom: 10px;
}
.posts-carousel .posts-list .single_blog_item .entry-date {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.posts-carousel .posts-list .single_blog_item:hover .p-title {
  text-decoration: underline;
}
.posts-carousel .owl-controls .owl-buttons div {
  top: -54px;
  right: 15px;
  background-color: transparent;
  width: auto;
  height: auto;
  color: #999;
  font-size: 20px;
}
.posts-carousel .owl-controls .owl-buttons div:hover {
  color: #000;
}
.posts-carousel .owl-controls .owl-buttons div.owl-next i:before {
  content: "\f3d3";
}
.posts-carousel .owl-controls .owl-buttons div.owl-prev {
  right: 40px;
  left: auto;
}
.posts-carousel .owl-controls .owl-buttons div.owl-prev i:before {
  content: "\f3d2";
}
.top-promotion {
  /* Skeleton */
  /* PLAY */
}
.top-promotion .flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}
.top-promotion .flip-wrapper {
  display: inline-block;
  margin-right: 15px;
}
.top-promotion .flip-wrapper:last-child {
  margin-right: 0;
}
.top-promotion .flip-wrapper .flip-clock-label {
  display: block;
}
.top-promotion .flip-clock-wrapper a:hover {
  color: #fff;
}
.top-promotion .flip-clock-wrapper ul {
  list-style: none;
}
.top-promotion .flip-clock-wrapper {
  text-align: center;
  position: relative;
  width: 100%;
}
.top-promotion .flip-clock-wrapper ul {
  position: relative;
  float: left;
  width: 67px;
  height: 61px;
  line-height: 63px;
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  display: block;
  box-shadow: 0px 0px 31px -6px rgba(0, 0, 0, 0.75);
  margin-bottom: 5px;
}
.top-promotion .flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 68px;
  margin-bottom: 0;
}
.top-promotion .flip-clock-wrapper ul li:first-child {
  z-index: 2;
}
.top-promotion .flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}
.top-promotion .flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden;
  outline: 1px solid transparent;
}
.top-promotion .flip-clock-wrapper ul li a .up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}
.top-promotion .flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.4);
}
.top-promotion .flip-clock-wrapper ul li a .down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
}
.top-promotion .flip-clock-wrapper ul li a .inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #fff;
  text-align: center;
  background-color: #663333;
  font-size: 36px;
  font-weight: 400;
}
.top-promotion .flip-clock-wrapper ul li a .up .inn {
  top: 0;
}
.top-promotion .flip-clock-wrapper ul li a .down .inn {
  bottom: 0;
}
.top-promotion .flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}
.top-promotion .flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}
.top-promotion .flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}
.top-promotion .flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}
.top-promotion .flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}
