/* Minification failed. Returning unminified contents.
(9974,5): run-time error CSS1060: Expected closing curly-brace, found '0'
(10007,1): run-time error CSS1019: Unexpected token, found '}'
(10011,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(10012,8): run-time error CSS1035: Expected colon, found '{'
(10028,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(10029,8): run-time error CSS1035: Expected colon, found '{'
(11840,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(11841,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0'
(11845,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(11846,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0'
(11850,1): run-time error CSS1019: Unexpected token, found '@-ms-keyframes'
(11851,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0'
(12187,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12188,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12197,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12198,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12213,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12214,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12223,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12224,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12238,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12239,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12252,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12253,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12273,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12274,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12287,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12288,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12308,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12309,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12322,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12323,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12340,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(12341,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(12354,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(12355,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
 */
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -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;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/Assets/client/themes/digitalstore/css/owl/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}


@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	.replace-2x {
		font-size: 1px;
	}
	.example {
		background-image: url(/Assets/client/themes/digitalstore/css/images/example2x.png);
		-webkit-background-size:13px 13px;
		-moz-background-size:13px 13px;
		-o-background-size:13px 13px;
		background-size:13px 13px;
	}
}

/* Foundation v2.1.4 http://foundation.zurb.com */
/* Artfully masterminded by ZURB  */

/* -------------------------------------------------- 
   Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Page Name 1
:: Page Name 2
*/


/* -----------------------------------------
   Shared Styles
----------------------------------------- */

table th { font-weight: bold; }
table td, table th { padding: 9px 10px; text-align: left; }

/* Mobile */
@media only screen and (max-width: 767px) {
	
	table.responsive { margin-bottom: 0; }
	
	.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
	.pinned table { border-right: none; border-left: none; width: 100%; }
	.pinned table th, .pinned table td { white-space: nowrap; }
	.pinned td:last-child { border-bottom: 0; }
	
	div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
	div.table-wrapper div.scrollable { margin-left: 35%; }
	div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }	
	
	table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
	table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }
	
	
}




/*# sourceMappingURL=blockbestsellers.css.map */


/*******************************************************************
					Cart Block Styles
********************************************************************/
#header .shopping_cart {
  float: right;
  height: 38px;
  margin-top: 3px;
  color: #888;
  position: relative;
}
.custom_block_cart {
  float: right;
  margin: 12px 0 0 5px;
  z-index: 9;
  text-align: left;
}
.layout_3 .ajax_cart_quantity::after, .layout_3 .ajax_cart_quantity::before {
  display: none;
}
.layout_3 .ajax_cart_quantity {
  background-color: #c79b50;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 20px;
  position: absolute;
  right: 2px;
  text-align: center;
  top: -12px;
  width: 20px;
}
.ajax_cart_total {
  font-size: 15px;
}
@media (max-width: 1200px) {
    .shopping_cart {
      margin: 0 auto;
      float: none;
      width: 100%; 
    } 
}
.layout_3 .shopping_cart > a:first-child {
  display: block;
  font-size: 14px;
  margin-top: 0;
  overflow: unset;
  padding: 0 10px 30px 11px;
  position: relative;
}
.shopping_cart > a:first-child {
  color: #ffffff !important;
  display: block;
  float: right;
  font-family: Montserrat;
  font-weight: bold;
  padding-left: 42px;
  position: relative;
  text-transform: uppercase;
}
.show_qties .ajax_cart_quantity {
  border-radius: 50%;
  font-size: 11px;
  height: 20px;
  left: 14px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: -3px;
  width: 20px;
}
.layout_3 .ybc_custom_float_header.scroll_heading .shopping_cart > a:first-child {
  margin-top: 5px;
}

.shopping_cart > a:first-child b {
  color: #fff;
  display: block;
  font-family: Poppins-Regular,Arial,Helvetica,sans-serif;
  font-weight: normal;
  line-height: 20px;
  margin-top: 5px;
  padding-right: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease ;
	   -moz-transition: all 0.3s ease ;
	    -ms-transition: all 0.3s ease ;
	     -o-transition: all 0.3s ease ;
	        transition: all 0.3s ease ;
}
.shopping_cart > a:first-child::before {
  background-image: url(/Assets/client/themes/digitalstore/img/icon-cart.png);
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff !important;
  content: "";
  display: inline-block;
  font-size: 14px;
  height: 28px;
  left: 0;
  line-height: 30px;
  padding-left: 2px;
  padding-right: 0;
  position: absolute;
  text-align: center;
  width: 30px;
}
.unvisibles {
  display: none;
}
.shopping_cart .block_cart_expand:after, .shopping_cart .block_cart_collapse:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    display: inline-block;
    float: right;
    font-size: 18px;
    color: #686666;
    padding: 6px 0 0 0; 
}
.shopping_cart .block_cart_collapse:after {
    content: "\f0d8";
    padding: 4px 0px 2px 0px; 
}
.ajax_cart_product_txt_0{
  display: block!important;  
}
.cart_block .cart_block_list .remove_link {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
}
.cart_block .cart_block_list .remove_link a,
.cart_block .cart_block_list .ajax_cart_block_remove_link {
  color: #797979;
  display: block;
  width: 100%;
  height: 100%; 
}
.cart_block .cart_block_list .remove_link a:before,
.cart_block .cart_block_list .ajax_cart_block_remove_link:before {
    content: "\f00d";
    background-color: #f4f4f4;
      border-radius: 50%;
      color: #d5d5d5;
      display: inline-block;
      font-family: "FontAwesome";
      font-size: 12px;
      height: 17px;
      line-height: 17px;
      text-align: center;
      width: 17px;
}
.cart_block .cart_block_list .remove_link a:hover:before,
.cart_block .cart_block_list .ajax_cart_block_remove_link:hover:before{
    background-color: #dfdfdf;
    color: #888;
}
  .cart_block .cart_block_list .remove_link a:hover,
  .cart_block .cart_block_list .ajax_cart_block_remove_link:hover {
    color: #515151; }
.cart_block .cart-images {
  float: left;
  margin-right: 10px;
  max-width: 60px;
}
.cart_block .cart-info {
  overflow: hidden;
  position: relative;
  padding-right: 15px; }
.cart_block .cart-info .product-name {
  display: flex;
  margin-top: -4px;
  padding-bottom: 0;
  text-align: left;
}
.cart-info .product-name a {
  color: #888;
  display: inline-block;
  font-family: Poppins;
  font-size: 13px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart_block .cart-info .quantity-formated {
  color: #888;
  display: inline-block;
  float: left;
  font-size: 10px;
  line-height: 24px;
  padding-right: 5px;
  text-transform: uppercase;
}
.cart_block .cart-info .quantity-formated .quantity {
  font-size: 12px;
}
.cart_block dt {
  border-bottom: 1px solid #dfdfdf;
  font-weight: normal;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
.cart_block dd {
  position: relative; }
  .cart_block dd .cart_block_customizations {
    border-top: 1px dashed #333; }
    .cart_block dd .cart_block_customizations li {
      padding: 10px 20px; }
      .cart_block dd .cart_block_customizations li .deleteCustomizableProduct {
        position: absolute;
        right: 10px; }
.cart_block .cart-prices {
  font-weight: bold;
  padding: 10px 0px;
}
.shopping_cart .price {
  font-family: Montserrat;
}
.cart_block .cart-prices .cart-prices-line {
  overflow: hidden;
  padding: 7px 0;
  text-transform: uppercase;
}
.cart_block .cart-prices .cart-prices-line.last-line {
  border: none; 
}
.cart_block .cart-buttons {
  margin: 0;
  overflow: hidden;
  padding: 0 0px 10px;
}
.cart_block .cart-buttons a {
  background-color: #fff;
  border: medium none;
  color: #000;
  float: left;
  line-height: 33px;
  margin-bottom: 10px;
  margin-right: 0px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.cart_block .cart-buttons a#button_order_cart {
  margin-bottom: 5px;
  margin-right: 0;
}
.cart_block .cart-buttons a#button_order_cart span {
  padding: 7px 0;
}


/*******************************************************************
					Cart Block(Header) Styles
********************************************************************/
#header .cart_block {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  height: auto;
  margin-top: 25px;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  visibility: hidden;
  width: 250px;
  z-index: 100;
  padding: 0 15px;
}
#header .cart_block.active {
  margin-top: 7px;
  opacity: 1;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  visibility: visible;
}

#header .cart_block .cart_block_list .remove_link a,
#header .cart_block .cart_block_list .ajax_cart_block_remove_link {
    outline: none;
    text-decoration: none; 
}
#header .cart_block .cart_block_list .remove_link a:hover,
#header .cart_block .cart_block_list .ajax_cart_block_remove_link:hover {
  color: #eee; 
}

#header .cart_block dt.first_item {
  background: none; 
}
#header .cart_block .product-atributes {
    padding-bottom: 5px;
    font-size: 11px; 
}

.cart_block #cart_block_summary,
.cart_block .title_block span,
#header .cart_block h4,
#header .cart_block .title_block,
#header .cart_block h4 {
  display: none; }

.cart_block .cart_block_shipping_cost,
.cart_block .cart_block_tax_cost,
.cart_block .cart_block_total,
.cart_block .cart_block_wrapping_cost {
  float: right; }

.cart_block table.vouchers {
  clear: both;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px; }
  .cart_block table.vouchers tr td {
    padding: 2px; }
    .cart_block table.vouchers tr td.quantity {
      margin-right: 5px;
      min-width: 18px; }
    .cart_block table.vouchers tr td.delete {
      padding-left: 0;
      padding-right: 0;
      text-align: right;
      width: 15px; }

/*****************************************************************************
					Layer Cart Css
*****************************************************************************/
.layer_cart_overlay {
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.7; }

* html .layer_cart_overlay {
  position: absolute;
  left: 0;
  margin-left: -160px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2; }

#layer_cart {
  background-color: #fff;
  border-radius: 4px;
  display: none;
  left: 50%;
  max-width: 1100px;
  position: absolute;
  text-align: left;
  transform: translate3d(-50%, 0px, 0px);
  -webkit-transform: translate3d(-50%, 0px, 0px);
  width: 96%;
  margin-top: 10%;
  z-index: 99;
}
  #layer_cart .layer_cart_product {
    padding: 30px 30px 30px 30px;
    overflow: hidden;
    position: static; }
#layer_cart .layer_cart_product .title {
  color: #d4b278;
  display: block;
  margin-bottom: 22px;
  font-size: 23px;
  line-height: 26px;
}
      @media (max-width: 767px) {
        #layer_cart .layer_cart_product .title {
          font-size: 18px;
          padding-right: 0;
          line-height: normal; } }
      #layer_cart .layer_cart_product .title i {
        font-size: 30px;
        line-height: 30px;
        float: left;
        padding-right: 8px; }
        @media (max-width: 767px) {
          #layer_cart .layer_cart_product .title i {
            font-size: 22px;
            line-height: 22px; } }
#layer_cart .layer_cart_product .product-image-container {
  border: 1px solid #D6D4D4;
  float: left;
  margin-right: 30px;
  max-width: 178px;
  padding: 5px;
  overflow: hidden;
  position: relative;
}
.layer_cart_product_info span, .layer_cart_row span {
  font-family: Montserrat;
}
.ybc-layout-layout4 .layer_cart_cart .ajax_cart_quantity {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #333333;
  position: static;
}
.product-image-container .layer_cart_img {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
@media (max-width: 480px) {
    #layer_cart .layer_cart_product .product-image-container {
      float: none;
      margin-right: 0;
      margin-bottom: 10px; 
    } 
}
#layer_cart .layer_cart_product .layer_cart_product_info {
  color: #888;
  padding: 25px 0 0;
}
#layer_cart .layer_cart_product .layer_cart_product_info #layer_cart_product_title {
  display: block;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: left;
}
.layer_cart_product_info #layer_cart_product_attributes {
  display: block;
  padding-bottom: 5px;
}
#layer_cart .layer_cart_product .layer_cart_product_info > div {
    padding-bottom: 7px; 
}
#layer_cart .layer_cart_product .layer_cart_product_info > div strong {
    padding-right: 3px; 
    color: #454545;
}
#layer_cart .layer_cart_cart {
  background: #fafafa none repeat scroll 0 0;
  border-left: 1px solid #d6d4d4;
  border-radius: 0 4px 4px 0;
  color: #888;
  padding: 21px 30px 170px;
  position: relative;
}
    @media (min-width: 1200px) {
      #layer_cart .layer_cart_cart {
        min-height: 318px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #layer_cart .layer_cart_cart {
        min-height: 360px; } }
    @media (max-width: 991px) {
      #layer_cart .layer_cart_cart {
        -moz-border-radius: 0px 0 4px 4px;
        -webkit-border-radius: 0px;
        border-radius: 0px 0 4px 4px;
        border-left: none;
        border-top: 1px solid #d6d4d4; } }
#layer_cart .layer_cart_cart .title {
  border-bottom: 1px solid #e3e3e3;
  color: #333;
  display: block;
  font-size: 23px;
  line-height: 29px;
  margin-bottom: 17px;
  padding-bottom: 13px;
}
      @media (max-width: 767px) {
        #layer_cart .layer_cart_cart .title {
          font-size: 18px; } }
    #layer_cart .layer_cart_cart .layer_cart_row {
      padding: 0 0 7px 0; }
    #layer_cart .layer_cart_cart .button-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 0px 30px 20px 30px; }
#layer_cart .layer_cart_cart .button-container .btn {
  margin-bottom: 10px;
}
  #layer_cart .layer_cart_cart .button-container span.exclusive-medium {
    margin-right: 5px; }
#layer_cart .layer_cart_cart .button-container span.exclusive-medium i {
  padding-right: 5px; }
#layer_cart .cross {
    position: absolute;
    right: 7px;
    top: 8px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    color: #888;
    z-index: 2; 
}
#layer_cart .cross:before {
  content: "\f057";
  display: block;
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 25px; 
}
#layer_cart .continue {
  background-color: #fff;
  border-color: #dbdbdb;
  color: #888;
  cursor: pointer;
  padding: 8px 10px;
}
  #layer_cart p {
    padding: 0px; }

/*.ajax_cart_quantity::after {
  content: ")";
  vertical-align: -2px;
}
.ajax_cart_quantity::before {
  content: "(";
  vertical-align: -2px;
}*/
/************************************************************************
						Layer Cart Caroucel
*************************************************************************/
#layer_cart .crossseling .crossseling-content {
  border-top: 1px solid #d6d4d4;
  padding: 26px 15px 40px;
  position: relative; 
}
.layer_cart_cart .ajax_cart_quantity {
  display: inline-block !important;
  height: auto !important;
  margin: 0 !important;
  position: static !important;
  width: auto !important;
}
#layer_cart .crossseling #blockcart_list {
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
#layer_cart .crossseling #blockcart_list ul {
    display: block; 
}
#layer_cart .crossseling #blockcart_list ul li {
  float: left;
  margin: 0;
  padding: 2px 15px 0;
}
#layer_cart .crossseling #blockcart_list ul li .product-image-container {
  border: 1px solid #D6D4D4;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
#layer_cart .crossseling #blockcart_list ul li .product-image-container img {
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  width: 100%;
}
#layer_cart .crossseling #blockcart_list ul li .product-name {
    padding-bottom: 5px; 
}
        #layer_cart .crossseling #blockcart_list ul li .product-name a {
          font-size: 15px;
          line-height: 20px; }
  #layer_cart .crossseling #blockcart_list a.bx-prev,
  #layer_cart .crossseling #blockcart_list a.bx-next {
    display: block;
    font-family: "FontAwesome";
    font-size: 20px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    color: #333;
    text-indent: -5000px;
    position: absolute;
    top: 45%;
    margin-top: -20px; }
    #layer_cart .crossseling #blockcart_list a.bx-prev:after,
    #layer_cart .crossseling #blockcart_list a.bx-next:after {
      display: block;
      text-indent: 0; }
    #layer_cart .crossseling #blockcart_list a.bx-prev:hover,
    #layer_cart .crossseling #blockcart_list a.bx-next:hover {
      color: #c0c0c0; }
    #layer_cart .crossseling #blockcart_list a.bx-prev.disabled,
    #layer_cart .crossseling #blockcart_list a.bx-next.disabled {
      display: none; }
  #layer_cart .crossseling #blockcart_list a.bx-prev {
    left: 5%; }
    #layer_cart .crossseling #blockcart_list a.bx-prev:after {
      content: "\f137"; }
  #layer_cart .crossseling #blockcart_list a.bx-next {
    right: 5%; }
    #layer_cart .crossseling #blockcart_list a.bx-next:after {
      content: "\f138"; }
  #layer_cart .crossseling #blockcart_list .bx-controls {
    overflow: hidden; 
  }
.ybc_custom_float_header #layer_cart {
  max-height: calc(100% - 30%);
  overflow: auto;
  position: fixed;
  top: 15% !important;
  z-index: 2147483647;
}


/*crossseling*/
.crossseling-content h2 {
  font-size: 18px;
  margin-top: 0;
  padding: 0 15px;
}
.header_style_2 .custom_block_cart {
  float: right;
  margin: 10px 0 0 5px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
}

@media (min-width: 768px) and (max-width: 991px){
    .label_shopping_cart, 
    .ajax_cart_total {
      display: none;
    }
    .shopping_cart > a:first-child {
      padding-left: 34px;
    }
}

@media (max-width: 767px){
    .shopping_cart .ajax_cart_product_txt_s, .shopping_cart .ajax_cart_product_txt {
      display: none !important;
    }
    .header_style_1 .custom_block_cart {
      float: right;
      margin: 0 0 0 5px;
      position: absolute;
      right: 0;
      text-align: left;
      top: 0%;
    }
    .shopping_cart > a:first-child {
      padding-left: 34px;
    }
    #header .cart_block.active {
      margin-top: 2px;
    }
    .ybc_custom_float_header #layer_cart {
      margin-left: 5%;
      margin-right: 5%;
      max-height: calc(100% - 20px);
      overflow: scroll;
      position: fixed;
      top: 10px !important;
      width: 90%;
      z-index: 2147483647;
      left:0;
    }
    .ybc_custom_float_header #layer_cart {
      margin-left: 5%;
      margin-right: 5%;
      max-height: calc(100% - 20px);
      overflow: scroll;
      position: fixed;
      top: 10px !important;
      width: 90%;
      z-index: 21474;
    }
    .shopping_cart > a:first-child {
      font-size: 12px;
      margin-right: 15px;
    }
    .label_shopping_cart, .ajax_cart_total {
      display: none!important;
    }
}

@media (max-width: 479px){
    .ybc_featuredcats .ybc-fc-item-frontend a {
      font-size: 14px;
    }
    #header .cart_block {
      /*display: none !important;*/
    }
    #layer_cart .layer_cart_cart .button-container {
      padding: 0 20px 20px;
    }
    #layer_cart .layer_cart_cart {
      padding: 21px 20px 170px;
    }
    #layer_cart .layer_cart_product {
      padding: 30px 20px;
    }
}












/*# sourceMappingURL=blockcart.css.map */


#categories_block_top {
  clear: both;
  position: relative;
  top: 30px; }
  #categories_block_top .sf-menu {
    position: relative; }
    #categories_block_top .sf-menu > li {
      position: static; }
      #categories_block_top .sf-menu > li > ul {
        width: 100%;
        top: 60px;
        margin: 0 20px; }
        #categories_block_top .sf-menu > li > ul > li {
          display: block;
          float: left;
          width: 20%;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          padding: 0 10px; }
        #categories_block_top .sf-menu > li > ul > .category_thumb {
          display: block;
          clear: both;
          overflow: hidden;
          width: 100%; }
          #categories_block_top .sf-menu > li > ul > .category_thumb img {
            display: inline-block;
            width: 33%; }
      #categories_block_top .sf-menu > li h4 a {
        font-size: 1.1em; }
        #categories_block_top .sf-menu > li h4 a:before {
          display: none; }
      #categories_block_top .sf-menu > li .main-level-submenus {
        position: relative;
        display: block !important;
        visibility: visible !important;
        top: 0;
        background: none;
        box-shadow: none;
        padding: 0;
        left: 0; }
    #categories_block_top .sf-menu .category_thumb {
      display: none; }

#categories_block_left li {
  position: relative; }
#categories_block_left li a {
  display: block;
  line-height: 30px;
}
#categories_block_left li span.grower {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-family: "FontAwesome";
    font-size: 10px; 
}
    #categories_block_left li span.grower.OPEN:before, #categories_block_left li span.grower.CLOSE:before {
      content: "\f068";
      display: block;
      vertical-align: middle;
      width: 30px;
      height: 30px;
      color: #333;
      line-height: 30px;
      text-align: center; }
    #categories_block_left li span.grower.CLOSE:before {
      content: "\f067";
      color: #959398; } 
#categories_block_left li a.selected {
  color: #fa6900;
}
#categories_block_left li a {
  display: block;
  line-height: 30px;
}
#categories_block_left li li a{
    text-transform: capitalize;
}
#categories_block_left li li a {
  border-bottom: 0 none;
  color: #666;
  font-weight: normal;
  padding-left: 10px;
}
#categories_block_left .tree.dynamized > li {
  border-bottom: 1px solid #dbdbdb;
}
#categories_block_left .tree.dynamized > li.last {
  border: medium none;
}


/*# sourceMappingURL=blockcategories.css.map */


#currencies-block-top {
  position: relative; 
}

#currencies-block-top span.firstWord {
    display: none; 
}
#currencies-block-top div.current {
  color: #555;
  cursor: pointer;
  float: left;
  letter-spacing: 1px;
  line-height: 20px;
  margin-right: 20px;
  padding: 15px 0;
  text-transform: uppercase;
}
.cur-label {
  float: left;
  font-family: Montserrat;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}
#currencies-block-top ul li:last-child {
  border-bottom: none;
}
#currencies-block-top div.current::after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 16px;
  vertical-align: -2px;
  line-height: 18px;
  margin-left: 0;
}

@media (min-width: 768px) and (max-width: 991px){
    #currencies-block-top div.current::after {
      margin-left: 5px;
    }
}
@media (max-width: 767px) {
    #currencies-block-top ul {
      right: 0;
      left: auto;
      width: 120px;
    }
}
@media (max-width: 479px) {
  #currencies-block-top div.current {
      font-size: 11px;
      line-height: 30px;
      padding: 0 5px;
      text-align: left;
    }
    #currencies-block-top {
      margin-right: 10px; 
    } 
    #currencies-block-top {
      float: right;
      margin: 0;
      position: relative;
    }
    #currencies-block-top ul {
      top: 100%;
    }
    #currencies-block-top div.current::after {
      margin-left: 5px;
    }
}
/*# sourceMappingURL=blockcurrencies.css.map */


#languages-block-top {
  position: relative;
}
  
#languages-block-top span.firstWord {
    display: none; 
}
#languages-block-top div.current {
  color: #555;
  cursor: pointer;
  float: left;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 20px;
  margin-right: 0;
  padding: 15px 0;
}
#languages-block-top .lang-label {
  float: left;
  line-height: 28px;
  padding: 8px 0 10px 10px;
  text-transform: none;
}
#languages-block-top .current > span {
  padding-right: 8px;
}

#languages-block-top div.current strong {
    color: #777777; 
}
#languages-block-top ul {
  margin: 0;
  width: 100%;
}
#languages-block-top ul li:last-child {
  border-bottom: none;
}
#languages-block-top div.current:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 16px;
  line-height: 18px;
  vertical-align: -2px;
  padding-left: 0px; 
}
@media (min-width: 768px) and (max-width: 991px){
    #languages-block-top div.current::after {
      margin-left: 5px;
    }
}
@media (max-width: 767px) {
    #languages-block-top .current > span {
      display: none;
    }
    #languages-block-top ul {
      right: 0;
      left: auto;
      width: 120px;
    }

}
@media (max-width: 479px) {
    #languages-block-top {
      margin-right: 10px; 
    } 
  #languages-block-top div.current {
      font-size: 11px;
      line-height: 30px;
      padding: 0 0px 0 5px;
      text-align: left;
    }
    #languages-block-top {
      float: right;
      margin: 0;
      position: relative;
    }
  #languages-block-top ul {
      top: 100%;
    }
  .hidden_mobile{
    display: none;
  }  
  #languages-block-top div.current::after {
      margin-left: 6px;
    }
  #languages-block-top div.current {
  margin-right: 5px;
}
}
/*# sourceMappingURL=blocklanguages.css.map */


.shop-phone {
  color: #ff8f8f;
  float: left;
  line-height: 18px;
  padding: 15px 0px 10px;
}
.shop-phone > span {
  font-size: 12px;
}

.shop-phone i {
    font-size: 21px;
    line-height: 21px;
    color: #fff;
    padding-right: 7px; 
}

#contact-link {
  float: left;
}
#contact-link a.contact::before {
  display: none;
}
#contact-link a.contact {
  padding-left: 0;
}

#contact-link a {
  cursor: pointer;
  display: inline-block;
  line-height: 28px;
  padding: 8px 13px;
  position: relative;
  text-transform: uppercase;
}
#contact-link a::before {
  border-radius: 1px;
  content: "";
  display: inline-block;
  height: 6px;
  margin-right: 4px;
  top: -5px;
  vertical-align: 2px;
  width: 6px;
  background-color: #999;
}



#contact_block .label {
  display: none; }
#contact_block .block_content {
  color: #888888; }
#contact_block p {
  margin-bottom: 4px; }
#contact_block p.tel {
  font: 400 17px/21px Arial, Helvetica, sans-serif;
  color: #333;
  margin-bottom: 6px; }
  #contact_block p.tel i {
    font-size: 25px;
    vertical-align: -2px;
    padding-right: 10px; }

@media (max-width: 991px){
    #contact-link a {
      padding: 8px 8px;
    }
    .shop-phone.is_logged {
      display: none; 
    } 
}
@media (max-width: 767px) {
    #contact-link.is_logged {
      display: none; 
    } 
    .shop-phone {
      padding: 12px 0 10px;
    }
}
@media (max-width: 479px) {
    #contact-link {
      text-align: center; 
    } 
    .shop-phone {
      font-size: 0;
      padding: 10px 0 0;
    }
   .shop-phone span {
      font-size: 10px;
    }     
  #contact-link a {
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px; 
  } 
  #contact-link a::before {
      display: none;
    }
    #contact-link a {
      clear: left;
      float: left;
      line-height: 30px;
      padding: 0 10px;
      text-align: left;
      width: 100%;
    }
  
    #contact-link a.wishlist::before {
      content: "\f08a";
      float: left;
      font-family: FontAwesome;
      height: 100%;
      text-align: center;
      width: 100%;
    }
    #contact-link {
      clear: left;
      float: left;
    }
    #contact-link a.contact {
      padding-left: 10px;
    }
}


/*# sourceMappingURL=blockcontact.css.map */




/*# sourceMappingURL=blockmyaccount.css.map */




/*# sourceMappingURL=blocknewproducts.css.map */


/* Block newsletter */
#columns #newsletter_block_left .form-group {
  margin-bottom: 0; }
  #columns #newsletter_block_left .form-group .form-control {
    max-width: 222px;
    display: inline-block;
    margin-right: 6px; }
    @media (min-width: 768px) and (max-width: 1199px) {
      #columns #newsletter_block_left .form-group .form-control {
        margin-bottom: 10px;
        margin-right: 0; } }
#columns #newsletter_block_left .success_inline, #columns #newsletter_block_left .warning_inline {
  text-align: left;
  padding: 1px 0 0 0;
  margin-bottom: -19px; }
#columns #newsletter_block_left .success_inline {
  color: #418B19; }
#columns #newsletter_block_left .warning_inline {
  color: #f13340; }

/* Block newsletter footer */

#newsletter_block_left > p {
  color: #9d9d9d;
  font-size: 14px;
  font-weight: normal;
}

  #footer #newsletter_block_left .block_content {
    overflow: hidden; }
#footer #newsletter_block_left .form-group {
  display: inline-block;
  max-width: 100%;
  position: relative;
  width: 320px;
}
#footer #newsletter_block_left .form-group .form-control {
  background: #fff none repeat scroll 0 0;
  border-color: #e8e8e8;
  color: #aaa;
  display: inline-block;
  float: left;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
}
#newsletter_block_left button {
  height: 32px;
  position: absolute;
  right: 4px;
  top: 4px;
}
  #footer #newsletter_block_left .form-group .form-control:focus {
    -moz-box-shadow: black 0px 0px 0px;
    -webkit-box-shadow: black 0px 0px 0px;
    box-shadow: black 0px 0px 0px; 
  }

#footer #newsletter_block_left .form-group .button-small:before {
    content: "\f003";
    font-family: "FontAwesome";
    font-size: 22px;
    font-weight: normal;
    line-height: 27px;
    text-shadow: none;
    margin-left: 2px;
}
#footer #newsletter_block_left .warning_inline {
    display: block;
    color: #f13340;
    font-size: 13px;
    line-height: 26px;
    clear: both; }
    @media (min-width: 1200px) {
      #footer #newsletter_block_left .warning_inline {
        display: inline-block;
        position: relative;
        top: -35px;
        margin-bottom: -35px;
        left: 15px;
        clear: none; } }
#footer #newsletter_block_left .newsletter-input {
  max-width: 100%;
  width: 520px;
}
.button.button-small span {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px){
    #footer #newsletter_block_left .form-group .form-control {
      font-size: 12px;
    }
}

/*# sourceMappingURL=blocknewsletter.css.map */




/*# sourceMappingURL=blockspecials.css.map */


.tags_block .block_content {
  overflow: hidden; }
  .tags_block .block_content a {
    display: inline-block;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    padding: 4px 9px 5px 9px;
    border: 1px solid #d6d4d4;
    float: left;
    margin: 0 3px 3px 0; }
    .tags_block .block_content a:hover {
      color: #333;
      background: #f6f6f6; }

/*# sourceMappingURL=blocktags.css.map */


.header_user_info {
  float: right;
}
.header_user_info a:first-child{
    border-top: none;
}
.header_user_info a {
  color: #888;
  cursor: pointer;
  display: block;
  line-height: 40px;
  padding: 0 20px;
  text-transform: none;
  border-top: 1px solid #f4f4f4;
}
/*.header_user_info a::before {
  background-color: #999;
  border-radius: 1px;
  content: "";
  display: inline-block;
  height: 6px;
  margin-right: 4px;
  top: -5px;
  vertical-align: 2px;
  width: 6px;
}*/
@media (max-width: 767px){
    .header_user_info a.account {
      margin-right: 10px;
    }
}
@media (max-width: 479px) {
  .header_user_info a {
      float: left;
      padding: 0 15px;
      white-space: nowrap;
    } 
    .header_user_info {
      margin-top: 4px;
    }
  .header_user_info a::before{
    display: none;
  }
}


/*# sourceMappingURL=blockuserinfo.css.map */


/* Block Viewed Products */
#viewed-products_block_left li.last_item {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none; }

/*# sourceMappingURL=blockviewed.css.map */




/*# sourceMappingURL=homefeatured.css.map */



#module-ybc_blog-blog #header {
  padding-bottom: 0;
}
a:hover 
{
    text-decoration: none;
    transition: all 0.3s ease-in 0s;
}
a, a:active ,a:focus 
{
    text-decoration: none;
    outline: none;
}
.ybc-blog-slider.loading #ybc_slider,.ybc-blog-slider.loading .nivo-controlNav{
    display: none;    
}
.ybc-blog-slider.loading .loading_img{
    display: block!important;
}
.ybc-blog-slider .loading_img{
    display: none;
}
.ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list .post-wrapper img{
    width: 100%;
}
.ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list .post-wrapper img {
  width: 100%;
}

.ybc-blog-posts-home-list-item-content {
  float: left;
  position: relative;
  width: 100%;
}
.smallwidth .ybc-blog-home-content-show .read_more {
  border: 1px solid #fff;
  color: #fff;
  float: left;
  margin-top: 15px;
  padding: 10px 15px;
  text-align: center;
  text-transform: uppercase;
}
.smallwidth .ybc-blog-home-content-show .read_more:hover{  
  border: 1px solid #c79b50;
  color: #c79b50;
}
.homeblog .smallwidth .ybc_title_block {
  color: #fff;
  float: left;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 5px 0;
  text-transform: uppercase;
  width: 100%;
}
.smallwidth .ybc-blog-home-content-show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.smallwidth .ybc-blog-home-content-show p {
  color: #fff;
}
.ybc-blog-slider .nivo-caption::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.ybc-blog-slider .nivo-caption *{
    position: relative;
}
/*
.ybc_blog_layout_large_grid .ybc-blog-list li:first-child .post-wrapper {
  min-height: unset!important;
}
*/
.blog-product-list.product_list li {
  padding-bottom: 30px;
}
.ybc-blog-wrapper-detail
{
  float: left;
  width: 100%;
}
.ybc-blog-wrapper .page-heading.product-listing {
  float: left;
  font-size: 22px;
  font-weight: normal;
  margin: 20px 0 10px;
  padding-bottom: 0;
  width: 100%;
}
.blog-category-desc > p {
  float: left;
  font-size: 14px;
  line-height: 26px;
  padding: 0px 50px;
  width: 100%;
}

.ybc-blog-wrapper .post-details 
{
    width: 100%;
    float: left;
}
.ybc-blog-wrapper.ybc-blog-wrapper-blog-list {
  float: left;
  margin-bottom: 30px;
  width: 100%;
}

#left_column .ybc-blog-posts-popular .block_content {
  margin: 0;
  min-width: 100%;
  width: 100%;
}
.ybc-blog-posts {
  float: left;
  width: 100%;
}
.ybc-blog-wrapper-gallery.ybc-blog-wrapper h1.page-heading {
  border: medium none;
  color: #585858;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  text-transform: none;
  width: 100%;
}
.ybc-blog-wrapper-gallery .ybc-gallery
{
    margin-top:5px;
}
.footer-container #footer .footer-block.ybc-blog-posts.ybc_latest_posts_block {
  float: left;
  width: 20%;
  padding: 0 15px;
}
#ybc_latest_posts_list {
  float: left;
  max-width: 100%;
}
.owl-carousel .owl-wrapper-outer {
  float: left;
}
.ybc_latest_posts_block #ybc_latest_posts_list li a img {
  float: left;
  margin-right: 10px;
  max-width: 100%;
  width: 70px;
}
.ybc-blog-wrapper-content {
  float: left;
  padding: 15px 0 30px;
  width: 100%;
}
.ybc-blog-wrapper-content-main {
  width: 100%;
  float: left;
  position: relative;
}

.blog-extra-item.blog-extra-facebook-share {
  clear: left;
  margin-right: 0;
  width: 100%;
}
.blog-extra-item.be-tag-block {
  clear: left;
  margin-right: 0;
  width: 100%;
}
.blog-extra-item.be-categories-block {
  color: #494949;
  float: left;
  margin: 0;
  padding: 0 30px 0 0px;
}

.fb_iframe_widget {
  margin-right: 20px;
}
.fb_iframe_widget span {
  float: left;
}
.ybc-blog-galleryr-content li {
  margin-bottom: 15px;
  padding: 0 10px;
  width: 100px;
}
.ybc-blog-list .ybc-blog-post-footer .blog-extra {
  float: right;
  font-size: 11px;
  font-weight: 600;
  padding-top: 9px;
}
.blog-product-list .product-container .left-block {
  float: left;
  text-align: center;
  width: 100%;
}

.bc-capcha-wrapper {
  float: left;
}
.ybc-blog-list .post-wrapper {
  float: left;
  min-height: 0 !important;
  width: 100%;
}
.ybc-blog-like-span::before {
  content: "\f087";
    float: left;
    font-family: FontAwesome;
    font-size: 13px;
    line-height: 16px;
    margin-right: 5px;
}
.blog-post-like-btn:before{
    color: #3a5795;
}

.ybc_blog_button_share {
  float: left;
}
.blog-post-like-btn {
  cursor: pointer;
}

#ybc_popular_posts li > p {
  float: left;
    margin-top: 6px;
    width: 100%;
}

.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a.bx-prev:before{
    content: "\f137";
    font-family: "FontAwesome";
}
.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a.bx-next:before{
    content: "\f138";
    font-family: "FontAwesome";
}
.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a.bx-prev, 
.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a.bx-next {
  margin-left: 10px;
  margin-right: 10px;
  top: 65px;
}
.ybc-blog-posts-popular .bx-prev{
    left: 0;
}
.ybc-blog-posts-popular .bx-wrapper .bx-controls .bx-prev:hover:after,
.ybc-blog-posts-popular .bx-wrapper .bx-controls .bx-next:hover:after,
.ybc-blog-posts-popular .bx-controls .bx-prev.disabled:hover:before, 
.ybc-blog-posts-popular .bx-controls .bx-next.disabled:hover:before{
    border: none;
}
.ybc-blog-posts-popular .bx-controls-direction {
  float: none;
  width: 100%;
}
.ybc-blog-post-footer .read_more {
  border: 1px solid #dbdbdb;
  color: #888;
  float: left;
  font-family: Montserrat;
  line-height: 13px;
  padding: 9px 22px;
  position: relative;
  text-transform: uppercase;
}
.ybc-blog-post-footer .read_more::after {
  content: "\f101";
  font-family: FontAwesome;
  font-size: 13px;
  padding-left: 11px;
}

/*color: #ff4c65;*/
.ybc_title_block {
  float: left;
  padding: 5px 0;
  text-transform: uppercase;
  width: 100%;
  line-height: 30px;
}
.ybc_alert-danger, .ybc_alert-success {
  float: left;
  margin: 20px 0 0;
  width: 100%;
}
.ybc-blog-posts-popular-list > li {
    width: 100%;
    float: left;
}
.blog-comment-row {
  clear: left;
  float: left;  
}

#ybc-blog-capcha-refesh::before {
  color: #949494;
  content: "\f021";
  font-family: FontAwesome;
  font-size: 17px;
  height: 32px;
  line-height: 32px;
  margin-left: 10px;
}
.blog-comment-row > label {
  float: left;
  margin-bottom: 8px;
  margin-right: 10px;
  font-size: 14px;
  color: #555454;
}
#bc-subject {
  clear: left;
  height: 36px;
  margin-bottom: 20px;
  width: 100%;
  color:#494949;
}
#bc-comment {
  clear: left;
  max-width: 100%;
  min-height: 150px;
  color:#494949;
}

#bc-capcha {
  float: left;
  width: 100px;
  height: 32px;
}
#ybc-blog-capcha-refesh {
  cursor: pointer;
}
.bp-price-old-label, .bp-price-label, .bp-percent-label, .bp-save {
  display: none;
}
.blog-product-list .right-block {
  float: left;
  margin-bottom: 20px;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
.blog-product-list .right-block > h5 {
  color: #454545;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ybc-blog-categories .active > a {
  color: #333;
  font-weight: bold;
}
/*skin organe*/
.ybc_blog_skin_orange .blog-product-list .right-block > h5 a:hover
{
    color:#ffac00;
}
/*end of skin organe*/
/*skin violet*/
.ybc_blog_skin_violet .blog-product-list .right-block > h5 a:hover
{
    color: #9b539c;
}
/*end of skin violet*/
/*skin green*/
.ybc_blog_skin_green .blog-product-list .right-block > h5 a:hover
{
    color: #82af7c;
}
/*end of skin green*/
/*skin black*/
.ybc_blog_skin_black .blog-product-list .right-block > h5 a:hover
{
    color: #000;
}
/*end of skin black*/
/*skin grey*/
.ybc_blog_skin_grey .blog-product-list .right-block > h5 a:hover
{
    color:#c3d7df;
}
/*end of skin grey*/
#ybc-blog-related-products .blog-product-list .content_price {
  display: inline;
  text-align: center;
}
#ybc-blog-related-products .blog-product-list .content_price .bp-price-label{
  display:none;
}
#ybc-blog-related-products .blog-product-list .content_price .old-price .bp-price-old-label{
  display:none;
}
#ybc-blog-related-products .blog-product-list .content_price .price-percent-reduction .bp-percent-label{
  display:none;
}
#ybc-blog-related-products .blog-product-list .content_price .bp-save{
  display:none;
}

#ybc-blog-related-products .blog-product-list .content_price span{    
   display: inline-block; 
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: none!important;
  background: #fff;
 
}
#ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    padding: 0 10px;
}
/*skin violet*/
.ybc_blog_skin_violet #ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    color:#9b539c;
}
/*end of skin violet*/
/*skin organe*/
.ybc_blog_skin_orange #ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    color:#ffac00;
}
/*end of skin organe*/

/*skin green*/
.ybc_blog_skin_green #ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    color:#82af7c;
}
/*end of skin green*/
/*skin black*/
.ybc_blog_skin_black #ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    color:#000;
}
/*end of skin black*/
/*skin grey*/
.ybc_blog_skin_grey #ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-display
{
    color:#c3d7df;
}
/*end of skin grey*/
#ybc-blog-related-products .blog-product-list .right-block .content_price .bp-price-old-display {
  color: #a7a7a7;
  padding-left: 10px;
}
#ybc-blog-related-products .post-details .blog-product-list .right-block .bp-percent-display {
  background: #f13340 none repeat scroll 0 0;
  color: #fff;
  height: 20px;
  line-height: 20px;
  padding-left: 0;
  text-align: center; 
}

.ybc-blog-wrapper .title_block {
  float: left;
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
}

.ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:first-child .post-wrapper > a {
  max-width: 100%;
  float: left;
}
.ybc_blog_layout_large_grid .ybc-blog-list .post-wrapper > a {
  width: 100%;
  float: left;
}
/*.ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list > li:first-child {
  float: left;
  margin: 0;
  padding: 0 15px 30px;
  width: 100%;
}*/
.ybc_blog_layout_large_grid .ybc-blog-list li{
  float: left;
  margin-bottom: 0;
  padding:0 15px 30px;
  width: 33%;
}
.ybc_blog_layout_large_grid.ybc-page-author .ybc-blog-list li:nth-child(2n+1) {
  clear: left;
}
.ybc-blog-wrapper .blog-content p {
  line-height: 26px;
  margin: 0;
  text-align: justify;
  height: 78px;
  overflow: hidden;
}
.blog-paggination {
  float: left;
  font-size: 13px;
  width: 100%;
  text-align: center;
}
.blog-paggination .results
{
    display: none;
}


body input.button {
  font-size: 11px;
  color: white;
  padding: 3px 10px;
}
.blog-comments-list {
  float: left;
  font-size: 13px;
  margin-top: 15px;
  width: 100%;
}
.blog-comments-list .blog-comment-line {  
  float: left;
  width: 100%;
}
.comment-by {
  float: left;
  margin-bottom: 5px;
  margin-right: 15px;
}
.comment-by > b {
  color: #454545;
}
.comment-time {
  float: left;
  margin-right: 15px;
}
.comment-content {
  color: #494949;
  float: left;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 5px 0 0;
}

.ybc-block-comment-report {
  cursor: pointer;
  text-decoration: underline;
}
.comment-subject {
  float: left;
  font-family: Poppins;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
  width: 100%;
}
.comment-rating {
  display: flex;
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
}
.comment-rating > span {
  float: left;
  margin-right: 5px;
}

.ybc-blog-replied-by-name{
    font-weight: bold;
}
.ybc-blog-replied-by:before {
  color: #AAAAAA;
  content: "\f14d";
  font-family: FontAwesome;
  font-size: 12px;
  margin-right: 2px;
}
.ybc-block-comment-report.comment-report-2 {
  margin-bottom: 5px;
}
.ybc-block-comment-report.comment-report-2:hover {
  cursor: pointer;
  text-decoration: underline;
}
.comment-reply {
  float: left;
  width: 100%;
}
.ybc-blog-reply-content {
  clear: left;
  float: left;
  font-style: italic;
  margin-left: 10px;
}
.ybc-blog-replied-by {
  float: left;
  margin-left: 10px;
}
.blog-paggination .links a {
  border: 1px solid #E4E4E4;
  display: inline-block;
  float: left;
  font-size: 14px;
  height: 26px;
  line-height: 24px;
  margin: 0 5px;
  overflow: hidden;
  padding: 0;
  width: 26px;
}
.blog-paggination .links .next::before  {
  content:"\f105";
  font-family: FontAwesome;
  font-size: 15px;
  padding:1px;
}
.blog-paggination .links .prev::before {
  content:"\f104";
  font-family: FontAwesome;
  font-size: 15px;
  padding:1px;
}

.blog-paggination .links .last::before {
  content:"\f051";
  font-family: FontAwesome;
  font-size: 13px;
  padding:1px;
}
.blog-paggination .links .frist::before {
  content:"\f048";
  font-family: FontAwesome;
  font-size: 13px;
  padding:1px;
}
.blog-paggination .links .last > span {
  display: none;
}
.blog-paggination .links .next > span {
  display: none;
}
.blog-paggination .links .prev > span {
  display: none;
}
.blog-paggination .links .frist > span {
  display: none;
}
.blog-paggination .links > b {
  background: none repeat scroll 0 0 #FF4C65;
  border: 1px solid #FF4C65;
  color: #FFFFFF;
  display: inline-block;
  float: left;
  font-size: 14px;
  height: 26px;
  line-height: 26px;
  margin: 0 3px 0 0;
  padding: 0;
  width: 26px;
}
/*skin violet*/
.ybc_blog_skin_violet .blog-paggination .links > b
{
   border: 1px solid #9b539c;
   background:#9b539c;
}
/*end of skin violet*/
/*skin orange*/
.ybc_blog_skin_orange .blog-paggination .links > b
{
   border: 1px solid #ffac00;
   background:#ffac00;
}
/*end of skin organe*/
/*skin green*/
.ybc_blog_skin_green .blog-paggination .links > b
{
   border: 1px solid #82af7c;
   background:#82af7c;
}
/*end of skin black*/
.ybc_blog_skin_black .blog-paggination .links > b
{
   border: 1px solid #000;
   background:#000;
}
/*end of skin black*/
/*skin grey*/
.ybc_blog_skin_grey .blog-paggination .links > b
{
   border: 1px solid #c3d7df;
   background:#c3d7df;
}
/*end of skin grey*/
.blog-extra-item.be-rating-block > span {
  float: left;
  margin-right: 5px;
}
.blog-extra-item.be-rating-block .ybc_blog_review {
  float: left;
  margin: 0 7px 0 0;
}
.blog-category {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin-bottom: 30px;
  width: 100%;
}
.blog-category > img {
  width: 100%;
  float: left;
}
.ybc-blog-posts-popular .bx-controls-direction {
  display: none;
}
.ybc-blog-posts-popular .block_content:hover .bx-controls-direction {
  display: block;
}
.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a {
  float: left;
  height: 25px;
  margin-left: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  width: 25px;
}
.ybc-blog-posts-popular .bx-wrapper .bx-controls-direction a:before {
  font-size: 25px;
}
#ybc_latest_posts_list .ybc-blog-latest-toolbar .ybc-blog-like-span {
  margin-bottom: 0;
}
.ybc-blog-search .block_content .button {
  color: #ffffff;
  font-size: 12px;
  line-height: 100%;
  margin-top: 5px;
  padding: 10px 10px 7px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  width: 100%;
}
/*blog gallery on home page*/
.ybc-page-home #ybc_gallery_home {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 0;
}
.ybc-page-home #ybc_gallery_home h4 {
  float: left;
  font-size: 19px;
  padding-bottom: 9px;
  position: relative;
  text-transform: uppercase;
}
.ybc_gallery_home_content > a
{
    display: block;
}
 .ybc-blog-galleryr-content > a
 {
    display: none;
 }
.ybc-blog-related-products-wrapper .owl-buttons {
  position: absolute;
  top: 16px;
} 

.sidebar-post-type-casual .owl-buttons
{
    position: absolute;
    top: 20px;
    right: 0;
}

.ybc-page-home .ybc-blog-list {
  margin-bottom: 0;
}
.ybc-page-home #ybc_gallery_home #ybc_gallery_home_content {
  float: left;
  width: 100%;
  position: unset;
}
.blog-paggination .links {
  display: inline-block;
  float: none;
  font-family: arial;
  height: 26px;
  margin: 0 auto;
  text-align: center;
}
.owl-item {
  float: left;
  padding: 0 0px;
}
.ybc_blog_related_posts_type_casual .ybc-blog-related-posts-list .owl-item {
  float: left;
  padding: 0 10px;
} 
.ybc-blog-galleryr #ybc_gallery_home_content .owl-item img {
  width: 100%;
  float: left;
}

.ybc-gallery li {
  margin-bottom: 6px;
  padding: 0 6px 0 0;
}
.ybc-gallery li img {
  float: left;
  width: 100%;
}
.ybc-gallery {
  float: left;
  margin-left: 3px;
  margin-top: 13px;
  padding: 12px;
  width: 100%;
}
.ybc-page-home #ybc_gallery_home .ybc-blog-galleryr-content li {
  border: 1px solid #efefef;
  padding: 0;
  width: 100%;
  background: #fff;
}
.ybc-blog-posts .title_block:after {
  display: none;
}
.ybc-gallery li a:after {
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  content: "";
  height: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: width 0.5s ease 0s, height 0.5s ease 0s, opacity 0.5s ease 0s;
  width: 0;
}
.ybc-gallery li a:before {
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: width 0.5s ease 0s, height 0.5s ease 0s, opacity 0.5s ease 0s;
  width: 0;
}
.ybc-gallery li a:hover:before, .ybc-gallery li a:hover:after {
  height: 100%;
  opacity: 1;
  width: 100%;
}
.ybc-blog-posts-popular .bx-viewport {
  height: auto !important;
}
.ybc-blog-posts-popular .bx-controls.bx-has-controls-direction {
  position: absolute;
  top: 0;
  width: 100%;
}
.ybc-blog-like-span {
  float: left;
}
#left_column .ybc-blog-latest-toolbar-views, 
#left_column .ybc-blog-like-span{
  display: none;
}
.ybc-blog-slider .loading_img {
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
  background-color: #e5e5e5;
}
.loading_img > img {
  float: left;
  margin-left: 50%;
  margin-top: 130px;
}
.bybc-blog-slider .nivoSlider {
 
  position: relative;
  float: left;
}
.ybc-blog-slider {
  border: 10px solid #ededed;
  float: left;

  position: relative;
  width: 100%;
}
.ybc-blog-posts .owl-item {
  padding: 0 10px;
}
.ybc-blog-posts.ybc_latest_posts_block .owl-item {
  padding: 0;
}
#ybc_latest_posts_list li {
  float: left;
  margin-bottom: 5px;
  width: 100%;
}
.ybc-blog-wrapper .blog-category-desc {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

#ybc_latest_posts_list a {
  float: left;
  max-width: 60%;
}
#ybc_latest_posts_list a.ybc_item_img {
  max-width: 40%;
}
#ybc_latest_posts_list .post-date {
  color: #F0F0F0;
  float: left;
  font-size: 10px;
  width: 50%;
}
#module-ybc_blog-blog .alert.alert-warning {
  float: left;
  width: 100%;
}
.ybc_home_bottom .block_content {
  float: none;
  margin: 0 -10px;
  position: relative;
  width: auto;
}

.ybc-blog-posts-popular-list .owl-theme .owl-controls {
  margin-top: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 69px;
  width: 100%;
}
.ybc-blog-posts-popular-list .owl-prev {
  float: left;
  margin-left: 0;
  border: none;
}
.ybc-blog-posts-popular-list .owl-next {
  float: right;
  margin-right: 0;
  border: none;
}
 .owl-buttons div {
  background-color: transparent;
}
.block.ybc-blog-posts-popular li a img{
    width: 100%;
}
.block.ybc-blog-posts-popular .owl-item > li > a {
  float: left;
  margin:0;
  width: 100%;
}
.ybc_popular_posts{
    float: left;
}
.clear{
    clear: both;
}

/*thinh style*/
.ybc-page-home .page-heading .title_cat
{
    display: none;
}
.ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:first-child .ybc-blog-wrapper-content h2 > a
{
    /*font-size: 25px;*/
}
.ybc-blog-list .post-wrapper h2 a {
  color: #454545;
  float: left;
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
.ybc-blog-list .post-wrapper h2 {
  float: left;
  line-height: 112%;
  margin: 0;
  width: 100%;
  height: 52px;
}
.blog-content {
  float: left;
  line-height: 26px;
  padding: 5px 0 20px;
  width: 100%;
}
.be-categories {
  float: left;
}
.ybc-blog-post-meta {
  color: #494949;
  float: left;
  margin-top: 8px;
}
.ybc-blog-post-footer {
  float: left;  
  width: 100%;
  color: #adadad;
}
.be-categories > a {
  color: #454545;
  font-weight: bold;
  text-transform: none;
}
.ybc_blog_skin_grey .be-categories > a {
  color:#c3d7df;
}

.ybc_blog_skin_black .be-categories > a {
  color:#000;
}
.ybc_blog_skin_green .be-categories > a {
  color:#82af7c;
}
.ybc_blog_skin_orange .be-categories > a {
  color:#ffac00;
}
.ybc_blog_skin_violet .be-categories > a {
  color:#9b539c;
}


.be-categories > a:hover{
    color:#a0a0a0;
}
.blog-posted-date {
  color: #555;
}
.be-view-block, .be-rating-block {
  float: left;
  margin-right: 15px;
}
.blog_rating_wrapper {
  float: left;
}

.star::after {
  content: "?";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  padding-bottom: 0;
  padding-left: 0;
  padding-top: 0;
}
.ybc_blog_review .star.star_on::after {
  content: "\f005";
  display: inline-block;
  font-family: "FontAwesome";
}
.blog__rating_reviews {
  float: right;
}
.blog__rating_reviews::before {
  content: "\f0e5";
    font-family: "FontAwesome";
    font-size: 13px;
    line-height: 16px;
    padding-left: 10px;
    padding-right: 3px;
}
/*.ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:nth-child(2n) {
  clear: left;
}*/
/*large box and list*/
.ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list > li:first-child {
  margin: 0;
  padding: 0 15px 40px;
  width: 100%;
}
.ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list > li:first-child h2 > a {
  font-size: 25px;
  margin-top: 15px;
}
.ybc_blog_layout_large_list .ybc-blog-list li {
  float: left;
  margin: 0 15px;
  padding: 0 0 40px;
}

.ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list li:first-child .post-wrapper > a {
  width: 100%;
  float: left;
}
.ybc_blog_layout_large_list .ybc-blog-list .post-wrapper > a {
  float: left;
  width: 30%;
}
.ybc_blog_layout_large_list .ybc-blog-wrapper-content {
  float: left;
  padding: 0 0 0 30px;
  width: 70%;
}
.ybc_blog_layout_large_list.ybc-blog-wrapper-detail .ybc-blog-wrapper-content
{
    width: 100%;
    float: left;
}

.ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list li:first-child .ybc-blog-wrapper-content {
  float: left;
  padding-left: 0;
  width: 100%;
}
.post-wrapper img {
  width: 100%;
  float: left;
}
/*grid all post*/
.ybc_blog_layout_grid .ybc-blog-list li {
  float: left;
  padding: 0 15px 40px 15px;
  width: 50%;
}
.ybc_blog_layout_grid .ybc-blog-list li:nth-child(2n+1) {
  clear: left;
}
.ybc-page-category .ybc-blog-list li:nth-child(2n+1) {
  clear: left;
}

.ybc_blog_layout_grid .ybc-blog-list .post-wrapper img {
  width: 100%;
}
.ybc_blog_layout_grid .ybc-blog-list .ybc-blog-wrapper-content
{
    width: 100%;
    float: left;
}
/*List post*/
.ybc_blog_layout_list .ybc-blog-list li
{
    width: 100%;
    float: left;
    padding: 40px 0 0 0;
}
.ybc_blog_layout_list .ybc-blog-list li:first-child
{
    padding-top:0;
}
.ybc_blog_layout_list .ybc-blog-list {
  padding: 0 15px;
}

.ybc_blog_layout_list .ybc-blog-list .post-wrapper .ybc-blog-wrapper-content {
  float: left;
  padding-top: 0;
  padding-left: 30px;
  width: 65%;
}

.ybc_blog_layout_list .ybc-blog-list .post-wrapper img {
  width: 100%;
  float: left;
}
.ybc_blog_layout_list .ybc-blog-list .post-wrapper > a {
  float: left;
  width: 35%;
}
/* Page detail post*/

.ybc-blog-wrapper-detail .prettyPhoto > img {
  float: left;
  max-width: 100%;
  width: 100%;
}

.ybc-blog-wrapper-content-detail .blog-extra-item.be-categories-block {
  float: left;
}
.ybc-blog-wrapper-content .page-heading .title_cat {
  line-height: 36px;
  text-transform: uppercase;
}
.blog-post-author {
  float: left;
  padding-left: 10px;
}
.be-date-block {
  float: left;
  line-height: 19px;
}
.post-author-label {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}
.post-details .ybc_blog_review span:first-child {
  float: left;
  margin-right: 5px;
}
.post-author-name {
  color: #454545;
  font-weight: bold;
}
.ybc-blog-view-like-rate {
  float: right;
}
.be-like-block {
  float: right;
}
.be-tag-block .be-label {
  font-weight: bold;
  text-transform: uppercase;
}
.ybc-blog-wrapper-detail .ybc-blog-tags {
  float: left;
  width:unset;  
}
.be-tag-block .be-tags
{
    float:left;
}
/*tags in detail page*/
.be-tag-block .be-tags a {
  text-transform: uppercase;
}
/*skin violet*/
.ybc_blog_skin_violet .be-tag-block .be-tags a
{
    color:#9b539c;    
}
.ybc_blog_skin_violet .be-tag-block .be-tags
{
    color: #9b539c;
}
/*end of skin violet */
/*skin organe*/
.ybc_blog_skin_orange .be-tag-block .be-tags a
{
    color:#ffac00;    
}
.ybc_blog_skin_orange .be-tag-block .be-tags
{
    color:#ffac00;
}
/*end of skin organe */
/*skin green*/
.ybc_blog_skin_green .be-tag-block .be-tags a
{
    color:#82af7c;    
}
.ybc_blog_skin_green .be-tag-block .be-tags
{
    color:#82af7c;
}
/*end of skin green */
/*skin black*/
.ybc_blog_skin_black .be-tag-block .be-tags a
{
    color:#000;    
}
.ybc_blog_skin_black .be-tag-block .be-tags
{
    color:#000;
}
/*end of skin black */
/*skin grey*/
.ybc_blog_skin_grey .be-tag-block .be-tags a
{
    color:#c3d7df;    
}
.ybc_blog_skin_grey .be-tag-block .be-tags
{
    color:#c3d7df;
}
/*end of skin grey */
.be-tag-block .be-tags a:hover
{
    color:#a0a0a0;
}
.ybc-blog-wrapper-comment {
  margin-top: 30px;
  width: 100%;
  float: left;
}
.ybc_comment_form_blog {
  background-color: #fdfdfd;
  border: 1px solid #e8e8e8;
  float: left;
  width: 100%;
}
.ybc_blog-comments-list {
  float: left;
  margin-top: 30px;
  width: 100%;
}
.ybc-blog-tags-social {
  float: left;
  padding-top: 16px;
  width: 100%;
}
.ybc-blog-wrapper-comment h4{
    margin: 0;
}
.ybc-blog-wrapper-comment .title_cat {
  border-bottom: 1px solid #e8e8e8;
  float: left;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  text-transform: uppercase;
  width: 100%;
}
.ybc-blog-wrapper-comment .ybc_blog-comments-list .title_cat {
  background: none;
  padding: 20px 20px 15px 0;
}
.ybc-blog-wrapper-comment .ybc-blog-form-comment
{
    width:100%;
    float: left;
    padding: 20px;
}
.ybc-blog-form-comment .blog-comment-row .form-control
{
    border: 1px solid #e8e8e8;
}
.ybc-blog-form-comment .rate-post
{
    float: left;
    padding-top: 20px;
}
.ybc-blog-form-comment .blog-title,.ybc-blog-form-comment .blog-content-comment
{
    width: 100%;
}
.ybc-blog-form-comment .blog-rate-post
{
    padding-top: 20px;
}
.ybc-blog-form-comment .blog-rate-post label, .ybc-blog-form-comment .blog-capcha label
{
    font-size: 13px;
    margin-bottom: 8px;
    margin-right: 10px;
    font-weight: normal;    
}
.ybc-blog-form-comment .blog-capcha label
{
    margin-top: 5px;
}

.ybc-blog-form-comment .blog_rating_box,.ybc-blog-form-comment .blog-capcha {
  float: left;
}
.blog_rating_box .star.star_on::after {
  content: "\f005";
  display: inline-block;
  font-family: "FontAwesome";
}
.ybc-blog-form-comment .blog-capcha
{
    padding-top: 5px;
}
.bc-capcha-wrapper > img {
  float: left;
  margin-right: 10px;
}
.ybc-blog-form-comment .blog-submit {
  clear: none;
  float: right;
}
.ybc-blog-form-comment .blog-submit .button
{
  float: right;
  border: 0 none;
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 10px 24px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.11);
  text-transform: uppercase;
}
/*skin violet*/
.ybc_blog_skin_violet .ybc-blog-form-comment .blog-submit .button
{
  background:#9b539c;
}
.ybc_blog_skin_violet .ybc-blog-form-comment .blog-submit .button:hover
{
  background:#7C427D;
}
/*end skin violet*/
/*skin organe*/
.ybc_blog_skin_orange .ybc-blog-form-comment .blog-submit .button
{
  background:#ffac00;
}
.ybc_blog_skin_orange .ybc-blog-form-comment .blog-submit .button:hover
{
  background:#E69B00;
}
/*end skin organe*/

/*skin green*/
.ybc_blog_skin_green .ybc-blog-form-comment .blog-submit .button
{
  background:#82af7c;
}
.ybc_blog_skin_green .ybc-blog-form-comment .blog-submit .button:hover
{
  background:#759E70;
}
/*end skin green*/
/*skin black*/
.ybc_blog_skin_black .ybc-blog-form-comment .blog-submit .button
{
  background:#000;
}
.ybc_blog_skin_black .ybc-blog-form-comment .blog-submit .button:hover
{
  background:#000;
}
/*end skin black*/
/*skin grey*/
.ybc_blog_skin_grey .ybc-blog-form-comment .blog-submit .button
{
  background:#c3d7df;
}
.ybc_blog_skin_grey .ybc-blog-form-comment .blog-submit .button:hover
{
  background:#A3B3BA;
}
/*end skin grey*/
.ybc-blog-wrapper-comment h4::before {
  display: none;
}
.ybc-blog-form-comment .blog-submit .button:hover
{
    transition: all 0.3s ease-in 0s;
}
.ybc-blog-wrapper-content .blog-comments-list {
  background: #fff none repeat scroll 0 0;
  float: right;
  margin: 0;
  width: 100%;
}
.ybc-blog-wrapper-content .blog-comments-list li:last-child  .ybc-blog-detail-comment 
{
    border-bottom: none;
}
.blog-comments-list .ybc-blog-detail-comment
{
    width: 100%;
    float: left;
    padding: 20px 0px 20px 0;
    border-bottom: 1px solid #efefef;
}
.blog-comments-list .ybc-blog-detail-comment:last-child {
  border-bottom: none;
}
.blog-extra .ybc_blog_review
{
    display: none;
}
.ybc-blog-wrapper-detail .blog-extra .ybc_blog_review, .ybc-page-home .ybc-blog-list li:first-child .ybc_blog_review
{
    display: block!important;
}
.ybc-blog-rating-value {
  padding-left: 5px;
}

.nivo-controlNav
{
    display: block!important;
}

/*post detail */
.post-details .ybc-blog-detail-comment .comment-reply {
  border-left: 5px solid #eeeeee;
  float: left;
  margin-top: 14px;
  padding-left: 5px;
  width: 100%;
}

.post-details #ybc-blog-related-products .title_block
{
    width: 100%;
    float: left;
}
.post-details #ybc-blog-related-products {
  float: left;
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.post-details #ybc-blog-related-products .title_block {
  float: left;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 25px;
  padding: 10px 20px 10px 0;
  text-transform: uppercase;
  width: 100%;
}
.title_block .title_cat {
  float: left;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}
#ybc-blog-related-products .title_block::before,
.ybc-blog-related-posts .title_block::before {
  background: #e8e8e8 none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}
.post-details #ybc-blog-related-products .ybc-blog-related-products-wrapper .blog-product-list 
{
    width: 100%;
    float: left;
    margin: 0;
}
.post-details #ybc-blog-related-products .ybc-blog-related-products-wrapper .blog-product-list  .owl-item
{
    width: 100%;
    float: left;
}
.post-details #ybc-blog-related-products .ybc-blog-related-products-wrapper .blog-product-list  .owl-item .ajax_block_product 
{
    width: 100%;
    float: left;
    background: #fff;
    padding: 0;
}

.ybc-blog-related-products-list .ybc_related_products_type_default .ajax_block_product
{
    width:25%;
    float: left;
    background: #fff;
    padding: 0 5px 10px;
}
.ybc-blog-wrapper-content #ybc-blog-related-products .ajax_block_product .product-container {
  border: 1px solid #efefef;
  float: left;
  width: 100%;
  min-height: 250px;
}
.ajax_block_product .product-container img
{
   width:100%;
   float: left;
}


#ybc-blog-related-products .ybc-blog-related-products-wrapper .blog-product-list.ybc_related_products_type_casual
{
    width: 100%;
    float: left;
}
.ybc-blog-related-products-list .ybc_related_products_type_default
{
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}
#ybc-blog-related-products .ybc-blog-related-products-list .right-block h5 {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0;
  min-height: unset;
}
.post-details .blog-product-list .right-block {
  margin-bottom: 10px;
  margin-top: 0px;
}
#ybc-blog-related-products .blog-product-list .content_price span {
  font-family: Montserrat;
  font-size: 13px;
  margin: 0;
}
#ybc-blog-related-products .blog-product-list .content_price .price-percent-reduction {
  display: inline-block;
  padding: 0;
  text-align: center;
}
#ybc-blog-related-products .blog-product-list .content_price .price-percent-reduction .bp-percent-display {
  background: #f13340 none repeat scroll 0 0;
  color: #fff;
  float: left;
  height: 20px;
  line-height: 20px;
  margin-bottom: -5px;
  padding: 0 4px;
}
.ybc-blog-related-products-list .blog-product-list.ybc_related_products_type_casual img
{
    width: 100%;
    float: left;
}
#ybc-blog-related-products .ybc_related_products_type_default .content_price
{
    padding-bottom: 0;
}

/*Related posts casual and list */
.ybc-blog-wrapper-content .ybc-blog-related-posts
{
    width: 100%;
    float: left;
    position: relative;
}
.ybc-blog-related-posts > h4 {
  color: #454545;
  float: left;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 25px;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list
{
    width: 100%;
    float: left;
}
.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list
{
    width: 100%;
    float: left;
}

.ybc_blog_related_posts_type_casual .ybc-blog-related-posts-list.owl-carousel .ybc-blog-related-posts-list-li
{
    width:100%;
    float: left;
}
.ybc_blog_related_posts_type_default .ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list-li
{
    width: 33.3333%;
    float: left;
    padding: 0 10px 20px;
}
.ybc_blog_related_posts_type_default .ybc-blog-related-posts-wrapper .owl-item .ybc-blog-related-posts-list-li{
    width: 100%;
    padding: 0 0 20px;
}
.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list li > div {
  border: 1px solid #EFEFEF;
  float: left;
  width: 100%;
}
#module-ybc_blog-blog .ybc-blog-breadcrumb-a:after {
  content: "\f105";
  font-family: FontAwesome;
  color: #000;
  display: inline-block;
  margin-left: 10px;
  vertical-align: -1px;
  width: 15px;
}
.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list li:nth-child(3n+1) {
  clear: left;
}
.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list li h3 {
  float: left;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 20px 15px 5px;
  text-transform: uppercase;
  width: 100%;
}
.ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list li img
{
    width: 100%;
    float: left;
}
 
 .ybc_blog_related_posts_type_casual .ybc-blog-related-posts-wrapper .owl-buttons
 {
  top: 13px;
 }
.ybc-blog-related-posts-meta {
  float: left;
  margin-bottom: 15px;
  padding: 0 15px;
  width: 100%;
}
.ybc-blog-related-posts-meta .ybc-blog-related-posts-meta-categories span
{
    display:none;
}
.ybc-blog-related-posts-meta .ybc-blog-related-posts-meta-categories,
.ybc-blog-related-posts-meta .ybc-blog-related-posts-meta-post-date
{
    float: left;
}

.ybc-blog-related-posts-meta-categories > a {
  color: #ff4c65;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}
/*skin violet*/
.ybc_blog_skin_violet .ybc-blog-related-posts-meta-categories > a {
  color: #9b539c;
}
/*end of skin violet*/
/*skin organe*/
.ybc_blog_skin_orange .ybc-blog-related-posts-meta-categories > a {
  color:#ffac00;
}
/*end of skin organe*/
/*skin green*/
.ybc_blog_skin_green .ybc-blog-related-posts-meta-categories > a {
  color:#82af7c;
}
/*end of skin green*/
/*skin black*/
.ybc_blog_skin_black .ybc-blog-related-posts-meta-categories > a {
  color:#000;
}
/*end of skin black*/
/*skin grey*/
.ybc_blog_skin_grey .ybc-blog-related-posts-meta-categories > a {
  color:#c3d7df;
}
/*end of skin grey*/
.ybc-blog-related-posts-meta-categories > a:hover
{
    color: #a0a0a0;
}
.ybc-blog-related-posts-meta-categories
{
    padding-right: 5px;
}

.ybc-blog-related-posts-meta-post-date {
  color: #888;
  font-size: 12px;
}

/*popular post slidebar*/

.sidebar-post-type-casual .owl-item
{
    padding: 0;
}
#left_column .sidebar-post-type-casual .owl-wrapper
{
    position:unset;
}
#left_column .sidebar-post-type-casual .owl-wrapper-outer
{
    position:unset;
}
#left_column .sidebar-post-type-casual .owl-carousel
{
    position:unset;
}
#ybc_popular_posts
{
    display: block!important;
}
#best-sellers_block_right
{
    width: 100%;
}
.sidebar-post-type-casual #ybc-blog-posts-latest-list li,
.sidebar-post-type-casual #ybc_popular_posts li
{
    width: 100%;
    float: left;
}
.blog-category .blog-category-desc > p {
  padding: 0;
}
/*skin nivo-caption*/
.ybc_blog_skin_default .nivo-caption {
  background: rgba(205, 169, 108, 0.5) none repeat scroll 0 0;
  color: #fff;
}
 .ybc_blog_skin_default .nivo-caption > span{
    color: #fff;
}
/*organe*/
.ybc_blog_skin_orange .nivo-caption 
{
     background: rgba(255,172,0,0.6) none repeat scroll 0 0;
}
/*violet*/
.ybc_blog_skin_violet .nivo-caption 
{
     background: rgba(155,83,156,0.6) none repeat scroll 0 0;
}
/*green*/
.ybc_blog_skin_green .nivo-caption 
{
     background: rgba(130,175,124,0.6) none repeat scroll 0 0;
}
/*black*/
.ybc_blog_skin_black  .nivo-caption 
{
     background: rgba(0,0,0,0.6) none repeat scroll 0 0;
}
/*grey*/
.ybc_blog_skin_grey .nivo-caption 
{
     background: rgba(195,215,223,0.6) none repeat scroll 0 0;
}

/*end of skin nivo-caption*/
.ybc-blog-posts-popular
{
    width:100%;
    display:inline-block;
    position: relative;    
}
.ybc-blog-popular-content {
  float: left;
  padding: 22px 30px 15px;
  width: 100%;
}
.sidebar-post-type-casual .ybc-blog-popular-content {
  float: left;
  padding:10px 0;
  width: 100%;
}
.ybc-blog-popular-content a, .ybc-blog-latest-post-content a {
  color: #454545;
  float: left;
  font-family: Montserrat;
  font-size: 12px;
  line-height: 26px;
  margin: 0;
  width: 100%;
}
.ybc-blog-popular-content > p, .ybc-blog-latest-post-content > p{
  color: #494949;
  float: left;
  font-size: 13px;
  line-height: 24px;
  width: 100%;
}
.sidebar-post-type-casual .ybc-blog-popular-content .ybc-blog-latest-toolbar, 
.sidebar-post-type-casual .ybc-blog-latest-post-content .ybc-blog-latest-toolbar {
  color:#494949;
  float: left;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 0;
  width: 100%;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}
/*
.ybc-blog-popular-content .ybc-blog-latest-toolbar .ybc-blog-latest-toolbar-views span{
  display: none;
}
.ybc-blog-popular-content .ybc-blog-latest-toolbar .ybc-blog-like-span span:last-child {
  display: none;
}
.ybc-blog-popular-content .ybc-blog-latest-toolbar .ybc-blog-latest-toolbar-comments span{
  display: none;
}
*/
.ybc-blog-latest-toolbar-comments:before {
  content: "\f0e5";
  font-family: "FontAwesome";
  font-size: 14px;
  padding-left: 16px;
  padding-right: 5px;
  
}

.sidebar-post-type-casual .ybc-blog-latest-toolbar-comments:before {
  content: "\f0e5";
  font-family: "FontAwesome";
  font-size: 12px;
  padding-left:0px;
  padding-right: 5px;
  color:#616161;
}
.be-view-span::before, 
.ybc-blog-latest-toolbar-views::before {
  content: "\f06e";
  font-family: FontAwesome;
  font-size: 13px;
  margin-right: 5px;
  line-height: 16px;
  float: left;
}
.ybc-blog-latest-toolbar .item {
  margin-bottom: 5px;
  margin-right: 20px;
}
.ybc-blog-latest-toolbar .item:last-child{
    margin-right: 0px
}
#ybc-blog-posts-home-list .be-view-span::before, #ybc-blog-posts-home-list .ybc-blog-latest-toolbar-views::before {
  font-size: 12px;
  margin-left: 4px;
}
/*.sidebar-post-type-casual .be-view-span::before, */
.sidebar-post-type-casual .ybc-blog-latest-toolbar-views::before {
  content: "\f06e";
  font-family: FontAwesome;
  font-size: 12px;
  margin-left: 10px;
  margin-right: 7px;
  float: left;
  color:#616161;
}
.sidebar-post-type-casual .ybc-blog-like-span::before {
  content: "\f087";
  float: left;
  font-family: FontAwesome;
  margin-right: 7px;
  margin-left: 10px;
  font-size: 12px;
  color:#616161;
}
.sidebar-post-type-casual .ybc-blog-latest-toolbar-comments > span, 
.sidebar-post-type-casual .blog-post-like-text, 
.sidebar-post-type-casual .ybc-blog-latest-toolbar-views > span {
  font-size: 12px;
  font-weight: 500;
  margin-left: 5px;
}
.sidebar-post-type-casual .ybc-blog-latest-toolbar-views {
  margin-right: 10px;
}
/*lastest post slide bar*/
#ybc-blog-posts-latest-list .ybc-blog-latest-post-content
{
    width: 100%;
    float: right;
    padding: 22px 30px 15px;
}
.sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-latest-post-content
{
    padding:10px 0;
}

/*
.ybc-blog-latest-post-content .ybc-blog-latest-toolbar .ybc-blog-like-span span:last-child{
  display:none;
}
.ybc-blog-latest-toolbar .ybc-blog-latest-toolbar-views span
{
    display: none;
}

.ybc-blog-latest-toolbar .ybc-blog-latest-toolbar-comments span
{
    display: none;
}
*/
.sidebar-post-type-default .ybc-blog-latest-post-content > p {
  display: none;
}

.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc_item_img {
  float: left;
  overflow: hidden;
  position: relative;
  width: 30%;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc_item_img:before {
  display: none;
}
.owl-prev.disabled:hover::before,
.owl-next.disabled:hover::before{
  cursor: not-allowed;
  opacity: 0.8;
}
.ybc-blog-like-span.active:hover {
  cursor: text;
  color: #adadad;
}
.sidebar-post-type-casual .ybc-blog-like-span.active:hover {
  color: #494949;
}
.sidebar-post-type-casual .ybc-blog-like-span:hover {
  color: #010101;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-content,
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-popular-content {
  float: left;
  padding: 0 0 0 10px;
  width: 70%;
}

.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-content a,
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-popular-content a {
  line-height: 16px;
  margin-top:0px;
  padding: 0;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-toolbar-views:before,
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-like-span:before,
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-toolbar-comments:before,
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-latest-toolbar-views:before,
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-like-span:before,
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-latest-toolbar-comments:before
{
    font-size: 11px;
}

.sidebar-post-type-default #ybc-blog-posts-latest-list li {
  border: medium none;
  width: 100%;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-wrapper {
  float: left;
  padding-bottom: 15px;
  width: 100%;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list li:last-child .ybc-blog-latest-post-wrapper {
  border:none;
}
#left_column .post-date {
  float: left;
  font-size: 12px;
  margin-top: 5px;
}
/*popular post list slide bar*/

.sidebar-post-type-default .ybc-blog-posts-popular-list, .sidebar-post-type-default #ybc-blog-posts-latest-list {
  float: left;
  margin-bottom: 0;
  width: 100%;
}
#module-ybc_blog-blog .ybc-blog-breadcrumb-a {
  margin-right: 2px;
  height: 100%;
}
.sidebar-post-type-default .ybc_popular_posts.ybc-blog-posts-popular-list-wrapper {
  border-bottom: 1px solid #efefef;
  float: left;
  padding-bottom: 12px;
  width: 100%;
}
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-posts-popular-list-wrapper > a
{
    width: 30%;
    float: left;
}
.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-posts-popular-list-wrapper .ybc-blog-popular-content > p
{
    display: none;
}
#ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-label, 
.ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-label
{
    display:none;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .be-categories > a, 
.sidebar-post-type-default .ybc-blog-posts-popular-list .be-categories > a {
  float: none;
  margin: 3px 8px 0 0;
  font-size: 11px;
}
.be-categories .comma {
  margin-left: -6px;
}
.sidebar-post-type-default #ybc-blog-posts-latest-list .be-categories > a:hover, 
.sidebar-post-type-default .ybc-blog-posts-popular-list .be-categories > a:hover {
  color: #a0a0a0;
}
.sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta,
.sidebar-post-type-casual .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta
{
    display: none;
}
.ybc-blog-like-span:hover {
  color: #949494;
  cursor: pointer;
  transition: all 0.3s ease-in 0s;
}
.sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.sidebar-post-type-casual .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color: #ff4c65;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 8px;
    margin-top: -3px;
}
.ybc_blog_skin_grey #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.ybc_blog_skin_grey .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color:#c3d7df;
}
.ybc_blog_skin_black #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.ybc_blog_skin_black .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color:#000;
}

.ybc_blog_skin_violet #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.ybc_blog_skin_violet .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color:#9b539c;
}
.ybc_blog_skin_orange #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.ybc_blog_skin_orange .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color:#ffac00;
}
.ybc_blog_skin_green #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
.ybc_blog_skin_green .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a
{
    color:#82af7c;
}
.sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a:hover,
.sidebar-post-type-casual .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a:hover
{
    color:#a0a0a0;    
}

#ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta, .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta {
  display: none;
  float: left;
  margin-top: 0;
  width: 100%;
}
#left_column .sidebar-post-type-default .title_block,
#left_column .ybc-blog-categories .title_block,
#left_column .ybc-blog-search .title_block,
#left_column .ybc-blog-tags .title_block {
  border-bottom: 1px solid #e8e8e8;
  display: block;
  line-height: 16px;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.sidebar-post-type-default .ybc-blog-posts-popular-list-wrapper {
  float: left;
  margin-bottom: 12px;
  padding-bottom: 12px;
  width: 100%;
}
.sidebar-post-type-default .ybc-blog-posts-popular-list li:last-child .ybc-blog-posts-popular-list-wrapper {
  border: medium none;
}


.sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-latest-toolbar,
.sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-toolbar {
  display: none;
  font-size: 12px;
}
/*blog tags*/

.ybc-blog-tags .blog_tag a {
  border: 1px solid #e8e8e8;
  display: inline-block;
  float: left;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding: 10px 15px;
}
.ybc-blog-tags .blog_tag a:hover {  
  color:#a0a0a0;
}
.ybc-blog-tags .blog_tag .tag_0,
{
  font-size: 10px;
}
.ybc-blog-tags .blog_tag .tag_1,
{
  font-size: 10.5px;
}
.ybc-blog-tags .blog_tag .tag_2 {
  font-size: 11px;
}
.ybc-blog-tags .blog_tag .tag_3 {
  font-size: 13px;
}
.ybc-blog-tags .blog_tag .tag_4 {
  font-size: 14px;
}
.ybc-blog-tags .blog_tag .tag_5 {
  font-size: 15px;
}
.ybc-blog-tags .blog_tag .tag_6 {
  font-size: 15.5px;
}
.ybc-blog-tags .blog_tag .tag_7 {
  font-size: 16px;
}
.ybc-blog-tags .blog_tag .tag_8 {
  font-size: 16.5px;
}
.ybc-blog-wrapper.ybc-page-tag .page-heading
{
    margin: 0;
    padding-bottom: 10px;
}

.ybc-page-home .ybc-blog-galleryr #ybc_gallery_home_content .owl-item h3 {
  float: left;
  margin: 0;
  font-size: 18px;
  padding: 15px;
  width: 100%;
}

.ybc_blog_layout_large_list .ybc-blog-list .ybc-blog-wrapper-content
{
    min-height: unset;    
}
.ybc_blog_layout_list .ybc-blog-list li:last-child {
  margin-bottom: 40px;
}
.ybc_blog_layout_list .ybc-blog-wrapper-content .page-heading
{
    margin: 0;
    padding-bottom: 10px;    
}
.ybc_blog_layout_grid .ybc-blog-list .post-wrapper {
  min-height:600px;
}

/*------------------------------------------next, prev lastest news and popular posts---------------------*/
/*next, prev latest news and popular */ 
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-buttons .owl-prev::before,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-buttons .owl-prev::before  {
      color: #fff;
      content: "\f104";
      font-family: FontAwesome;
      font-size: 20px;
    }  
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-buttons .owl-next::before,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-buttons .owl-next::before {
      color: #fff;
      content: "\f105";
      font-family: FontAwesome;
      font-size: 20px;
      padding-left:3px;      
    } 
    
    .sidebar-post-type-casual #ybc-blog-posts-latest-list
    {
        position: relative!important;
    }    

    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-prev,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-next
    {
      border: 2px solid #fff!important;
      border-radius: 50%;
      height: 25px;      
      line-height: 25px;
      position: absolute !important;
      text-align: center;
      width: 25px;
      opacity: 0;
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev.disable,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next.disable{
        opacity: 0;
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-next
    {      
      right: 10px;      
    } 
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-prev
    {
        left:10px;
    }    
   /*hieu ung*/
    .sidebar-post-type-casual .owl-prev,
    .sidebar-post-type-casual .owl-next
    {
      opacity: 0;
    }
    .sidebar-post-type-casual #ybc_popular_posts:hover .owl-prev,
    .sidebar-post-type-casual #ybc_popular_posts:hover .owl-next,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list:hover .owl-prev,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list:hover .owl-next
    {
      opacity:1;
    }
    .sidebar-post-type-casual .owl-buttons .owl-next.disabled::before, 
    .sidebar-post-type-casual .owl-buttons .owl-prev.disabled::before { 
      opacity:0;
    }
        
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev.disabled,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next.disabled,
    .sidebar-post-type-casual #ybc_popular_posts .owl-prev.disabled,
    .sidebar-post-type-casual #ybc_popular_posts .owl-next.disabled
    {
        opacity: 0;
    }
    /*end hieu ung */     
    /*end of next, prev latest news 320px*/ 
    
     /*next, prev popular post 320px*/      
     #left_column .sidebar-post-type-casual #ybc_popular_posts .ybc-blog-posts-popular-list {
      position: relative;
      width: 100%;
      float: left;
    }     
    .sidebar-post-type-casual #ybc_popular_posts.ybc-blog-posts-popular-list .owl-buttons,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-buttons  {
      position: absolute;
      width: 100%;
      float: left;
      top:20%;
    }    
    #left_column .sidebar-post-type-casual .owl-carousel {
      position: relative;
    }    
     
         
    .sidebar-post-type-casual .owl-buttons {
        position: unset;  
    }
    .sidebar-post-type-casual #ybc_popular_posts .owl-buttons {
      position: unset;
    }
    .ybc-blog-posts-popular-list.owl-theme .owl-controls {
      position: unset;
    }
/*end of next, prev lastest news and popular post  */
.ybc-blog-wrapper-detail .ybc-blog-wrapper-content .page-heading {
  margin: 0;
  padding-bottom: 8px;
}
.ybc-blog-wrapper-detail .be-tag-block .be-label {
  display: block;
  float: left;
  padding-right: 10px;
  padding-top: 1px;
}

#ybc-blog-posts-home-list .ybc-blog-like-span::before,
.ybc-blog-related-posts-list .ybc-blog-like-span::before{
  margin-left: 5px;
  font-size: 10px;
}
.ybc-blog-latest-toolbar-comments::before {
  font-size: 10px;
  padding-left: 5px;
}
#left_column .blog-posted-date {
  clear: left;
  float: left;
  font-size:12px;
}
.ybc_item_img > div {
  bottom: 0;
  left: 0;
  position: absolute;
}

    
    
    
    
.ybc-blog-home-post-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
}
.homeblog .ybc_title_block {
  color: #454545;
  float: left;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 7px;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}
.ybc-blog-shortdesc {
  float: left;
  line-height: 24px;
  margin-bottom: 10px;
  width: 100%;
}
.largeblog .read_more {
  border: 1px solid #333;
  color: #5a5a5a;
  float: left;
  margin-top: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
}
.largeblog .read_more:hover{
    color: #fff;
}
.homeblog .title-home {
  margin-bottom: 30px;
  margin-top: 0;
}
.homeblog .title-home > span {
  padding-bottom: 0;
  padding-top: 0;
}
.ybc-blog-home-post-content {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.homeblog .ybc_popular_posts {
  float: left;
  margin: 5px 0 0;
  width: 100%;
}

.title_block.title_news {
  color: #263238;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}
.ybc-blog-home-content-show-hover {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    float: left;
    height: 100%;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
}
.ybc-blog-home-content-show {
  display: block;
  float: left;
  padding: 15px 0 10px;
  position: relative;
  width: 100%;
}
.ybc-blog-home-toolbar-views {
  margin-right: 15px;
}
.ybc_item_img {
  backface-visibility: hidden;
  float: left;
  overflow: hidden;
  perspective: 500px;
  position: relative;
  width: 100%;
}
.ybc_item_img:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
    .ybc_item_img img {
        height: 200px;
        width: auto !important;
        transition: all 0.7s ease 0s;
        -webkit-transition: all 0.7s ease 0s;
        margin-right: auto;
        margin-left: auto;
    }
#page .homeblog .owl-buttons .owl-prev, #page .homeblog .owl-buttons .owl-next {
  height: 26px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 26px;
}
.ybc-blog-home-post-wrapper:hover .ybc-blog-home-content-show-hover {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.ybc-blog-home-content-show-hover .table {
  height: 100%;
  margin: 0;
}

.ybc-blog-home-post-content .blog-posted-date {
  color: #fff;
}
.homeblog {
  clear: left;
  float: left;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}
.ybc-blog-home-content-show-hover a {
  color: #fff;
  font-size: 14px;
  float: left;
  width: 100%;
  height: 100%;
}

.ybc-blog-home-content-show .ybc-blog-categories {
  clear: left;
  float: left;
  margin-right: 5px;
}
.ybc-blog-home-content-show .post-date {
  clear: left;
  color: #cacaca;
  font-size: 12px;
  margin-bottom: 5px;
}
.homeblog_wrapper {
  float: left;
}

.ybc-blog-latest-toolbar{
  float: left;
  margin-top: 10px;
}
.ybc-blog-latest-toolbar-bottom {
  float: left;
  width: 60px;
}
/**-------------------------------Responsive----------------------------------------------- **/
/*max-width: 991px*/
@media (max-width: 991px) {
    .ybc_blog_layout_list .ybc-blog-list .post-wrapper > a {
      width: 100%;
    }
    .ybc_blog_layout_list .ybc-blog-list .post-wrapper .ybc-blog-wrapper-content {
      padding: 15px 0 0;
      width: 100%;
    }
    .ybc-blog-list .post-wrapper h2 a {
      font-size:22px;
    }  
    
    /*singe post on page*/ 
    .ybc-blog-list li:nth-child(n) {
      clear: left!important;
    }  
    
    .ybc_blog_layout_large_list .ybc-blog-list .post-wrapper h2 a {
      font-size: 18px;
    }
    .ybc-blog-form-comment .blog-submit .button {  
      float:left;  
      margin-top: 20px;  
    }
    .ybc-blog-form-comment .blog-submit {
      float: left;
      width: 100%;
    }   
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev, 
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next, 
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-prev,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-next 
    {  
      opacity: 1;
    }    
}
/*end max-width: 991px*/  

@media (min-width: 768px){
    .ybc-blog-related-posts-list-li:nth-child(3n+1) {
      clear: left;
    }
}
/*max 767px*/
@media (max-width: 767px){
    .ybc-blog-posts {
      float: left;
      width: 100%;
    }
    #ybc_countdown, .homeblog_wrapper {
      float: left;
      width: 50%;
    }
    .homeblog .ybc_popular_posts {
      margin: 0 0 30px;
    }
    #ybc_gallery_home {
      float: left;
      width: 100%;
    }
    .footer-container #footer .footer-block.ybc-blog-posts.ybc_latest_posts_block {
      float: left;
      padding: 0;
      width: 100%;
    }
     .ybc-blog-list .blog-extra-item .be-label
    {
        display: none;
    }
    .ybc-blog-list li:first-child .ybc-blog-post-footer .read_more {
      float: left;
      width: unset;
    }
    .ybc-blog-list .post-wrapper h2 a {
      font-size:22px;
    }
    .ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:first-child .ybc-blog-wrapper-content h2 > a {
      font-size: 22px;
    }
    #ybc_gallery_home .title_block:after
    {
        display: none;
    }
    
    .ybc_blog_layout_large_grid .ybc-blog-list li {
      width: 100%!important;
    }
    
    .ybc-blog-wrapper-content {
      min-height:unset;
      padding-bottom: 30px;
    }
    
    .sidebar-post-type-default .ybc-blog-posts-popular-list-wrapper,
    .sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-wrapper
    {
      padding-bottom: 20px;
    }
    
    .ybc_blog_layout_grid .ybc-blog-list li:nth-child(n) {
    clear: left;
    } 
    .ybc_blog_layout_grid .ybc-blog-list li {  
    width: 100%;
    }
    .sidebar-post-type-casual #ybc_popular_posts.ybc-blog-posts-popular-list .owl-buttons,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-buttons  {
        position: absolute;
        width: 100%;
        float: left;
        top: 32%;
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-next,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-next {         
      right:10px!important;
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-prev,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .owl-prev  { 
      left: 10px!important;      
    }
    #module-ybc_blog-blog .ybc_blog_layout_grid .ybc-blog-list .post-wrapper {
      min-height:300px!important;
    }
    .nivo-caption {
      display: none!important;
    }
}
/*end max 767px*/



@media (min-width: 481px) and (max-width: 767px){
    .ybc_blog_related_posts_type_default .ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list-li {
      float: left;
      width: 50%;
    }
    .ybc-blog-related-posts-list-li:nth-child(2n+1) {
      clear: left;
    }
}
/*max 480px*/
@media (max-width: 479px){
    #ybc_latest_posts_list li a > img {
      width: 100%;
    }
    #ybc_countdown, .homeblog_wrapper {
      float: left;
      width: 100%;
    }
    #ybc_latest_posts_list a {
      float: left;
      width: 100%;
    }
    .post-wrapper > a {
      float: none;
      margin: 0 auto;
    }
    .ybc-blog-posts-popular .bx-controls-direction {
      display: block;
    }
    .ybc-gallery {
      float: left;
      padding: 0 7px;
      width: 100%;
    }
    .ybc-gallery li {
      margin-bottom: 16px;
      padding: 0 8px;
    }
    .bybc-blog-slider .nivoSlider {
      min-height: 100px;
    }
    .ybc-blog-slider {
      min-height: 100px;
    }
    .loading_img > img {
      margin-top: 40px;
    }
    .ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:first-child .ybc-blog-wrapper-content h2 > a {
      font-size: 16px;
    }
    .ybc-blog-list .post-wrapper h2 a {
      font-size: 16px;      
    }   
    /*large box and list*/
    .ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list > li:first-child h2 > a {
      font-size: 16px;
    }
    .ybc_blog_layout_large_list .ybc-blog-list .post-wrapper > a {
      width: 100%;
    }
    .ybc_blog_layout_large_list .ybc-blog-wrapper-content {
      padding: 15px 0 0;
      width: 100%;
    }
    /*all grid*/    
    .ybc_blog_layout_grid .ybc-blog-list li {
      float: left;
      padding: 0 15px 40px;
      width: 100%;
    } 
     
}

/*Security code*/
@media (max-width: 388px){
    #bc-capcha {
      float: left;
    }
}

/*end max 480px*/
/*max 320px*/
@media (max-width:320px){
    .theme-bar .nivo-directionNav {
      top: 67%!important;
    } 
    .ybc-blog-wrapper-content {      
      padding: 20px 20px 10px;   
    }  

    .ybc-blog-post-footer .read_more
    {
        width: 100%;
        float: left;
        text-align: center;
    }
    .ybc-blog-list li:first-child .ybc-blog-post-footer .read_more
    {
        width: 100%;
        float: left;
        text-align: center;
    }
    .sidebar-post-type-casual #ybc_popular_posts.ybc-blog-posts-popular-list .owl-buttons,
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .owl-buttons{      
      top: 20%;
    } 
    .post-details #ybc-blog-related-products .title_block {  
      font-size: 16px!important;  
    } 
    .blog__rating_reviews::before {  
      padding-left: 8px!important;
    } 
    .be-view-span::before, .ybc-blog-latest-toolbar-views::before {      
      margin-left: 12px;      
    }
    .ybc-blog-like-span::before {      
      margin-left: 12px;    
    }
    .ybc-blog-view-like-rate {  
      margin-top: 10px!important;
    }
    .ybc-blog-wrapper-content .page-heading .title_cat {      
      font-size: 18px;      
      line-height: 27px;      
    }
    .post-details .blog-extra-item.be-author-block
    {
        width: 100%;
        float: left;
        padding: 0;                
    }
    .post-author-label {      
      padding-left: 0;
      padding-right: 10px;
    }
    .blog-post-author {  
      padding-left: 0;
    }
    .ybc-block-comment-report {  
      width: 100%;
      float: left;
      margin-top: 10px;
    }
    .ybc-blog-latest-post-content .ybc_title_block, .ybc-blog-popular-content > a
    {
        font-size: 13px!important;
    }
    .sidebar-post-type-casual .ybc-blog-latest-post-content .ybc_title_block, .ybc-blog-popular-content > a
    {
        font-size: 13px!important;
    }
    
    .ybc-blog-popular-content > p, .ybc-blog-latest-post-content > p {
      font-size: 13px!important;
    }  
    .ybc-blog-wrapper-content  
    {
        padding: 20px 0 10px;
    }
                      
}            

/*end max 320px*/

/*------------------------between min-width and max-width------------------*/
/*(min-width: 992px) and (max-width: 1199px)*/
@media (min-width: 992px) and (max-width: 1199px){
    #ybc_latest_posts_list li {
      max-width: 100%;
      width: 200px !important;
    }
    .ybc-blog-posts-popular-list > li {
        max-width: 212px;
        min-width: 212px;
    }
    .bybc-blog-slider .nivoSlider {
      min-height: 220px;
    }
    .ybc-blog-slider {
      min-height: 220px;
    }
    .loading_img > img {
      margin-top: 100px;
    }
    #ybc_latest_posts_list .post-date {
      margin-top: 5px;
      width: 100%;
    }
    .ybc_latest_posts_block #ybc_latest_posts_list li a img {
      max-width: 95%;
    }  
    #ybc_gallery_home .title_block:after
    {
        display: none;
    }
}
/*end (min-width: 992px) and (max-width: 1199px)*/
@media (max-width: 479px){
    .largeblog.ybc-blog-posts-home-list-item .ybc-blog-home-post-wrapper {
      padding-right: 0;
      width: 100%;
    }
    .largeblog.ybc-blog-posts-home-list-item .ybc-blog-home-content-show {
      width: 100%;
      position: absolute;
      color: #fff;
    }
    .largeblog .read_more {
      border: 1px solid #fff;
      color: #fff;
    }
    .largeblog.ybc-blog-posts-home-list-item {
      max-width: 100%;
    }
}
/*(min-width: 768px) and (max-width: 991px)*/
@media (min-width: 768px) and (max-width: 991px){
    .blog-product-list.product_list li:nth-child(3n+1) {
      clear: left;
    }
    .ybc-blog-post-footer .read_more {  
      text-align: center;
    }
    
    .ybc-blog-list .blog-extra-item .be-label
    {
        display: none;
    }
    .ybc-page-home .ybc-blog-galleryr #ybc_gallery_home_content .owl-item h3 {  
          padding: 10px!important; 
        }
    .sidebar-post-type-default #ybc-blog-posts-latest-list li {   
        padding: 10px 10px 0;
    }
    .sidebar-post-type-default .ybc-blog-posts-popular-list li {
    padding: 10px 10px 0;
    }
    .ybc_blog_layout_large_list.ybc-page-home .ybc-blog-list > li:first-child h2 > a {
      font-size: 18px;
    }
    .ybc_blog_layout_large_list .ybc-blog-list .post-wrapper > a {
      width: 40%;
    }
    .ybc_blog_layout_large_list .ybc-blog-wrapper-content {
      width: 60%;
    }
    .sidebar-post-type-casual .ybc_blog_layout_large_list .ybc-blog-list .post-wrapper h2 a {
      font-size: 18px!important;
    }
    #ybc-blog-posts-latest-list .ybc-blog-latest-post-content { 
      padding:10px 20px;
    }
    .sidebar-post-type-casual .ybc-blog-popular-content {
      padding:10px 20px;
    }
    .ybc-blog-popular-content a, .ybc-blog-latest-post-content a {
      font-size: 13px;
      line-height: 22px;
      }
     .sidebar-post-type-casual .ybc-blog-latest-post-content > p {
          display: none;
        }
     .sidebar-post-type-casual .ybc-blog-posts-popular-list .ybc-blog-popular-content >p{
        display: none;
     }
    .ybc-blog-posts-popular-list > li {
        max-width: 158px;
        min-width: 158px;
    }
    .loading_img > img {
        margin-top: 80px;
    }
    .ybc_latest_posts_block #ybc_latest_posts_list li a img {
        width: 60px;
    }
    #ybc_latest_posts_list .post-date {
        margin-top: 5px;
        width: 100%;
    }
    .ybc_latest_posts_block #ybc_latest_posts_list li a img {
        max-width: 95%;
    }
    #ybc_latest_posts_list a {
        float: left;
        margin-top: 5px;
        max-width: 100%;
    }
    #ybc_latest_posts_list .post-date {
        margin-top: 0;
    }
    #module-ybc_blog-blog .ybc_blog_layout_large_list .ybc-blog-post-footer .read_more {
        text-align: center;
        width: unset!important;
    } 
    #ybc-blog-posts-latest-list .ybc-blog-latest-post-content {    
        padding: 5px 20px 15px;     
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-sidear-post-meta .be-categories a,
    .sidebar-post-type-casual .ybc-blog-posts-popular-list .ybc-blog-sidear-post-meta .be-categories a 
    {  
        font-size: 11px;
    }  
    /*latest news and popular post model list */
    .sidebar-post-type-default #ybc-blog-posts-latest-list .ybc_item_img {      
        width: 100%;
    }
    .sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-posts-popular-list-wrapper > a {      
        width: 100%;
    }
    .sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-content, .sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-popular-content {
        padding: 14px 0 0;
        width: 100%;
    }
    .ybc_blog_layout_grid .ybc-blog-list .post-wrapper h2 a {
        font-size: 18px;
    }
    .ybc_blog_layout_grid .ybc-blog-list li:nth-child(n) {
        clear: left;
    } 
    .ybc_blog_layout_grid .ybc-blog-list li {  
        width: 100%;
    }
    .ybc_blog_layout_grid .ybc-blog-wrapper-content {
    padding: 30px 40px;
    } 
    .ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:nth-child(n) {
      clear: left;
    }
    .ybc_blog_layout_large_grid .ybc-blog-list li {
      float: left;
      margin-bottom: 0;
      padding: 0 15px 30px;
      width: 100%;
    }
    .ybc_blog_layout_large_grid.ybc-page-home .ybc-blog-list li:first-child .ybc-blog-wrapper-content h2 > a {
      font-size: 20px;
    }
    .ybc-blog-list .post-wrapper h2 a {
      font-size: 20px;
    }
    
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-latest-toolbar-comments::before,
    .sidebar-post-type-casual #ybc_popular_posts .ybc-blog-latest-toolbar-comments::before  {  
      padding-left: 1px;  
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-like-span::before,
    .sidebar-post-type-casual #ybc_popular_posts .ybc-blog-like-span::before{  
      margin-left: 16px;
    }
    .sidebar-post-type-casual #ybc-blog-posts-latest-list .ybc-blog-latest-toolbar-views::before,
    .sidebar-post-type-casual #ybc_popular_posts .ybc-blog-latest-toolbar-views::before{  
      margin-left: 16px;
    }
    
    .sidebar-post-type-casual .ybc-blog-latest-toolbar
    {
      margin-top: 5px;
    }
    
    .sidebar-post-type-casual .ybc-blog-latest-toolbar-views {
      margin-right: 0px;
    }
    .smallwidth .ybc-blog-home-content-show {
      padding: 10px;
    }
}

/*end between (min-width: 768px) and (max-width: 991px)*/

@media (max-width: 767px){
    .ybc_blog_related_posts_type_default .ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list-li {
      width: 50%;
    }
    #left_column .sidebar-post-type-default .title_block, #left_column .ybc-blog-categories .title_block, #left_column .ybc-blog-search .title_block, #left_column .ybc-blog-tags .title_block {
      margin-bottom: 0;
      padding-top: 0;
    }
    #left_column .sidebar-post-type-default .block_content, 
    #left_column .ybc-blog-categories .block_content, 
    #left_column .ybc-blog-search .block_content, 
    #left_column .ybc-blog-tags .block_content {
      padding-top: 10px;
    }
}

/*(min-width: 480px) and (max-width: 767px)*/    
@media (min-width: 480px) and (max-width: 767px){
    .blog-product-list .ajax_block_product {
      float: left;
      width: 50%;
    }    
    .blog-product-list .left-block {
      text-align: center;
    }    
    .loading_img > img {
      margin-top: 90px;
    }    
    .sidebar-post-type-default #ybc-blog-posts-latest-list .ybc-blog-latest-post-content a, .sidebar-post-type-default .ybc-blog-posts-popular-list .ybc-blog-popular-content a {
      font-size: 16px;  
    }
    .sidebar-post-type-default #ybc-blog-posts-latest-list .be-categories > a, .sidebar-post-type-default .ybc-blog-posts-popular-list .be-categories > a {
        font-size: 11px; 
    }
    .ybc_blog_layout_grid .ybc-blog-wrapper-content {
      padding: 30px 40px;
    } 
    .homeblog .ybc-blog-home-content-show .ybc_title_block {
      font-size: 15px;
      line-height: 22px;
    }
    .largeblog.ybc-blog-posts-home-list-item .ybc-blog-home-content-show {
      padding-left: 0;
      padding-right: 0;
      width: 50%;
    }
    .smallwidth .ybc-blog-home-content-show {
      padding: 10px;
    }
}
/*end (min-width: 480px) and (max-width: 767px)*/  
@media (max-width: 479px){
    .ybc-blog-posts-home-list-item {
      width: 100%;
    }
    .ybc_blog_related_posts_type_default .ybc-blog-related-posts-wrapper .ybc-blog-related-posts-list-li {
      width: 100%;
    }
    .ybc_blog_layout_large_grid .ybc-blog-list li:last-child{
        padding-bottom: 0;
    }
    body#module-ybc_blog-blog .columns-container {
      padding-bottom: 0;
    }
    .countdown-content, .homeblog_wrapper {
      float: left;
      width: 100%;
    }
}

.ybc_count_comment {
  color: #8b8b8b;
  float: left;
  margin-top: 0;
}
.ybc_count_comment::before {
  content: "/";
  margin-right: 2px;
}
@media (max-width: 767px){
    .homeblog .ybc_popular_posts {
      margin: 0;
    }
}

.search_block_top_fixed .table {
  display: table;
  height: 100%;
  margin: 0;
  width: 100%;
}

#search_block_top .btn.button-search:before, .button-search-toggle span:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  font-size: 12px;
  width: 100%;
  text-align: center; 
}
#search_block_top #searchbox {
  display: block;
  float: left;
  margin: 0 auto;
  width: 100%;
}
#search_block_top .btn.button-search {
  border: medium none;
  color: #b2b0ad;
  display: block;
  height: 28px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
}
#search_block_top .btn.button-search span {
  display: none; 
}
#search_block_top .btn.button-search:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  font-size: 17px;
  width: 100%;
  text-align: center; 
}
#search_block_top #search_query_top {
  background: transparent none repeat scroll 0 0;
  border-color: #dbdbdb;
  border-left: medium none #dbdbdb;
  border-right: medium none #dbdbdb;
  border-top: medium none #dbdbdb;
  display: inline;
  height: 36px;
  margin-right: 1px;
  padding: 0 40px 0 0;
}
.ac_results {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #D6D4D4;
  margin-top: -1px;
  overflow: hidden;
  width: 271px;
  z-index: 9999;
}
.ac_results > ul {
  margin-bottom: 0;
}
.ac_results li {
  border-bottom: 1px solid #e8e8e8;
  color: #888;
  cursor: pointer;
  font-size: 13px;
  font-weight: normal;
  line-height: 22px;
  padding: 2px 10px;
}
.ac_results li.ac_odd {
  background: #fff; 
}
form#searchbox {
  position: relative; 
}
form#searchbox label {
    color: #333; 
}
form#searchbox input#search_query_block {
    margin-right: 10px;
    max-width: 222px;
    margin-bottom: 10px;
    display: inline-block;
    float: left; 
}
form#searchbox .button.button-small {
    float: left; 
}
form#searchbox .button.button-small i {
    margin-right: 0; 
}
#searchbox > select {
  background-color: #fff;
  border: none;
  color: #bdbdbd;
  cursor: pointer;
  border-radius: 0;
  -webkit-border-radius: 0;
  float: left;
  font-size: 12px;
  height: 44px;
  left: 0;
  line-height: 44px;
  padding: 1px 14px 0 10px;
  position: absolute;
  text-align: center;
  -webkit-appearance:none;
  width: 135px;
}
.select-arrow::after {
  border-right: 2px solid #d5d5d5;
  content: "";
  height: 24px;
  position: absolute;
  top: 10px;
}
.select-arrow {
  background-color: #fff;
  height: 44px;
  left: 105px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  top: 0;
  width: 30px;
  z-index: 11;
}
.select-arrow:before {
  content: "\f103";
  font-family: FontAwesome;
  line-height: 44px;
  padding-left: 3px;
  width: 100%;
  color: #ccc;
  font-size: 16px;
  float: left;
}










/**/
#search_block_top {
  float: left;
  margin-top: 9px;
  padding: 0;
  position: relative;
  width: 615px;
}
#search_block_top.search_layout_3 {
  float: right;
  margin-top: 1px;
  width: auto;
}
.toogle_search_top {
  color: #ffffff;
  cursor: pointer;
  float: left;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  text-align: center;
  width: 30px;
  display: none;
}

#search_block_top .btn.button-search {
  border: medium none;
  color: #fff;
  display: block;
  height: 39px;
  margin: 3px;
  overflow: hidden;
  padding: 6px 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 39px;
}
#search_block_top .btn.button-search:before, .toogle_search_top:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  width: 100%;
  text-align: center; 
  float: left;
}
.toogle_search_top.open::before {
  content: "\f00d";
}
#search_block_top #search_query_top {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  display: inline;
  height: 44px;
  padding: 1px 60px 0 150px;
  font-size: 12px;
  width:100%;
}
.ac_results {
  background: #fff;
  border: 1px solid #d6d4d4;
  width: 271px;
  margin-top: 0; 
}
.header_style_2 .ac_results {
  margin-top: 2px; 
}
body .header_style_2 .ac_results {
  left: -2px !important;
  max-height: 250px;
  max-width: calc(100% + 4px);
  width: calc(100% + 4px) !important;
}
.ac_results li {
  font-weight: normal;
  line-height: 22px;
  padding: 5px 5px;
}
.ac_results li.ac_odd {
    background: #fff; 
}

form#searchbox {
  position: relative; 
}
form#searchbox label {
    color: #333; 
}
form#searchbox input#search_query_block {
    margin-right: 10px;
    max-width: 222px;
    margin-bottom: 10px;
    display: inline-block;
    float: left; 
}
form#searchbox .button.button-small {
    float: left; 
}
form#searchbox .button.button-small i {
  margin-right: 0; 
}
.toogle_search_top:before {
  font-size: 18px;
}

#search_block_top #search_query_top:focus {
  box-shadow: none;
}

.search_block_top_fixed {
  width: 100%;
  z-index: 10;
}
.search_block_top_fixed.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -ms-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
}
.search_block_top_close {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.search_block_top_fixed .table {
  display: table;
  height: 100%;
  margin: 0;
  width: 100%;
}
.search_block_top_fixed .table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
#search_block_top .search_block_top_fixed.open .btn.button-search span {
  display: block;
}
.search_block_top_content > h2 {
  color: #c79b50;
  font-weight: normal;
  margin-bottom: 40px;
  margin-top: 0;
  text-transform: uppercase;
}
#search_block_top.search_layout_2 #search_query_top::-moz-placeholder,
#search_block_top.search_layout_3 #search_query_top::-moz-placeholder {
  color: #FFFFFF;
}
#search_block_top.search_layout_2 #search_query_top:-moz-placeholder,
#search_block_top.search_layout_3 #search_query_top:-moz-placeholder {
  color: #FFFFFF;
}

#search_block_top.search_layout_3 #search_query_top:-ms-input-placeholder,
#search_block_top.search_layout_2 #search_query_top:-ms-input-placeholder {
  color: #424242;
}
#search_block_top.search_layout_3 #search_query_top::-webkit-input-placeholder,
#search_block_top.search_layout_2 #search_query_top::-webkit-input-placeholder {
  color: #424242;
}

.search_block_top_close:before {
  background-color: #000000;
  border-radius: 50% 50% 50% 50%;
  color: #FFFFFF;
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 30px;
}
body .ac_results li {
  line-height: 22px;
}
.search_block_top_content_icon {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  display:none;
  z-index: 0;
}
body .ac_results {
  border: 1px solid #dbdbdb;
  left: 0 !important;
  max-height: 250px;
  overflow-y: scroll;
  text-align: left;
  top: 100% !important;
  width: 100% !important;
}
.search_block_top_close.in_content {
  height: 30px;
  left: auto;
  padding: 0;
  right: 0;
  width: 30px;
  display: none;
}
.search_block_top_close.in_content::before {
  content: "\f057";
  font-family: FontAwesome;
  font-size: 26px;
  height: 100%;
  line-height: 30px;
  pointer-events: none;
  text-align: center;
  width: 100%;
}
.ybc_custom_float_header.scroll_heading .toogle_search_top {
  display: none;
}
.ac_results {
  max-width: 100%;
}
.ac_results li img {
  border: 1px solid #e8e8e8;
  height: 33px;
  margin-right: 15px;
  width: 33px;
}
.ac_results li:hover {
  background-color: #f4f4f4;
}
#search_block_top.has-categories-dropdown #search_query_top.search_query.form-control.ac_input {
  padding-left: 155px;
}

/*header style 2*/
.header_style_2 #search_block_top {
  margin-left: 15%;
  margin-top: 25px;
  width: 420px;
}
.header_style_2 #search_block_top #searchbox {
  border: 3px solid #e8e8e8;
}

@media (min-width: 992px) and (max-width: 1199px){
    .header_style_2 #search_block_top {
      margin-left: 9%;
    }
    .header_style_1 #search_block_top {
      width: 460px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .header_style_2 #search_block_top {
      margin-left: 3%;
      width: 320px;
    }
    .header_style_1 #search_block_top {
      width: 360px;
    }
}


/*# sourceMappingURL=blocksearch.css.map */
@media (max-width: 767px){
    .header-bottom #search_block_top #search_query_top {
      width: 100%;
    }
    .header_style_2 #search_block_top{
      height: 0;
      margin: 0;
      padding: 0;
      position: absolute;
      right: 0px;
      top: 100%;
      width: 100%;
      z-index: 1;
    }
    .header_style_1 #search_block_top {
      height: 0;
      margin: 0;
      padding: 0;
      position: absolute;
      right: 0px;
      top: 0%;
      width: 100%;
      z-index: 1;
    }
    .ybc-menu-button-toggle::before {
      display: none;
    }
    .header_style_2 #search_block_top #searchbox,
    .header_style_1 #search_block_top #searchbox {
      border: 2px solid #e8e8e8;
    }
    #search_block_top #searchbox.open{
        display: block;
    }
    .ac_results {
      max-width: 590px;
    }
    .search_block_top_fixed {
      display: none;
      margin-top: 60px;
      padding: 0 15px;
      position: absolute;
      right: 0;
      top: 100%;
      width: 100%;
    }
    .search_block_top_fixed.open{
        display:block;
    }
    .toogle_search_top {
      display: block;
      float: right;
      margin: 0 75px 0 0;
      position: relative;
    }
    .toogle_search_top::after {
      background-color: #fff;
      content: "";
      height: 20px;
      left: 100%;
      margin-left: 10px;
      position: absolute;
      top: 5px;
      width: 2px;
    }
    #search_block_top {
      display: inline-block;
      float: none;
      margin-top: 15px;
      padding-bottom: 10px;
    }
}
@media (min-width: 480px) and (max-width: 767px){
    .header-bottom #search_block_top.has-categories-dropdown {
      left: 100px;
      max-width: 68%;
      padding-left: 0;
      top: -54px;
      width: 40%;
    }
    .header-bottom #searchbox > select {
      text-align: center;
      width: 100px;
    }
    .select-arrow::after {
      border-right: 1px solid #d5d5d5;
    }
}
@media (max-width: 479px){
    .ac_results {
      background: none repeat scroll 0 0 #FFFFFF;
      border: 1px solid #D6D4D4;
      border-top-right-radius: 5px;
      margin-top: -1px;
      width: 65% !important;
      z-index: 9999;
      max-width: 490px;
    }
    #searchbox > select {
      width: 108px;
    }
    .select-arrow {
      left: 30%;
      position: absolute;
      width: 20px;
    }
    .search_block_top_content > h2 {
      margin-bottom: 30px;
    }
    .ac_results {
      border: 1px solid #dbdbdb;
      max-width: calc(100% - 90px);
    }
    #search_block_top.has-categories-dropdown #search_query_top.search_query.form-control.ac_input {
      padding-left: 125px;
    }
}

.ybc-mnf-block-li {
  float: left;
  list-style: outside none none;
  text-align: center;
}
#ybc-mnf-block-ul {
  display: block;
  float: none;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer {
  float: left;
  width: 100%;
}
#ybc-mnf-block {
  clear: left;
  float: left;
  max-width: 100%;
  width: 100%;
}
.block_instagram .title_block_home {
  margin-top: 0;
}
.ybc-mnf-block-a-img {
  float: left;
  margin: 5px 0 7px;
  max-width: 100%;
  text-align: center;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 100%;
}
.ybc-mnf-block-a-img:hover{
    opacity: 1;
}
#ybc-mnf-block-ul .ybc-mnf-block-a-img > img {
  float: none;
  margin: 0px auto;
  max-width: 100%;
  width: auto;
}

.ybc-mnf-block-a-name {
  padding: 3px;
  text-transform: uppercase;
}
#ybc-mnf-block .bx-controls.bx-has-controls-direction {
  margin-top: 6px;
}
.ybc-mnf-block-title .title_cat {
  font-size: 129%;
}

@media (max-width: 767px){
    .ybc-mnf-block-content {
      padding: 0px 0 30px;
    }
    .ssl_logo_footer .content_ssl {
      margin-top: 5px;
    }
}


/*class ".product_style_1" -- image full width*/

@-webkit-keyframes moveFromSubLeft{
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromSubLeft{
    from {
        -moz-transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromSubLeft{
    from {
        -ms-transform: translateX(-100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}
@-webkit-keyframes moveFromSubRight{
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromSubRight{
    from {
        -moz-transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromSubRight{
    from {
        -ms-transform: translateX(100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}
@-webkit-keyframes moveFromLeft{
    from {
        -webkit-transform: translateX(-15px);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromLeft{
    from {
        -moz-transform: translateX(-15px);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromLeft{
    from {
        -ms-transform: translateX(-15px);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromRight {
    from {
        -moz-transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromRight {
    from {
        -ms-transform: translateX(100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}
header {
  padding-bottom: 0;
}
a:hover
{
    text-decoration: none!important;
}
body
{
    -webkit-font-smoothing: antialiased;
}

.ybc-menu-wrapper {
  background-color: transparent;
  color: #000;
  float: left;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}

.ybc-menu-layout-default .ybc-menu-item-link > span:first-child {
  float: left;
  height: 20px;
  line-height: 20px;
  position: relative;
}
.ybc-menu-layout-default .ybc-menu-item-link > span {
  float: left;
  height: 20px;
  line-height: 20px;
}
.ybc-menu-block-links ul {
  padding-left: 15px;
}
.ybc-menu-layout-classic.ybc-menu-skin-default .ybc-menu > li > a {
  color: #222;  
}
.ybc-menu-layout-light .ybc-menu .ybc-menu-item-link > span {
  float: left;
  position: relative;
  font-family:sans-serif;
}

.ybc-menu-skin-black .ybc-menu-main-content,
.ybc-menu-skin-black .ybc-menu-button-toggle > span,
.fixed-full.position-fixed-scroll.ybc-menu-skin-black 
{
    background:#000 none repeat scroll 0 0;
    color:#fff;
}

.ybc-menu-skin-pink  .ybc-menu-main-content,
.ybc-menu-skin-pink .ybc-menu-button-toggle > span,
.fixed-full.position-fixed-scroll.ybc-menu-skin-pink 
{
    background:#FF4C65 none repeat scroll 0 0;
}
.ybc-menu-skin-red  .ybc-menu-main-content,
.ybc-menu-skin-red .ybc-menu-button-toggle > span,
.fixed-full.position-fixed-scroll.ybc-menu-skin-red
{
    background:#ff0000 none repeat scroll 0 0;
}
.ybc-menu-skin-green  .ybc-menu-main-content,
.ybc-menu-skin-green .ybc-menu-button-toggle > span ,
.fixed-full.position-fixed-scroll.ybc-menu-skin-green  
{
    background:#82af7c none repeat scroll 0 0;
}
.ybc-menu-skin-blue .ybc-menu-main-content,
.ybc-menu-skin-blue .ybc-menu-button-toggle > span,
.fixed-full.position-fixed-scroll.ybc-menu-skin-blue 
{
    background:#28abe3 none repeat scroll 0 0;
}
.ybc-menu-skin-orange  .ybc-menu-main-content,
.ybc-menu-skin-orange .ybc-menu-button-toggle > span,
.fixed-full.position-fixed-scroll.ybc-menu-skin-orange  
{
    background:#ffac00 none repeat scroll 0 0;
}
.ybc-menu-item a:hover .ybc-menu-columns-wrapper.ybc-mm-control-content
{
    top:100%!important;
}
.ybc-menu-slide .ybc-menu-column-type-full .ybc-menu-columns-wrapper.ybc-mm-control-content {
  left: 0;
  right: 0;
  width: 100%;
  color:#494949;
  text-align: left!important;
}
.ie8 .ybc-menu > li > a {
  padding: 37px 12px 38px;
}
.ybc-menu-columns-wrapper {
  background-color: #FFFFFF;
  border: medium none;
  color: #888;
  display: none;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: 57px;
  text-align: left;
  width: 100%;
  visibility: hidden;
}

.ybc-menu > li {
  display: inline-block;
  float: left;
  margin: 0 auto;
}
.ybc-menu-block-sub-links > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  float: left;
  margin-bottom: 3px;
  padding-bottom: 3px;
  width: 100%;
}

.ybc-menu-block {
  float: left;
  padding-bottom: 0px;
  width: 100%;
}
.ybc-menu-column-item .ybc-menu-block:last-child {
  border-bottom: 0px solid #DADADA;
}
.ybc-menu-column-top {
  float: left;
  overflow: hidden;
  width: 100%;
}
.ybc-menu-wrapper img {
  width: 100%;
  z-index: 0;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  max-width: 100%;
}
.ybc-menu-column-img {
  backface-visibility: hidden;
  overflow: hidden;
  perspective: 800px;
}
.ybc-menu-column-img:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.ybc-menu-block-img{
    float: left;
    position: relative;
    width: 100%;
    margin-top: 5px;
}
.ybc-menu-wrapper .ybc-menu-block-img a:after{
    background-color: rgba(255,255,255,0.1);
    position: absolute;
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    content: "";
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
}
.ybc-menu-wrapper .ybc-menu-block-img a:before {
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  width: 0;
  z-index: 1;
}
.ybc-menu-wrapper .ybc-menu-block-img:hover a:after,
.ybc-menu-wrapper .ybc-menu-block-img:hover a:before{
    width: 100%;
    height: 100%;
    opacity: 1;
}
.ie8 .ybc-menu-column-item h6, .ie8 .ybc-menu-column-item h6{
    border-bottom: 1px solid #E0D8D8;
}

.ybc-menu-block-links {
  float: left;
  margin-top: 5px;
  padding-left: 0;
  width: 100%;
}
.ybc-menu-block-links a:hover {
  text-decoration: underline;
}
.ybc-mm-product-img-link:before,
.ybc-mm-product-name:before 
{
  display: none;
}
.ybc-ul-category.ybc-sub-categories li a:hover
{
    text-decoration: none;
}
.ybc-menu-button-toggle 
{
    display: none;
}
.ybc-menu-block-sub-links li a
{
    float: left;
    margin: 10px 0;
    width: 100%;
}

.ybc-menu-column-size-1_12 .ybc-mm-product-review,
.ybc-menu-column-size-2_12 .ybc-mm-product-review
{
    text-align: center;
    width: 100%;
}
.ybc-menu-column-size-1_12 .ybc-mm-price-row, .ybc-menu-column-size-2_12 .ybc-mm-price-row {
  margin-bottom: 5px;
  margin-top: 0;
  width: 100%;
}
.ybc-menu-column-size-1_12 .ybc-mm-description,
.ybc-menu-column-size-2_12 .ybc-mm-description  
{
    width: 100%;
}
.ybc-menu-fade .ybc-menu li .ybc-menu-columns-wrapper 
{
    display: block;
    height: 0;
    overflow: hidden;
    transition: opacity 0.8s ease 0s;
    -webkit-transition: opacity 0.8s ease 0s;
    -ms-transition: opacity 0.8s ease 0s;
    -o-transition: opacity 0.8s ease 0s;
}
.ybc-menu-fade .ybc-menu-block-links li:hover .ybc-menu-block-sub-links 
{
    border: 1px solid #DADADA;
    height: auto;
    opacity: 1;
    padding: 15px
}
.ybc-menu-fade .ybc-menu-block-links li .ybc-menu-block-sub-links 
{
    display: block;
    height: 0;
    transition: opacity 0.6s ease 0s;
    -webkit-transition: opacity 0.6s ease 0s;
    -ms-transition: opacity 0.6s ease 0s;
    -o-transition: opacity 0.6s ease 0s;
}
.ybc-menu-fade .ybc-menu-block-links li:hover .ybc-menu-block-sub-links > li:nth-child(2n+1) 
{
    animation: 400ms ease 0s normal none 1 moveFromSubLeft;
    -webkit-animation: 400ms ease 0s normal none 1 moveFromSubLeft;
    -moz-animation: 400ms ease 0s normal none 1 moveFromSubLeft;
    -ms-animation: 400ms ease 0s normal none 1 moveFromSubLeft;
}
.ybc-menu-fade .ybc-menu-block-links li:hover .ybc-menu-block-sub-links > li:nth-child(2n) 
{
    animation: 400ms ease 0s normal none 1 moveFromSubRight;
    -webkit-animation: 400ms ease 0s normal none 1 moveFromSubRight;
    -moz-animation: 400ms ease 0s normal none 1 moveFromSubRight;
    -ms-animation: 400ms ease 0s normal none 1 moveFromSubRight;        
}
.ybc-menu-block-sub-links li:hover:first-child, .ybc-menu-block-sub-links li:focus:first-child 
{
    outline: medium none;
}
.ybc-menu-block-sub-links li:first-child a 
{
    display: inline-block;
    position: relative;
    transform-origin: 0 50% 0;
    transform-style: preserve-3d;
    transition: background 0.6s ease 0s;
    -webkit-transition: background 0.6s ease 0s;
    -o-transition: background 0.6s ease 0s;
    -ms-transition: background 0.6s ease 0s;
}  
#index .ybc-menu-block-sub-links li:last-child 
{
    line-height: 2em;
    perspective: 800px;
    width: 100%;
}
.ybc-menu-slide .ybc-menu-block-links li:hover .ybc-menu-block-sub-links 
{
    background: none repeat scroll 0 0 #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
    opacity: 1;
    padding: 5px 10px;
    top: 0;
    width: 150px;
}
.ybc-menu-slide .ybc-menu-block-links li .ybc-menu-block-sub-links 
{
    display: block;
    height: 0;
    width: 0;
    top: -15px;
    transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
    -webkit-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
    -ms-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
}
.ybc-menu-block-sub-links 
{
    background: none repeat scroll 0 0 white;
    display: none;
    left: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 170px;
    z-index: 1;
}
.ybc-menu-main-content .ybc-menu-block-sub-links li a 
{
    line-height: 20px;
    margin: 0;
}
.ybc-menu-column-type-right 
{
    direction: rtl;
}
.ybc-menu-column-type-right > .ybc-menu-columns-wrapper
{
    direction: ltr;
    left: auto;
}
.ybc-menu-layout-light.ybc-menu-skin-pink .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link,
.ybc-menu-layout-light.ybc-menu-skin-red .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link
{
    background:#28abe3;   
}  
.ybc-menu-wrapper.position-fixed.position-fixed-scroll {
  box-shadow: 0 0 2px 0 #999;
  margin-top: 0 !important;
  width: 100%;
}

.ybc_custom_float_header.scroll_heading .ybc-menu-wrapper.position-fixed {
  box-shadow: 0 0 2px 0 #999;
  margin-top: 0 !important;
}
/*ybc-menu-slide - effect slide down*/
 
.ybc-ul-category .icon-subcat:before
{
    font-family: FontAwesome;
    content:"\f107";
}   
.ybc-menu-layout-classic .ybc-menu > .ybc-menu-item .ybc-menu-item-link {
  font-size: 12px;
  padding: 20px 25px;
}
#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item .ybc-menu-item-link::after,
#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item .ybc-menu-item-no-link::after
{
    border-bottom: 0 solid #ffffff;      
    content: "";
    height: 5px;
    left: 0;
    margin: auto;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    width: 10px;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    bottom: -1px;
    z-index: 999;   
}
#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item:hover .ybc-menu-item-link::after 
{
    border-bottom: 5px solid #ffffff;
    opacity: 1;
}
.ybc-menu-layout-classic.ybc-menu-skin-default #ybc-menu-main-content .ybc-menu-item .ybc-menu-item-link
{
    color: #484848;
}
.ybc-menu-layout-classic.ybc-menu-skin-default #ybc-menu-main-content 
{
    background:#f6f6f6;
}
/*.ybc-menu-skin-pink #ybc-menu-main-content .ybc-mm-control-content .ybc-menu-block-links  li a:hover
{
    color:#ff4c65;        
}
.ybc-menu-skin-red #ybc-menu-main-content .ybc-mm-control-content .ybc-menu-block-links  li a:hover
{
    color:#ff0000;        
}
.ybc-menu-skin-green #ybc-menu-main-content .ybc-mm-control-content .ybc-menu-block-links  li a:hover
{
    color:#82af7c;        
}
.ybc-menu-skin-orange #ybc-menu-main-content .ybc-mm-control-content .ybc-menu-block-links  li a:hover
{
    color:#ffac00;        
}*/
.ybc-ul-category .ybc-mm-control::before 
{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 13px;
}
.ybc-menu-skin-blue .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-custom .ybc-sub-categories li:hover >.ybc-mm-control::before,
.ybc-menu-skin-blue #ybc-menu-main-content .ybc-mm-control-content .ybc-menu-block-links  li a:hover
{
    color:#28abe3;
}     
.ybc-menu-skin-orange .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-orange .ybc-sub-categories li:hover >.ybc-mm-control::before
{
    color:#ffac00;
}  
.ybc-menu-skin-green .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-green .ybc-sub-categories li:hover >.ybc-mm-control::before
{
    color:#82af7c;
}
.ybc-menu-skin-red .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-red .ybc-sub-categories li:hover >.ybc-mm-control::before
{
    color:#ff0000;
}
.ybc-menu-skin-pink .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-pink .ybc-sub-categories li:hover >.ybc-mm-control::before
{
    color:#ff4c65;
}
.ybc-menu-skin-black .ybc-ul-category li:hover >.ybc-mm-control::before,
.ybc-menu-skin-black .ybc-sub-categories li:hover >.ybc-mm-control::before
{
    color:#333;
}
.ybc-mm-control:before
{
    color:#777;
}
 
.ybc-menu-block-top {
  float: left;
  overflow: hidden;
  width: 100%;
}
.ybc-menu-toggle {
  display: none;
  float: left;
}
.ybc-menu-button-toggle {
  background-color: transparent;
  border: medium none;
  border-radius: 0 0 0 0;
  cursor: pointer;
  float: left;
  padding: 10px 0 0;
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  width: 100%;
}

.ybc-menu-button-toggle:hover {
  border-color: #333333;
}
.ybc-menu-main-content {
  float: left;
  width: 100%;
}
.ybc-menu-button-toggle_icon .icon-bar {
  background-color: #fff;
  clear: left;
  float: left;
  height: 3px;
  margin: 2px 3px 1px 1px;
  width: 17px;
}
.ybc-menu-button-toggle_icon {
  float: left;
  margin-right: 10px;
  margin-top: 1px;
  position: relative;
}
.ybc-menu-slide li.ybc-menu-item.ybc-menu-column-type-left:hover .ybc-menu-columns-wrapper {
  left: auto;
  right: auto;
  width: auto;
}
.ybc-menu-column-type-left .ybc-menu-columns-wrapper {
  left: auto;
  right: auto;
}
.ybc-menu-column-type-right{
    direction: rtl;
}
.ybc-menu-column-type-right p,
.ybc-menu-column-type-right .ybc-menu-column-item{
    direction: ltr;
}
.ybc-menu-slide li.ybc-menu-item.ybc-menu-column-type-left:hover .ybc-menu-columns-wrapper {
  width: auto;
  min-width: 150px;
}
.ybc-menu-wrapper .ybc-mm-product-link {
  color: #454545;
  float: left;
  font-family: Montserrat;
  font-weight: normal;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  width: 60%;
}
.ybc-mm-product-link:hover {
  text-decoration: none;
}
.ybc-mm-description {
  color: #888;
  float: left;
  line-height: 16px;
  margin-top: 2px;
  width: 50%;
}
.ybc-mm-price-row span {
  float: left;
  font-family: Montserrat;
  font-weight: normal;
  padding: 0 5px;
}
.ybc-mm-discount-saveup .ybc-mm-discount-saveup-amount {
  float: none;
  font-weight: bold;
}
.ybc-menu .ybc-mm-product-review {
  float: left;
  margin-top: 5px;
  text-align: left;
}
.ybc-menu .ybc-menu-column-size-1_12 .ybc-mm-product-review,
.ybc-menu .ybc-menu-column-size-1_12 .ybc-mm-product-review{
    width: 100%;
}
.ybc-menu .ybc_description_block {
  width: 100%;
  float: left;
  padding-top: 0;
  line-height: 22px;
}
.ybc-mm-discount-saveup {
  display: none;
  float: left;
  margin-top: 0;
}
.ybc-mm-old-price {
  color: #777777;
  font-weight: bold;
  padding: 0 3px;
  text-decoration: line-through;
}
.ybc-mm-price-row .ybc-mm-old-price.old-price {
  padding: 0;
}
.ybc-menu-item-link > i, 
.ybc-menu-item-no-link > i {
  float: left;
  font-size: 18px;
  line-height: 16px;
  margin: 0 10px 0 0;
  color: #888;
  min-width: 18px;
  text-align: center;
  width: auto;
}
.ybc_icon_image > img {
  width: auto;
  max-height: 20px;
}
.ybc-menu-item-link .ybc_icon_image, 
.ybc-menu-item-no-link .ybc_icon_image {
  float: left;
  font-size: 18px;
  line-height: 16px;
  margin: 0 10px 0 0;
  color: #888;
  max-height: 21px;
  min-width: 20px;
  text-align: center;
  width: auto;
}
.ybc-menu-block-sub-links.ybc-mm-control-content a:before {
  color: #999999;
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 5px;
}
.ybc-menu-block-sub-links > li:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}
.ybc-menu-block-sub-links.ybc-mm-control-content a:hover {
  text-decoration: none;
}
.ie8 .ybc-menu-wrapper a, .ie8 .ybc-menu-wrapper p, .ie8 .ybc-menu-wrapper span, .ie8 .ybc-mm-description{
    color: #666;
}
.ie8 .ybc-menu-item-link > span, .ie8 .ybc-mm-discount-percent{
    color: white;
}
.ybc-menu-block p {
  float: left;
  line-height: 20px;
  margin-bottom: 5px;
  width: 100%;
}

/*ybc-menu-skin-default light grey*/
.ybc-menu {
  float: left;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
.ybc-menu-wrapper a {
  color: #888;
  text-transform: capitalize;
}
.ie8 .ybc-menu-column-item .ybc-menu-column-top h6, .ie8 .ybc-menu-column-item h6{
    border-bottom: 1px solid #E0D8D8;
}
.ybc-menu-column-item {
  float: left;
  padding: 0 10px 10px;
}
.ybc-menu-columns-wrapper > div {
  padding-top: 10px;
}
.ybc-menu-block-bottom ul li {
  max-width: 100%;
  position: relative;
  text-align: left;
}
.ybc-menu-button-toggle {
  background-color: transparent;
  border: medium none;
  border-radius: 0 0 0 0;
  cursor: pointer;
  float: left;
  padding: 10px 0 0;
  position: relative;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  width: 100%;
}
.fa-submenu-exist::after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-weight: normal;
  margin-left: 5px;
  vertical-align: middle;
  display: none;
}
.ybc-mm-price-row {
  float: left;
  margin-top:2px;
  width: 54%;
}
.ybc-mm-discount-saveup {
  display: none;
  float: left;
  margin-top: 0;
}
.ybc-mm-old-price {
  color: #555;
  font-weight: bold;
  padding: 0 3px;
  display:none;
  text-decoration: line-through;
}
.ybc-mm-discount-percent {
  background-color: #ff564b;
  border-radius: 50%;
  color: white;
  font-family: Montserrat;
  font-weight: bold;
  height: 40px;
  left: -12px;
  line-height: 40px;
  padding: 2px 3px;
  position: absolute;
  top: -12px;
  width: 40px;
}
.ybc-mm-price {
  color: #000;
  font-weight: bold;
}
.ybc-menu .ybc-menu-block-top > h6, .ybc-menu .ybc-menu-column-top > h6 {
  float: left;
  font-weight: bold;
  line-height: 20px;
  margin: 0 0 10px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
}
.ybc-menu .sub-type-no_title_list .ybc-menu-block-top > h6, 
.ybc-menu .sub-type-no_title_list .ybc-menu-column-top > h6{
  border: none;
  margin: 10px 0 0;
}
.ybc-menu .sub-type-no_title_list .ybc-mm-product-img-link{
    border: none;
}
.ybc-menu h6 a{
    text-transform: uppercase;
    color: #454545;
}
.header_fixed {
  padding-bottom: 50px;
}
.ybc-menu-drop_down .ybc-menu-item .ybc-menu-columns-wrapper {
  border: 1px solid #F0F0F0;
  display: none;
  opacity: 1;
}
.ybc-menu-drop_down.ybc-menu-layout-light .ybc-menu-item .ybc-menu-columns-wrapper {
  top: 100%;
}
.ybc-menu-drop_down.ybc-menu-layout-classic .ybc-menu-item .ybc-menu-columns-wrapper {
  top: 60px;
}
.ybc-menu-drop_down.ybc-menu-layout-classic.position-fixed-scroll .ybc-menu-item .ybc-menu-columns-wrapper {
  top: 40px;
}

.ybc-no-arrow .ybc-menu-item-link:after,
.ybc-no-arrow .ybc-menu-item-no-link:after,
.ybc-no-arrow .ybc-menu-item-link:before,
.ybc-no-arrow .ybc-menu-item-no-link:before {
  display: none;
}

.ybc-menu-block-bottom, .ybc-menu-block-bottom > ul {
  float: left;
  margin-bottom: 5px;
  width: 100%;
}
.position-fixed > .container {
  padding: 0;
}
.ybc-menu-skin-pink a:hover,
.ybc-menu-skin-pink li.ybc-no-product-block:hover > a,
.ybc-menu-skin-pink .ybc-sub-categories li:hover > a{
    color: #FF4C65;
}
.ybc-menu-skin-red a:hover,
.ybc-menu-skin-red li.ybc-no-product-block:hover > a,
.ybc-menu-skin-red .ybc-sub-categories li:hover > a{
    color: #FF0000;
}
.ybc-menu-skin-green a:hover,
.ybc-menu-skin-green li.ybc-no-product-block:hover > a,
.ybc-menu-skin-green .ybc-sub-categories li:hover > a{
    color: #82AF7C;
}
.ybc-menu-skin-orange a:hover,
.ybc-menu-skin-orange li.ybc-no-product-block:hover > a,
.ybc-menu-skin-orange .ybc-sub-categories li:hover > a{
    color: #FFAC00;
}
.ybc-menu-skin-blue a:hover,
.ybc-menu-skin-blue li.ybc-no-product-block:hover > a,
.ybc-menu-skin-blue .ybc-sub-categories li:hover > a,
.ybc-menu-skin-blue #ybc-menu-main-content .ybc-menu-columns-wrapper .ybc-menu-block-custom-html li:hover > a,
.ybc-menu-skin-blue #ybc-menu-main-content .ybc-menu-columns-wrapper a:hover{
    color: #28ABE3;
}
.ybc-menu-layout-classic .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
  font-size: 12px;
  padding: 20px 25px;
}
.ybc-menu-layout-classic .ybc-menu-item-link > i,
.ybc-menu-layout-classic .ybc-menu-item-no-link > i {
  line-height: 18px;
}
.ybc-menu-item .ybc-menu-banner {
  padding: 10px;
}
.ybc-mm-mobile-type-floating .ybc-menu-blinder.active {
  display: block;
}
.ybc-menu-wrapper a.ybc-mm-item-link {
  white-space: nowrap;
}

.ybc-skin-default .ybc-menu li:hover > .ybc-menu-item-link {
  color: #d2ae71 !important;
}
.product_style_1 .ybc-mm-product-img-link {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
}
.ybc-menu-wrapper .ybc-mm-product-viewmore{
    text-align: center;
    border: 1px solid #dbdbdb;
    font-size: 13px;
    border-radius: 1px;
    display: inline-block;
    width: auto;
    padding: 0 15px;
    margin-top: 6px;
    display: none;
}
.ybc-menu-wrapper .product_style_1 .ybc-mm-product-viewmore{
    clear: left;
    float: left;
}
.ybc-menu-wrapper .product_style_1 .ybc-mm-product-link {
  font-size: 14px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}
.ybc-menu-item.ybc_new > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_new > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_hot > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_hot > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_sale > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_sale > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before {
    border-radius: 0;
    color: #fff;
    font-family: Montserrat;
    font-size: 9px;
    left: 100%;
    line-height: 13px;
    margin-left: 5px;
    font-weight: normal;
    overflow: hidden;
    padding: 1px 3px;
    position: absolute;
    text-transform: uppercase;
    top: -10px;
}
.header_style_2 .ybc-menu-item.ybc_new.ybc-menu-has-sub > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.header_style_2 .ybc-menu-item.ybc_new.ybc-menu-has-sub > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before,
.header_style_2 .ybc-menu-item.ybc_hot.ybc-menu-has-sub > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.header_style_2 .ybc-menu-item.ybc_hot.ybc-menu-has-sub > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before,
.header_style_2 .ybc-menu-item.ybc_sale.ybc-menu-has-sub > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.header_style_2 .ybc-menu-item.ybc_sale.ybc-menu-has-sub > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before {
    left: auto;
    right: 0;
    top: -15px;
}
.ybc-menu-item.ybc_new > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_new > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before {
  content: "new";
}
.ybc-menu-item.ybc_sale > .ybc-menu-item-link > span.ybc_menu_item_link_content::before,
.ybc-menu-item.ybc_sale > span.ybc-menu-item-no-link.ybc_menu_item_link_content::before {
  content: "sale";
}
.ybc-menu-item.ybc_hot > .ybc-menu-item-link > span:first-child::before,
.ybc-menu-item.ybc_hot > span.ybc-menu-item-no-link:first-child::before {
  content: "hot";
}
.header_style_2 .ybc-menu-has-sub .ybc_menu_item_link_content::after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 14px;
  margin-left: 5px;
}
.ybc-menu-item-link.ybc-menu-item-no-link {
  pointer-events: none;
}
.ybc-menu-item-link > span:first-child {
  position: relative;
}
.layout_3 .ybc_custom_float_header.scroll_heading .ybc-menu {
  display: inline-block;
  float: none;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: auto;
}
.ybc-menu-wrapper {
  width: 100%;
}

#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item .ybc-menu-item-link::before, 
#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item .ybc-menu-item-no-link::before {
  background-color: transparent !important;
  border-color: transparent transparent #dbdbdb;
  border-style: solid;
  border-width: 5px;
  bottom: -1px;
  content: "";
  left: 50%;
  margin-left: -5px;
  opacity: 0;
  position: absolute;
  
  border-bottom-width: 0;
}
#ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item:hover .ybc-menu-item-link::before {
  bottom: 0;
  opacity: 1;
  border-width: 5px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;

}
.ybc-menu-column-item ul li {
  border-bottom: medium none;
  line-height: 30px;
}
.ybc-menu-column-item ul li:last-child {
  border-bottom: none;
}
.ybc_description_block > h4 {
  font-size: 16px;
}
.ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
.ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
  text-transform: uppercase;
}
.ybc_description_block > h4 a {
  color: #222;
  font-size: 14px;
  text-align: center;
  display: block;
}
.ybc-menu-column-item ul li.ybc-mm-product-block {
  display: block;
  float: left;
  margin-bottom: 10px;
  width: 100%;
}

.header_style_1 .ybc-menu {
  padding: 5px 25px;
}
.header_style_1 .ybc-menu > li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}
.header_style_1 .ybc-menu > li:last-child {
  border-bottom: none;
}
.header_style_1 .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
.header_style_1 .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
  float: left;
  font-family: Poppins;
  line-height: 20px;
  padding: 14px 0;
  text-transform: capitalize;
  width: 100%;
}
.header_style_1 .ybc-menu > li {
  border-bottom: 1px solid #e8e8e8;
  float: left;
  position: relative;
  width: 100%;
}
.header_style_1 .ybc-menu-slide .ybc-menu-column-type-full .ybc-menu-columns-wrapper.ybc-mm-control-content {
  margin-left: 27px;
}

.header_style_1 .ybc-menu-slide .ybc-menu-column-type-full .ybc-menu-columns-wrapper.ybc-mm-control-content {
  color: #494949;
  left: 100%;
  margin-left: 25px;
  right: 0;
  text-align: left !important;
  top: 0;
  width: 67vw !important;
}
@media (min-width: 1600px){
    .header_style_1 .ybc-menu-slide .ybc-menu-column-type-full .ybc-menu-columns-wrapper.ybc-mm-control-content {
      width: 65vw !important;
    }
}
.header_style_1 .ybc-menu-columns-wrapper::before {
  background-color: transparent;
  content: "";
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 30px;
}
/*-----------------------------start responsive--------------------------*/
@media (max-width: 1199px){
    .position-fixed-scroll.position-fixed > .container {
      padding: 0 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .ybc-mm-product-block .ybc-mm-description {
        width: 100%
    }
    .ybc-menu-layout-classic .ybc-menu > .ybc-menu-item .ybc-menu-item-link 
    {  
        padding: 20px 20px;  
    }   
    .ybc-menu-layout-default .ybc-menu > li > a 
    {      
        padding: 17px 15px; 
        font-size: 16px;     
    }    
    .ybc-mm-product-block .ybc-mm-description 
    {
        width: 100%
    }    
}

@media (min-width: 768px){
    .ybc-menu-skin-default .ybc-ul-category li:hover >.ybc-mm-control::before,
    .ybc-menu-skin-default .ybc-sub-categories li:hover >.ybc-mm-control::before{
        color:#484848;
    }
    .ybc-menu-column-top > img {
      margin-bottom: 10px;
      margin-top: 10px;
    }
    .sub-type-title_list .ybc-menu-column-item li {
      border-bottom: 1px solid #E0D8D8;
      padding-bottom: 5px;
      width: 100%;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-black .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #666;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-pink .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #EB465D;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-red .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #C90000;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-green .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #688C63;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-orange .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #C98800;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-blue  .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #1F85B0;
    }
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll.ybc-menu-skin-default  .ybc-menu > li:first-child > .ybc-menu-item-link {
      border-left: 1px solid #D6D4D4;
    }
    .sub-type-title_list .ybc-menu-column-item li.ybc-mm-product-block {
      border: medium none;
    }
    .ybc-menu li.sub-type-list .ybc-menu-block-top > h6, .ybc-menu li.sub-type-list .ybc-menu-column-top > h6 {
      margin: 0;
    }
    .ybc-menu-slide li:hover .ybc-menu-columns-wrapper {
      border: 1px solid #DADADA;
      height: auto;
      opacity: 1;
      overflow: visible;
      top:100%;
      width: auto;
      visibility: visible;
    }
    .ybc-menu-layout-default .ybc-menu li:hover .ybc-menu-columns-wrapper {
      top: 100%;
      visibility: visible;
    }
    .ybc-menu-layout-default.position-fixed-scroll .ybc-menu li:hover .ybc-menu-columns-wrapper {
      top: 40px;
    }
    .ybc-menu .sub-type-list .ybc-menu-block-top > h6, 
    .ybc-menu .sub-type-list .ybc-menu-column-top > h6{
        border-bottom: none;
    }
    .ybc-menu .sub-type-list ul > li {
      border-bottom: 1px solid #E0D8D8;
      padding-bottom: 5px;
      width: 100%;
    }
    .ybc-menu .sub-type-list ul > li.ybc-mm-product-block {
      border-bottom: medium none;
    }
    .ybc-menu-fade .ybc-menu li:hover .ybc-menu-columns-wrapper {
      border: 1px solid #e0d8d8;
      height: auto;
      opacity: 1;
      overflow: visible;
      top: 100%;
      visibility: visible;
    }
    .ybc-menu-column-size-1_12 .ybc-mm-product-img-link,
    .ybc-menu-column-size-2_12 .ybc-mm-product-img-link {
        max-width: 100%;
    }
    .ybc-menu-item:hover .ybc-menu-columns-wrapper {
      border: 1px solid #f0f0f0;
      visibility: visible;
    }
    .no-wrapper-border.ybc-menu-item:hover .ybc-menu-columns-wrapper,
    .no-wrapper-border.ybc-menu-item .ybc-menu-columns-wrapper {
        border: none;
    }
    .ybc-menu-wrapper .ybc-menu-column-size-1_12 .ybc-mm-product-link,
    .ybc-menu-wrapper .ybc-menu-column-size-2_12 .ybc-mm-product-link 
    {
        margin-top: 5px;
        width: 100%;
    }
    .ybc-sub-menu-header{
        display:none;
    }
    .ybc-menu-layout-default .ybc-menu::before,
    .ybc-menu-layout-default.fixed-full.position-fixed-scroll:before {
      bottom: 0;
      content: "";
      height: 3px;
      left: 0;
      position: absolute;
      width: 100%;
    }

    .ybc-menu-layout-default.ybc-menu-skin-green .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-green:before
    {
        background:#688C63;
    }
    .ybc-menu-layout-default.ybc-menu-skin-pink .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-pink:before
    {
        background:#EB465D;
    }
    .ybc-menu-layout-default.ybc-menu-skin-blue .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-blue:before
    {
        background:#1F85B0;
    }
    .ybc-menu-layout-default.ybc-menu-skin-orange .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-orange:before
    {
        background:#C98800;
    }
    .ybc-menu-layout-default.ybc-menu-skin-red .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-red:before
    {
        background:#C90000;
    }
    .ybc-menu-layout-default.ybc-menu-skin-black .ybc-menu::before,
    .fixed-full.position-fixed-scroll.ybc-menu-layout-default.ybc-menu-skin-black:before
    {
        background:#666666;
    }
    .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      float: left;
      font-family: Montserrat;
      font-size: 16px;
      font-weight: normal;
      line-height: 18px;
      padding: 20px 22px;
      position: relative;
      text-transform: uppercase;
    }
    .header_style_2 .ybc-menu > .ybc-menu-item:first-child > .ybc-menu-item-link, 
    .header_style_2 .ybc-menu > .ybc-menu-item:first-child > .ybc-menu-item-no-link {
      padding-left: 0;
    }
    body .position-fixed-scroll .ybc-menu > .ybc-menu-item > .ybc-menu-item-link,
    body .position-fixed-scroll  .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 20px;
    }
    .position-fixed-scroll  .ybc-menu .ybc-menu-columns-wrapper {
      top: 60px;
    }
    .ybc-menu-skin-orange .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link,
    .ybc-menu-skin-orange .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-no-link{
        background:#01a4e0;   
    }
    .ybc-menu-skin-black .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link,
    .ybc-menu-skin-black .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-no-link{
        background:#555;   
    }
    .ybc-menu-skin-pink .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link,
    .ybc-menu-skin-red .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-link,
    .ybc-menu-skin-pink .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-no-link,
    .ybc-menu-skin-red .ybc-menu > .ybc-menu-item:hover .ybc-menu-item-no-link
    {
        background:#28abe3;   
    }
     .ybc-menu-columns-wrapper.ybc-mm-control-content 
    {
        display: block;
    }   
    /*ybc-menu-layout-default ybc-menu-skin-default*/
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu > .ybc-menu-item > .ybc-menu-item-link,
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      border-right: 1px solid transparent;
      color: #484848;
    }
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu-item-link i,
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu-item-no-link i {
      color: #484848;
    }
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu .ybc-menu-item:hover .ybc-menu-item-link ,
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu .ybc-menu-item:hover .ybc-menu-item-no-link    
    {
        background:transparent;
        color:#000;
    }
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu .ybc-menu-item:hover .ybc-menu-item-link i,
    .ybc-menu-layout-default.ybc-menu-skin-default .ybc-menu .ybc-menu-item:hover .ybc-menu-item-no-link i   
    {
        color:#fff;
    }
    .ybc-menu-layout-default.ybc-menu-skin-black .ybc-menu > li .ybc-menu-item-link 
    {
        border-right: 1px solid #666; 
    }
    .ybc-menu-layout-default.ybc-menu-skin-pink .ybc-menu > li .ybc-menu-item-link
    {
        border-right: 1px solid #eb465d;    
    }
    .ybc-menu-layout-default.ybc-menu-skin-red .ybc-menu > li .ybc-menu-item-link 
    {
        border-right: 1px solid #C90000;  
    }
    .ybc-menu-layout-default.ybc-menu-skin-blue .ybc-menu > li  .ybc-menu-item-link{
        border-right: 1px solid #1F85B0; 
    }   
    .ybc-menu-layout-default.ybc-menu-skin-green .ybc-menu > li .ybc-menu-item-link 
    {
      border-right: 1px solid #688c63;
    }
    .ybc-menu-layout-default.ybc-menu-skin-orange .ybc-menu > li .ybc-menu-item-link {
        border-right: 1px solid #C98800; 
    }
    /*layout light*/
    .ybc-menu-layout-light.ybc-menu-skin-black #ybc-menu-main-content .ybc-menu-item .ybc-menu-item-link
    {
        border-right:1px solid #fff;
    }
    /*effects min-width:768px*/
    .ybc-menu-zoom .ybc-menu li:hover .ybc-menu-columns-wrapper 
    {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        top:100%;
        visibility: visible;
    }
    .ybc-menu-zoom .ybc-menu li .ybc-menu-columns-wrapper 
    {
        -webkit-transform: scale(0);
        -webkit-transition: all 0.4s ease 0s;
        -moz-transform: scale(0);
        -moz-transition: all 0.4s ease 0s;
        -ms-transform: scale(0);
        -ms-transition: all 0.4s ease 0s;
        -o-transform: scale(0);
        -o-transition: all 0.4s ease 0s;
    }
    .ybc-menu-fade .ybc-menu-columns-wrapper 
    {
        top: 90px;
    }
    .ybc-menu-zoom .ybc-menu-block-links li .ybc-menu-block-sub-links 
    {
        -webkit-transform: scale(0);
        -webkit-transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;        
        -moz-transform: scale(0);
        -moz-transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
        -ms-transform: scale(0);
        -ms-transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
        -o-transform: scale(0);
        -o-transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
    }
    .ybc-menu-zoom .ybc-menu-block-links li:hover .ybc-menu-block-sub-links 
    {
        border: 1px solid #DADADA;
        opacity: 1;
        -webkit-transform: scale(1);
        padding:15px;
    }    
    .ybc_custom_float_header:not(.scroll_heading) .ybc-menu-slide li .ybc-menu-columns-wrapper {
      display: block!important;
    } 
    .ybc-menu-slide li .ybc-menu-columns-wrapper {
      height: 0;
      overflow: hidden;
      top: 80px;
      transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
      -webkit-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
      -moz-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
      -ms-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
      -o-transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
      width: 0;
      visibility: hidden;
    }   
    .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories 
    {
        background: #fff;
        float: left;
        left:100%;
        opacity: 0;
        padding: 0 10px;
        position: absolute;
        width: auto;     
        min-width: 150px;
        z-index: 999;
        height: auto;
        margin: 0;
        visibility: hidden;
        border: 1px solid #DADADA;
        display: block!important;        
    }  
    .ybc-menu-block-links li:hover > .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories {
      opacity: 1;
      top: 0;
      visibility: visible;
      transition: top 0.35s;
      -webkit-transition: top 0.35s;
      -moz-transition: top 0.35s;
      -o-transition: top 0.35s;
      -ms-transition: top 0.35s;
    }
    .ybc-menu-slide .ybc-ul-category li:hover .ybc-sub-categories.category-sub-level-1, 
    .ybc-menu-slide .ybc-ul-category li .ybc-sub-categories.category-sub-level-1 li:hover .ybc-sub-categories.category-sub-level-2,
    .ybc-menu-fade .ybc-ul-category li:hover  .ybc-sub-categories.category-sub-level-1,
    .ybc-menu-fade .ybc-ul-category li .ybc-sub-categories.category-sub-level-1 li:hover .ybc-sub-categories.category-sub-level-2,
    .ybc-menu-zoom .ybc-ul-category li:hover .ybc-sub-categories.category-sub-level-1,
    .ybc-menu-zoom .ybc-ul-category li .ybc-sub-categories.category-sub-level-1 li:hover .ybc-sub-categories.category-sub-level-2  
    {
        border: 1px solid #EEEEEE;
        height: auto;
        min-width: 170px;
        opacity: 1;
        overflow: visible;
        padding: 5px;
        position: absolute;
        top: 0;
        width: auto;
        visibility: visible;
               
    } 
     .ybc-menu-zoom .ybc-ul-category li:hover .ybc-sub-categories.category-sub-level-1,
    .ybc-menu-zoom .ybc-ul-category li .ybc-sub-categories.category-sub-level-1 li:hover .ybc-sub-categories.category-sub-level-2
    {
        transform: scale(1);
        -webkit-transform: scale(1);
    }  
    .ybc-menu-slide .ybc-ul-category.ybc-sub-categories 
    {      
        top: 30px;
        transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
        -webkit-transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
        -moz-transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
        -o-transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
        width:0;
        height: 0;
        overflow: hidden;
              
    }     
    .ybc-menu-fade .ybc-ul-category.ybc-sub-categories 
    {
        transition: opacity 0.3s ease 0s;
        -webkit-transition: opacity 0.3s ease 0s;
        -ms-transition: opacity 0.3s ease 0s;
        -o-transition: opacity 0.3s ease 0s;
        top:-1px;
    }    
    .ybc-menu-zoom .ybc-ul-category.ybc-sub-categories 
    {
        transform: scale(0);
        transition: transform 0.4s ease 0s;
        -webkit-transition: transform 0.4s ease 0s;
        -moz-webkit-transition: transform 0.4s ease 0s;
        -o-webkit-transition: transform 0.4s ease 0s;
        -ms-webkit-transition: transform 0.4s ease 0s;
    } 
    .sub-type-list li > a,
    .sub-type-title_list li > a {
      float: left;
      width: 100%;
      line-height: 20px;
    }
    .ybc-mm-control {
      display: inline-block;
      line-height: 24px;
      margin-left: 5px;
      margin-top: 1px;
      right: 0;
      top: 2px;
      width: 10px;
    }
    .ybc-menu > li > .ybc-mm-control {
      position: absolute;
    }
    .ybc-ul-category .ybc-sub-categories li:last-child {
      border-bottom: medium none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .sub-type-list .ybc-menu-block-img,
    .sub-type-no_title_list .ybc-menu-block-img {
      margin-top: 0;
    }
    .ybc-menu-scale li .ybc-menu-columns-wrapper {
      height: 0;
      overflow: hidden;
      top: 80px;
      transform: perspective(600px) rotateX(-90deg);
      -webkit-transform: perspective(600px) rotateX(-90deg);
      -moz-transform: perspective(600px) rotateX(-90deg);
      -o-transform: perspective(600px) rotateX(-90deg);
      -ms-transform: perspective(600px) rotateX(-90deg);
      transform-origin: 100% 0 0;
      -ms-transform-origin: 100% 0 0;
      -o-transform-origin: 100% 0 0;
      -webkit-transform-origin: 100% 0 0;
      visibility: hidden;
      width: 0;
    }
    .ybc-menu-scale li:hover .ybc-menu-columns-wrapper {
      border: 1px solid #dadada;
      height: auto;
      opacity: 1;
      overflow: visible;
      top: 100%;
      min-width: 200px;
      transform: perspective(600px) rotateX(0deg);
      -webkit-transform: perspective(600px) rotateX(0deg);
      -moz-transform: perspective(600px) rotateX(0deg);
      -o-transform: perspective(600px) rotateX(0deg);
      -ms-transform: perspective(600px) rotateX(0deg);
      transition: transform 0.5s ease 0s, opacity 0.2s ease 0s, max-height 0s step-end 0s, max-width 0s step-end 0s, padding 0s step-end 0s;
      -webkit-transition: transform 0.5s ease 0s, opacity 0.2s ease 0s, max-height 0s step-end 0s, max-width 0s step-end 0s, padding 0s step-end 0s;
      -moz-transition: transform 0.5s ease 0s, opacity 0.2s ease 0s, max-height 0s step-end 0s, max-width 0s step-end 0s, padding 0s step-end 0s;
      -o-transition: transform 0.5s ease 0s, opacity 0.2s ease 0s, max-height 0s step-end 0s, max-width 0s step-end 0s, padding 0s step-end 0s;
      -ms-transition: transform 0.5s ease 0s, opacity 0.2s ease 0s, max-height 0s step-end 0s, max-width 0s step-end 0s, padding 0s step-end 0s;
      visibility: visible;
      width: auto;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .position-fixed-scroll .ybc-menu > .ybc-menu-item > .ybc-menu-item-link,
    .position-fixed-scroll  .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 10px 15px;
    }
    .layout_3 .ybc-menu-wrapper {
      margin-top: 40px;
      width: 100%;
    }
    .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
    .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 20px 15px;
      font-size: 14px;
    }
    
    /*floating menu*/
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper.ybc-menu-hide-image-on-mobile img {
        display: none;
    }
    .layout_3 .ybc_custom_float_header.scroll_heading  .ybc-menu-wrapper {
      margin-top: 20px;
      width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories {
      clear: left;
      float: left;
    }
    .ybc_custom_float_header.scroll_heading .ybc-ul-category > li > .ybc-mm-item-link {
      padding-bottom: 5px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-drop_down .ybc-menu-item .ybc-menu-columns-wrapper {
      border: medium none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-ul-category .ybc-mm-item-link,
    .ybc_custom_float_header.scroll_heading .ybc-sub-categories > li > a{
      margin-bottom: 5px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-links .ybc-mm-item-link,
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-links.ybc-ul-category span,
    .ybc_custom_float_header.scroll_heading .ybc-ul-category.ybc-sub-categories li a
    {
        float: left;
    }
    .ybc_custom_float_header.scroll_heading .ybc-ul-category .ybc-mm-control::before 
    {
        font-size: 10px;
    }
   .ybc_custom_float_header.scroll_heading .ybc-menu-block-links.ybc-ul-category span {
      cursor: pointer;
      font-size: 10px;
      height: 28px;
      line-height: 28px;
      width: 17px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-top.ybc-menu-title-block
    {
        padding-bottom: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-default .ybc-sub-menu-header  
    {
        display: none;
    }  
    .ybc_custom_float_header.scroll_heading .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories
    {
        display: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu  .ybc-menu-item:hover .ybc-menu-item-link
    {
        background: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu {
        padding: 0 15px;
        width: 100%;
        float: left;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item:hover .ybc-menu-item-link:before {      
      opacity: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu .ybc-menu-item .ybc-menu-item-link,
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu .ybc-menu-item .ybc-menu-item-no-link
    {
      cursor: pointer;
      float: left;
      font-size: 14px;
      font-weight: 400;
      margin: 0;
      padding: 10px 0;
      text-decoration: none;
      width: 100%;
      line-height: 20px;
      color: #333;
      text-align: left;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-block {
        padding-bottom: 10px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-product-block .ybc-mm-description {
        float: left;
        margin-top: 5px;
        width: 50%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-main-content .ybc-menu{
        background: none repeat scroll 0 0 #faf8f8;
    }    
    .ybc_custom_float_header.scroll_heading .fa-submenu-exist {
        display: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-sub-links {
        display: none;
        float: left;
        overflow: hidden;
        padding-left: 10px;
        top: 0;
        width: 100%;
        z-index: 1;
        margin-top: 8px;
    }     
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-sub-links > li
    {
        border-bottom: none;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu-columns-wrapper {
      background-color: rgba(0, 0, 0, 0);
      border: medium none;
      display: none;
      float: left;
      height: auto;
      opacity: 1;
      overflow: hidden;
      padding: 0;
      position: static;
      visibility: visible;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-column-item .ybc-menu-columns-wrapper .ybc-menu-block {
        padding-bottom: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-toggle {
        display: block;
        width:100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-button-toggle {
      display: block;
      margin-top: 0;
      padding-top: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-block {
        border-bottom: 0 solid #DADADA;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu .ybc-menu-item
    {
        float: left;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #E0D8D8;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-columns-wrapper .ybc-menu-column-item h6 {
        padding-bottom: 0px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu .ybc-menu-item:last-child{
        border-bottom: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper li:hover .ybc-menu-columns-wrapper {
        padding: 15px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-column-item {
        padding: 0;
        width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper .ybc-menu-column-item .ybc-menu-block {
        padding-bottom: 0px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-toggle .navbar-brand {
        text-transform: uppercase;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu .ybc-menu-title-block h6
    {
        border: none;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-caption .caption2 .caption-span {
        line-height: 12px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-caption .caption1 .caption-span {
        padding: 3px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper {  
        margin-top: 20px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-layout-classic .ybc-menu > .ybc-menu-has-sub.ybc-menu-item > .ybc-menu-item-link::before 
    {
        display: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-default .ybc-menu > .ybc-menu-item:last-child .ybc-menu-item-link   
    {
        border-bottom: none;
    }       
    .ybc_custom_float_header.scroll_heading .ybc-sub-menu-header span:first-child {
        float: left;
        font-size: 16px;
        font-weight: bold;
        line-height: 24px;
        margin: 0;
        padding: 10px 15px;
        text-transform: uppercase;
        width: 100%;
        position: relative; 
        color: #5a5a5a;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle > span {
      color: #5a5a5a;
      float: left;
      font-size: 16px;
      font-weight: bold;
      line-height: 24px;
      margin: 0;
      padding: 10px 15px 10px 0;
      position: relative;
      text-transform: uppercase;
      width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-pink .ybc-sub-menu-header span:first-child    
    {
        background:#ff4c65;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-black .ybc-sub-menu-header span:first-child    
    {
        background:#000;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-red .ybc-sub-menu-header span:first-child    
    {
        background:#ff0000;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-green .ybc-sub-menu-header span:first-child    
    {
        background:#82af7c;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-orange .ybc-sub-menu-header span:first-child    
    {
        background:#ffac00;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-blue .ybc-sub-menu-header span:first-child    
    {
        background:#28abe3;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-blue  #ybc-menu-main-content
    {
        border: 1px solid #28abe3;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-orange  #ybc-menu-main-content
    {
        border: 1px solid #ffac00;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-green #ybc-menu-main-content
    {
        border: 1px solid #82af7c;
    }   
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-red #ybc-menu-main-content
    {
        border: 1px solid #ff0000;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-black #ybc-menu-main-content
    {
        border: 1px solid #000;
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-pink #ybc-menu-main-content   
    {
        border: 1px solid #ff4c65;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content
    {
        border-top:none;
        z-index: 9999;
    }    
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content .ybc-menu li a:hover
    {
        transition: all 0.1s ease-in 0s; 
        -webkit-transition: all 0.1s ease-in 0s;
        -o-transition: all 0.1s ease-in 0s;
        -ms-transition: all 0.1s ease-in 0s;       
    }    
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-pink .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-pink .ybc-mm-control.opened:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-pink #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ff4c65; 
    }     
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-default .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-default .ybc-mm-control.opened:hover::before
    {
        color:#484848; 
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-default .ybc-menu-button-toggle > span,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-default .ybc-sub-menu-header span:first-child 
    {
        color: #484848;
        background:#f6f6f6;      
    } 
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-black .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-black .ybc-mm-control.opened:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-black #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#000; 
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-red .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-red .ybc-mm-control.opened:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-red #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ff0000; 
    }  
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-green #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#82af7c;        
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-green .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-green .ybc-mm-control.opened:hover::before
    {
        color:#82af7c; 
    }   
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-orange #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ffac00;        
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-orange .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-orange .ybc-mm-control.opened:hover::before
    {
        color:#ffac00; 
    }   
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-blue #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#28abe3;        
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-blue .ybc-mm-control.closed:hover::before,
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-blue .ybc-mm-control.opened:hover::before
    {
        color:#28abe3; 
    }  

    .ybc_custom_float_header.scroll_heading .ybc-menu-block-type-html
    {
        float: left;
        width:100%;
    }   
    .ybc_custom_float_header.scroll_heading .star_content 
    {
        float: left;
        margin-right: 10px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu > li > .ybc-mm-control {
      cursor: pointer;
      height: 40px;
      overflow: hidden;
      position: absolute;
      right: 0;
      top: 0;
      width: 40px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-control.closed::before
    {
        content: "\f067";
        font-family: FontAwesome;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-control.opened:before
    {
        content: "\f068";
        font-family: FontAwesome;
    }
   .ybc_custom_float_header.scroll_heading .ybc-menu > li > .ybc-mm-control.closed:before,
   .ybc_custom_float_header.scroll_heading .ybc-menu > li > .ybc-mm-control.opened:before{
      float: left;
      font-size: 13px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      width: 40px;
    } 
    .ybc_custom_float_header.scroll_heading .ybc-menu-skin-default .ybc-menu-btn:before 
    {
        color:#484848;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-default #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header
    {
        display: none;
    }       
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating  #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header,
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-full  #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header
    {
        position: relative;
        width: 100%;
        float: left;
    }      
    .ybc_custom_float_header.scroll_heading .ybc-menu-btn:before
    {
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-family: FontAwesome;
        content: "\f00d";
        font-size:20px;
        color:#fff;
        top: 0;
        right: 0;
        cursor: pointer;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating .ybc-menu-blinder
    {
        position: fixed;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 10;
        background-color: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating .ybc-menu-main-content, 
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-full .ybc-menu-main-content {
      width: 400px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating .ybc-menu-main-content
    {
        width: 320px;
        left:-320px;
    } 
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating .ybc-menu-main-content.active    
    {
        left: 0px;            
    }     
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-default .ybc-menu-main-content.active .ybc-menu,
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-full .ybc-menu-main-content.active
    {
        display:block;  
    } 
    .ybc_custom_float_header.scroll_heading .ybc-menu .ybc-mm-product-review {
      width: 50%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper.position-fixed-scroll {
      position: relative !important;
    }
    .ybc_custom_float_header.scroll_heading .header_fixed {
      padding-bottom: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-item-link > i,
    .ybc_custom_float_header.scroll_heading .ybc-menu-item-no-link > i{
        color: #333;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-block-links.ybc-ul-category span {
      padding-left: 5px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-columns-wrapper {
      max-width: 100% !important;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-layout-light .ybc-menu .ybc-menu-item-link > span::before{
        display: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper a {
      font-size: 13px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu .ybc-menu-block-top > h6, .ybc-menu .ybc-menu-column-top > h6 {
      font-size: 14px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu-columns-wrapper.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
    /*end*/
    

}
@media (min-width: 768px){
    .ybc-menu-block-bottom ul.ybc-ul-category.ybc-sub-categories li {
      display: flex;
      max-width: none;
      white-space: nowrap;
    }
    .ybc-menu-wrapper .content_center_midle {
      position: relative;
      text-align: center;
      vertical-align: middle;
    }
    .content_center_midle .ybc-menu-column-top > img {
      width: auto;
    }
}
@media (max-width: 767px){
    .ybc-menu-wrapper.ybc-menu-hide-image-on-mobile img {
        display: none;
    }
    .ybc-menu-wrapper img {
      width: auto;
    }
    .header_style_1 .ybc-menu-main-content {
      display: block !important;
    }
    .ybc-menu-skin-custom #ybc-menu-main-content {
      border: 1px solid #dbdbdb;
    }
    .ybc-menu-wrapper .ybc-menu-toggle {
      background-color: transparent !important;
    }

    .ybc-menu-button-toggle_icon .icon-bar {
      background-color: #fff;
      clear: left;
      float: left;
      height: 3px;
      margin: 2px 8px 1px;
      position: relative;
      width: 4px;
    }
    .ybc-menu-button-toggle_icon .icon-bar::after {
      background-color: #fff;
      content: "";
      height: 3px;
      margin-right: 2px;
      position: absolute;
      right: 100%;
      width: 4px;
    }
    .ybc-menu-button-toggle_icon .icon-bar::before {
      background-color: #fff;
      content: "";
      height: 3px;
      left: 100%;
      margin-left: 2px;
      position: absolute;
      width: 4px;
    }
    .ybc-menu .ybc_description_block {
      padding-bottom: 15px;
      padding-top: 0;
      width: 100%;
    }
    .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu-columns-wrapper.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
    .layout_3 .ybc-menu-wrapper {
      margin-top: 20px;
      width: 100%;
    }
    .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories {
      clear: left;
      float: left;
    }
    .ybc-ul-category > li > .ybc-mm-item-link {
      padding-bottom: 5px;
    }
    .ybc-menu-drop_down .ybc-menu-item .ybc-menu-columns-wrapper {
      border: medium none;
    }
    .ybc-ul-category .ybc-mm-item-link,
    .ybc-sub-categories > li > a{
      margin-bottom: 5px;
    }
    .ybc-menu-block-links .ybc-mm-item-link,
    .ybc-menu-block-links.ybc-ul-category span,
    .ybc-ul-category.ybc-sub-categories li a
    {
        float: left;
    }
    .ybc-ul-category .ybc-mm-control::before 
    {
        font-size: 10px;
    }
   .ybc-menu-block-links.ybc-ul-category span {
      cursor: pointer;
      font-size: 10px;
      height: 26px;
      line-height: 28px;
    }
    .ybc-menu-block-top.ybc-menu-title-block
    {
        padding-bottom: 0;
    }
    .ybc-mm-mobile-type-default .ybc-sub-menu-header  
    {
        display: none;
    }  
    .ybc-ul-category.ybc-mm-control-content.ybc-sub-categories
    {
        display: none;
    }
    .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu  .ybc-menu-item:hover .ybc-menu-item-link
    {
        background: none;
    }
    .ybc-menu-wrapper .ybc-menu {
        padding: 0;
        width: 100%;
        float: left;
    }
    #ybc-menu-main-content .ybc-menu-has-sub.ybc-menu-item:hover .ybc-menu-item-link:before {      
      opacity: 0;
    }
    .ybc-menu-wrapper .ybc-menu .ybc-menu-item .ybc-menu-item-link,
    .ybc-menu-wrapper .ybc-menu .ybc-menu-item .ybc-menu-item-no-link
    {
      cursor: pointer;
      float: left;
      font-weight: 400;
      margin: 0;
      padding: 10px;
      text-decoration: none;
      width: 100%;
      line-height: 20px;
      color: #333;
      text-align: left;
    }
    .ybc-menu-block {
        padding-bottom: 10px;
    }
    .ybc-mm-product-block .ybc-mm-description {
        float: left;
        margin-top: 5px;
        width: 50%;
    }
    .ybc-menu-wrapper .ybc-menu-main-content .ybc-menu{
        background: none repeat scroll 0 0 #faf8f8;
    }    
    .fa-submenu-exist {
        display: none;
    }
    .ybc-menu-block-sub-links {
        display: none;
        float: left;
        overflow: hidden;
        padding-left: 10px;
        top: 0;
        width: 100%;
        z-index: 1;
        margin-top: 8px;
    }     
    .ybc-menu-block-sub-links > li
    {
        border-bottom: none;
    }    
    .ybc-menu-wrapper #ybc-menu-main-content .ybc-menu-columns-wrapper {
      background-color: rgba(0, 0, 0, 0);
      display: none;
      float: left;
      height: auto;
      opacity: 1;
      overflow: hidden;
      padding: 0 15px;
      position: static;
      visibility: visible;
      min-width: 100%;
      margin: 0;
      max-width: 100%;
    }
    .ybc-menu-wrapper .ybc-menu-column-item .ybc-menu-columns-wrapper .ybc-menu-block {
        padding-bottom: 0;
    }
    .ybc-menu-wrapper .ybc-menu-toggle {
      display: block;
      position: relative;
      width: auto;
      z-index: 99;
    }
    .ybc-menu-wrapper .ybc-menu-button-toggle {
      display: block;
      margin-top: 0;
      padding: 10px 0;
    }
    .ybc-menu-wrapper .ybc-menu-block {
        border-bottom: 0 solid #DADADA;
    }
    .ybc-menu .ybc-menu-item {
      border-bottom: 1px solid #e0d8d8;
      float: left;
      padding: 0;
      position: relative;
      width: 100%;
    }
    .ybc-menu-columns-wrapper .ybc-menu-column-item h6 {
        padding-bottom: 0px;
    }
    .ybc-menu .ybc-menu-item:last-child{
        border-bottom: none;
    }
    .ybc-menu-wrapper li:hover .ybc-menu-columns-wrapper {
        padding: 15px;
    }
    .ybc-menu-wrapper .ybc-menu-column-item {
        padding: 0;
        width: 100%;
    }
    .ybc-menu-wrapper .ybc-menu-column-item .ybc-menu-block {
        padding-bottom: 0px;
    }
    .ybc-menu-toggle .navbar-brand {
        text-transform: uppercase;
    }    
    .ybc-menu .ybc-menu-title-block h6
    {
        border: none;
    }    
    .ybc-menu-layout-classic .ybc-menu > .ybc-menu-has-sub.ybc-menu-item > .ybc-menu-item-link::before 
    {
        display: none;
    }
    .ybc-mm-mobile-type-default .ybc-menu > .ybc-menu-item:last-child .ybc-menu-item-link   
    {
        border-bottom: none;
    }       
    .ybc-sub-menu-header span:first-child {
        float: left;
        font-size: 16px;
        font-weight: bold;
        line-height: 24px;
        margin: 0;
        padding: 10px 15px;
        text-transform: uppercase;
        width: 100%;
        position: relative; 
        color: #5a5a5a;
    }    
    .ybc-menu-button-toggle > span {
      color: #fff;
      float: left;
      font-size: 14px;
      font-weight: bold;
      line-height: 24px;
      margin: 0;
      padding: 7px 0 2px;
      position: relative;
      text-transform: uppercase;
      width: 100%;
      text-align: left;
    }
    .ybc-menu-skin-pink .ybc-sub-menu-header span:first-child    
    {
        background:#ff4c65;
    }
    .ybc-menu-skin-black .ybc-sub-menu-header span:first-child    
    {
        background:#000;
    }
    .ybc-menu-skin-red .ybc-sub-menu-header span:first-child    
    {
        background:#ff0000;
    }
    .ybc-menu-skin-green .ybc-sub-menu-header span:first-child    
    {
        background:#82af7c;
    }
    .ybc-menu-skin-orange .ybc-sub-menu-header span:first-child    
    {
        background:#ffac00;
    }
    .ybc-menu-skin-blue .ybc-sub-menu-header span:first-child    
    {
        background:#28abe3;
    }    
    .ybc-menu-skin-blue  #ybc-menu-main-content
    {
        border: 1px solid #28abe3;
    }    
    .ybc-menu-skin-orange  #ybc-menu-main-content
    {
        border: 1px solid #ffac00;
    }    
    .ybc-menu-skin-green #ybc-menu-main-content
    {
        border: 1px solid #82af7c;
    }   
    .ybc-menu-skin-red #ybc-menu-main-content
    {
        border: 1px solid #ff0000;
    }    
    .ybc-menu-skin-black #ybc-menu-main-content
    {
        border: 1px solid #000;
    }    
    .ybc-menu-skin-pink #ybc-menu-main-content   
    {
        border: 1px solid #ff4c65;
    }
    #ybc-menu-main-content
    {
        border-top:none;
        z-index: 9999;
    }    
    #ybc-menu-main-content .ybc-menu li a:hover
    {
        transition: all 0.1s ease-in 0s; 
        -webkit-transition: all 0.1s ease-in 0s;
        -o-transition: all 0.1s ease-in 0s;
        -ms-transition: all 0.1s ease-in 0s;       
    }    
    .ybc-menu-skin-pink .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-pink .ybc-mm-control.opened:hover::before,
    .ybc-menu-skin-pink #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ff4c65; 
    }     
    .ybc-menu-skin-default .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-default .ybc-mm-control.opened:hover::before
    {
        color:#484848; 
    }
    .ybc-menu-skin-default .ybc-menu-button-toggle > span,
    .ybc-menu-skin-default .ybc-sub-menu-header span:first-child 
    {
        color: #484848;
        background:#f6f6f6;      
    } 
    .ybc-menu-skin-black .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-black .ybc-mm-control.opened:hover::before,
    .ybc-menu-skin-black #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#000; 
    }
    .ybc-menu-skin-red .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-red .ybc-mm-control.opened:hover::before,
    .ybc-menu-skin-red #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ff0000; 
    }  
    .ybc-menu-skin-green #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#82af7c;        
    }
    .ybc-menu-skin-green .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-green .ybc-mm-control.opened:hover::before
    {
        color:#82af7c; 
    }   
    .ybc-menu-skin-orange #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#ffac00;        
    }
    .ybc-menu-skin-orange .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-orange .ybc-mm-control.opened:hover::before
    {
        color:#ffac00; 
    }   
    .ybc-menu-skin-blue #ybc-menu-main-content .ybc-menu li a:hover
    {
        color:#28abe3;        
    }
    .ybc-menu-skin-blue .ybc-mm-control.closed:hover::before,
    .ybc-menu-skin-blue .ybc-mm-control.opened:hover::before
    {
        color:#28abe3; 
    }  

    .ybc-menu-block-type-html
    {
        float: left;
        width:100%;
    }   
    .star_content 
    {
        float: left;
        margin-right: 10px;
    }
    .ybc-menu > li > .ybc-mm-control 
    {
        overflow: hidden;
        position: absolute;
        right: 0px;
        top: 0px;
        cursor: pointer;
    }
    .ybc-mm-control.closed::before
    {
        content: "\f067";
        font-family: FontAwesome;
    }
    .ybc-mm-control.opened:before
    {
        content: "\f068";
        font-family: FontAwesome;
    }
   .ybc-menu > li > .ybc-mm-control.closed:before,
   .ybc-menu > li > .ybc-mm-control.opened:before{
      float: left;
      font-size: 13px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      width: 40px;
    } 
    .ybc-menu-skin-default .ybc-menu-btn:before 
    {
        color:#484848;
    }
    .ybc-mm-mobile-type-default #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header
    {
        display: none;
    }       
    .ybc-mm-mobile-type-floating  #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header,
    .ybc-mm-mobile-type-full  #ybc-menu-main-content .ybc-menu-blinder .ybc-sub-menu-header
    {
        position: relative;
        width: 100%;
        float: left;
    }      
    .ybc-menu-btn:before
    {
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-family: FontAwesome;
        content: "\f00d";
        font-size:20px;
        color:#fff;
        top: 0;
        right: 0;
        cursor: pointer;
    }
    .ybc-mm-mobile-type-floating .ybc-menu-blinder
    {
        position: fixed;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 10;
        background-color: rgba(0, 0, 0, 0.5);
        top: 0;
        left: 0;
    }
    .ybc-mm-mobile-type-floating .ybc-menu-main-content {
      background: #faf8f8 none repeat scroll 0 0;
      height: 100%;
      position: fixed;
      top: 0 !important;
      transition: left 0.5s ease 0s;
      -webkit-transition: left 0.5s ease 0s;
      -moz-transition: left 0.5s ease 0s;
      -ms-transition: left 0.5s ease 0s;
      -o-transition: left 0.5s ease 0s;
      overflow: auto;
      left: 0;
    }
    .ybc-mm-mobile-type-full .ybc-menu-main-content {
      background: #faf8f8 none repeat scroll 0 0;
      height: 100%;
      position: fixed;
      top: 44px !important;
      transition: all 0.5s ease 0s;
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -ms-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      overflow: auto;
      left: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-btn.active .ybc-menu-button-toggle > span .ybc-menu-button-toggle_icon {
      position: static;
      width: auto;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-full .ybc-menu-btn.active .ybc-menu-button-toggle > span,
    .ybc-mm-mobile-type-full .ybc-menu-btn.active .ybc-menu-button-toggle > span {
      height: auto;
      text-indent: 0;
    }
    .ybc-mm-mobile-type-floating .ybc-menu-main-content {
      height: 100% !important;
      left: -320px;
      max-height: 100% !important;
      width: 320px;
    }
    .ybc-menu-wrapper > .container {
      padding: 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating #ybc-menu-main-content {
      left: -320px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-floating #ybc-menu-main-content.active {
      left: 0;
    }
    .ybc-mm-mobile-type-floating .ybc-menu-main-content.active {
      left: 0;
      min-height: 100%;
    }    
    .ybc-mm-mobile-type-default .ybc-menu-main-content .ybc-menu,
    .ybc-mm-mobile-type-full .ybc-menu-main-content 
    {
        display:none;
    }
    .ybc-mm-mobile-type-default .ybc-menu-main-content.active .ybc-menu,
    .ybc-mm-mobile-type-full .ybc-menu-main-content.active
    {
        display:block;  
    } 
    .ybc-menu .ybc-mm-product-review {
      width: 50%;
    }
    .ybc-menu-wrapper.position-fixed-scroll {
      position: relative !important;
    }
    .header_fixed {
      padding-bottom: 0;
    }
    .ybc-menu-block-links.ybc-ul-category span {
      padding-left: 5px;
    }
    .ybc-menu-columns-wrapper {
      max-width: 100% !important;
    }
    .ybc-menu-layout-light .ybc-menu .ybc-menu-item-link > span::before{
        display: none;
    }
    .ybc-menu-wrapper a {
      font-size: 14px;
    }
    .ybc-menu .ybc-menu-block-top > h6, .ybc-menu .ybc-menu-column-top > h6 {
      font-size: 13px;
    }
    /*floating*/
    .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper {
      left: 0;
      margin-top: 12px;
      position: absolute;
      text-align: center;
      top: 0;
      width: 100px;
    }
    .ybc-menu-main-content {
      visibility: hidden;
    }
    .ybc-menu-main-content.active {
      box-shadow: 0 0 8px 1px #666;
      -webkit-box-shadow: 0 0 8px 1px #666;
      visibility: visible;
    }
    .ybc-menu-wrapper.ybc-mm-mobile-type-full .ybc-menu-toggle.ybc-menu-btn.active {
      background-color: #fff;
      height: 44px;
      left: 0;
      line-height: 44px;
      padding: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
    }
}

@media (min-width: 480px) and (max-width: 767px)  {
    #ybc-menu-main-content .ybc-menu-item-link > span {
        font-weight: normal;
    }
    .ybc-menu-block-links  .ybc-mm-product-block 
    {
        margin-bottom:10px;
    }   
    .ybc-menu-column-size-1_12 .ybc-mm-product-review,
    .ybc-menu-column-size-2_12 .ybc-mm-product-review,
    .ybc-menu-column-size-1_12 .ybc-mm-price-row,
    .ybc-menu-column-size-2_12 .ybc-mm-price-row,
    .ybc-menu-column-size-1_12 .ybc-mm-description,
    .ybc-menu-column-size-2_12 .ybc-mm-description  
    {
        width: 50%;
    }
}

@media (min-width: 480px){
    .ybc-mm-product-img-link {
      border: 1px solid #e8e8e8;
      clear: left;
      float: left;
      margin-right: 4%;
      max-width: 36%;
    }
}

@media (max-width: 479px){
    .ybc-mm-product-img-link
    {
        margin-bottom:10px;
        width: 100%;
        float: left;
        border: 1px solid #DDDDDD;
    }
    .ybc-menu-wrapper .ybc-mm-product-link {
      width: 100%;
    }
    .ybc-mm-price-row 
    {
        float: left;
        margin-top: 10px;
        width: 100%;
    }
    .ybc-mm-product-block .ybc-mm-description 
    {
        float: left;
        margin: 10px 0;
        width: 100%;
    }
    .ybc-menu .ybc-mm-price-row 
    {
        float: left;
        margin-top: 10px;
        width: 100%!important;
    }
    .ybc-menu .ybc-mm-product-review
    {
        float: left;
        margin-top: 12px;
        width: 100%!important;
    }       
}


/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
@font-face {
  font-family: 'Mistral';
  src: url(/Assets/client/themes/digitalstore/css/modules/ybc_nivoslider/css/fonts/Mistral.eot) format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
    font-family: 'Mistral';
    src: url(/Assets/client/themes/digitalstore/css/modules/ybc_nivoslider/css/fonts/Mistral.woff) format('woff'),
         url(/Assets/client/themes/digitalstore/css/modules/ybc_nivoslider/css/fonts/Mistral.ttf)  format('truetype'),
         url(/Assets/client/themes/digitalstore/css/modules/ybc_nivoslider/css/fonts/Mistral.svg#Mistral) format('svg');                  
    font-weight: normal;
    font-style: normal;
}
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}


/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  text-indent: 0;
  top: 50%;
  z-index: 9;
}

.theme-default a.nivo-prevNav::before {
  color: #999!important;
  float: left;
  font-size: 30px;
  height: 100%;
  position: relative;
  transition: all .5s ease 0s;
  content: "\f104";
  -webkit-transition: all .5s ease 0s;
  text-align: center;
  width: 50px;
  margin-right: 0;
  z-index: 99;
}
.theme-default a.nivo-nextNav::before {
  color: #999!important;
  float: right;
  font-size: 30px;
  height: 100%;
  margin: 0;
  content: "\f105";
  text-align: center;
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  width: 50px;
  z-index: 99;
  position: relative;
}
.theme-default a.nivo-prevNav {
  left: -50px;
  opacity: 0;
}
.theme-default a.nivo-nextNav {
  opacity: 0;
  right: -50px;
}
.nivo-nextNav {
	right:0px;
}
#ybc-nivo-slider-wrapper:hover a.nivo-prevNav {
    opacity: 1;
    left: 0;
    /*background: #f4f4f4 !important*/
}
#ybc-nivo-slider-wrapper:hover a.nivo-nextNav {
    opacity: 1;
    right: 0;
    background: #f4f4f4 !important
}

.theme-default .nivoSlider .nivo-directionNav .nivo-prevNav .button_wrapper {
  display: block;
  float: left;
  height: 100%;
  left: 100%;
  margin-left: 0;
  max-height: 100%;
  min-height: 0;
  min-width: 130px;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  visibility: hidden;
}
.theme-default .nivoSlider .nivo-directionNav .nivo-nextNav .button_wrapper {
  display: block;
  float: left;
  height: 100%;
  margin-right: 0;
  max-height: 100%;
  min-height: 0;
  min-width: 100px;
  opacity: 0;
  padding: 0;
  visibility: hidden;
  position: absolute;
  right: 100%;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
}
.theme-default .nivoSlider .nivo-directionNav .nivo-nextNav:hover .button_wrapper{
    margin-right: 10px;
  opacity: 1;
  visibility: visible;
}
.theme-default .nivoSlider .nivo-directionNav .nivo-prevNav:hover .button_wrapper {
  margin-left: 10px;
  opacity: 1;
  visibility: visible;
}
.theme-default .nivo-directionNav a {
  border: medium none;
  border-radius: 0 0 0 0;
  height: 50px;
  line-height: 50px;
  margin-top: 0;
  overflow: inherit;
  text-align: center;
  padding: 0;
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
  width: 50px;
}
.theme-default .nivoSlider .nivo-prevNav .button_wrapper > img {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  display: block;
  height: 80px;
  left: 0;
  margin-right: 10px;
  max-width: 150px;
  min-height: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
}
.theme-default .nivoSlider .nivo-nextNav .button_wrapper > img {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  display: block;
  height: 80px;
  left: auto;
  max-width: 150px;
  min-height: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
  background: none repeat scroll 0 0 #263238;
  font-weight: bold;
}
.theme-default {
  float: left;
  overflow: hidden;
  position: relative;
  width: 100%;
}
/**
 * YourBesCode caption 
 */
 
.ybc-caption-wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;

}
.ybc-caption-frame {
  height: 100%;
  margin: 0 auto;
  max-width: 1170px;
}
.ybc-caption-position-right{
    float: right;
}
.ybc-caption-position-left{
    float: left;
}
.ybc-caption-position-center{
    margin: 0 auto!important;
}
.caption1, .caption2, .caption3 {
  clear: left;
  display: block;
  float: left;
}
.caption-span{
    display:  inline-block;
}

.ybc-caption-text-left{
    text-align: left;
}
.ybc-caption-text-right{
    text-align: right;
}
.ybc-caption-text-center{
    text-align: center;
}
.ybc-caption-type {
  clear: left;
  position: relative;
}
.caption4 {
  color: #888;
  float: left;
  font-size: 14px;
  padding-top: 0;
  width: 100%;
}
.caption4 .caption-span h3,
.caption4 .caption-span h4 {
  font-size: 300%;
}
.caption3 {
  color: #000;
  line-height: 100%;
  padding: 15px 0 0;
  font-size: 14px;
}

.ybc-nivo-description{
    display: none;
}
.ybc-nivo-slider-wrapper{
    width: 100%;
    min-height: 200px;
}
.caption-span > p {
  clear: left;
  float: left;
  width: 100%;
}
.caption-span p span {
  float: left;
  font-style: italic;
  letter-spacing: 2px;
  width: 100%;
}
.caption-span h2 span {
  font-style: italic;
}
.caption-span p .button.button_custom span {
  font-family: Abel;
  font-size: 12px;
  font-style: normal;
  padding: 5px;
}
#ybc-nivo-slider-wrapper h2 {
  clear: left;
  float: left;
  margin: 0 0 15px;
  width: 100%;
  font-weight: bold;
  position: relative;
}
#ybc-nivo-slider-wrapper h2::before {
  background-color: #000;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 20%;
}
.caption-span .btn.btn-default {
  font-size: 16px;
  margin-top: 25px;
}
.caption-span p {
  line-height: 180%;
}
.ie8 .caption2 .caption-span {
  background: none repeat scroll 0 0 rgb(228, 224, 205);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  font-size: 15px;
}
#ybc-nivo-slider-loader {
  display: none;
}
.nivo-main-image {
  display: block !important;
  position: relative !important;
  width: 100% !important;
}
@media (max-width: 767px){
    .caption3 .caption-span {
      font-size: 9px;
    }
}

#ybc-nivo-slider .ybc-nivo-link{
    display: none;
}
#ybc-nivo-slider .ybc-nivo-link:first-child{
    display: block;
}
#ybc-nivo-slider-loader img{
    width: 50px;
}
#ybc-nivo-slider-wrapper > #ybc-nivo-slider-loader {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.ybc-nivo-slider-loader {
  background: none repeat scroll 0 0 #F5F5F5;
  display: table;
  float: left;
  height: 100%;
  width: 100%;
}
.ybc-nivo-slider-loader #ybc-nivo-slider-loader-img {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.caption-wrapper{
    display: none;
}
.caption-span a{
   /* display: inline!important;*/
}
.theme-default .nivo-controlNav {
  padding: 10px 30px 20px;
  text-align: right;
}
.theme-default .nivo-controlNav a {
  overflow: hidden;
  text-indent: 9999px;
}
#ybc-nivo-slider > a{
    display:none;
}
#ybc-nivo-slider > a:first-child{
    display:block;
}
.btn.button_nivo {
  font-size: 14px;
  padding: 10px 20px;
}

h1.caption2 {
  color: #666666;
  font-family: times new roman;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 0;
  margin-bottom: 53px;
  margin-top: 43px;
  padding-bottom: 0;
  text-transform: uppercase;
}
h1.caption2 {
    font-size: 48px;
    padding-bottom: 0px;
    margin-bottom: 45px;
    letter-spacing: 1px;
    font-family: times new roman;
    line-height: 40px;
    color: #666666;
    margin-top: 33px;
    text-transform: uppercase;
    font-weight: normal;
}
.ybc-caption-type .caption-span .home-default > h1:before {
    display: none;
}
.ybc-caption-type .caption-span .home-default > p a:before {
    display: none;
}
.ybc-caption-type .caption-span .home-default > p a{
    text-transform: uppercase;
        font-weight: normal;
}
.ybc-caption-type .caption-span h3,
.ybc-caption-type .caption-span h4 {
  color: #fff;
  font-family: inherit;
  font-size: 250%;
  font-weight: normal;
  line-height: 100%;
  margin: 0;
  padding-bottom: 5%;
  text-transform: uppercase;
}
.nivo-directionNav {
  height: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
}
.btn.button_nivo {
  background-color: transparent;
  color: #000;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  padding: 14px 25px;
  width: auto;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
}
/**/

.caption1 {
  color: #454545;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px 0 5px;
}
.caption2 {
  font-family: Montserrat;
  font-size: 45px;
  font-weight: bold;
  line-height: 100%;
  margin: 0;
  padding: 10px 0;
  color: #000;
}

    .caption2 .caption-span {
        text-transform: uppercase;
        white-space: nowrap;
        font-size: 25px;
    }

@media (min-width: 992px) and (max-width: 1199px){
    .ybc-caption-frame {
      max-width: 970px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .ybc-caption-frame {
      max-width: 750px;
    }
    .btn.button_nivo {
      padding: 10px 20px;
    }
    .caption-span p {
      margin-bottom: 0;
    }
}

@media (max-width: 767px){
    .btn.button_nivo {
      padding: 5px 10px;
    }
    .ybc-caption-frame {
      max-width: 100%;
      padding: 0 15px;
    }
    .theme-default .nivo-directionNav a {
      height: 40px;
      line-height: 40px;
      width: 30px;
    }
    .theme-default a.nivo-prevNav::before,
    .theme-default a.nivo-nextNav::before {
      width: 100%;
    }
    .theme-default a.nivo-prevNav::before,
    .theme-default a.nivo-nextNav::before{
        font-size: 16px;
    }
    .theme-default .nivoSlider .nivo-directionNav .nivo-nextNav .button_wrapper,
    .theme-default .nivoSlider .nivo-directionNav .nivo-prevNav .button_wrapper {
      min-width: 70px;
    }
    .nivo-nextNav .button_wrapper::before,
    .nivo-prevNav .button_wrapper::before {
      width: 2px;
    }
    .theme-default .nivoSlider .nivo-nextNav .button_wrapper > img,
    .theme-default .nivoSlider .nivo-prevNav .button_wrapper > img {
      padding: 2px;
      margin: 0;
    }
    .theme-default {
      margin-bottom: 30px;
    }
}
@media (max-width: 479px){
    .btn.button_nivo {
      font-size: 200%;
    }
    .caption-span > p {
      margin: 0;
    }
}

/************************-----------------------------------------------------***************************/
/************************---------------- ANIMATION FOR CAPTION --------------***************************/
/************************-----------------------------------------------------***************************/


.ybc-caption-frame .ybc-caption-type {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


/**---------------------------------------------------------------------------------------------------------**/
/*------------------------------------------- ANIMATION STYLE 1 ---------------------------------------------*/
/**---------------------------------------------------------------------------------------------------------**/


@keyframes rightspin {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -140deg);
    transform: rotate3d(0, 0, 1, -140deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
  }
  
  50% {
    -webkit-transform: rotate3d(0, 0, 1, -70deg);
    transform: rotate3d(0, 0, 1, -70deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0.2;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
  }
}

@-webkit-keyframes rightspin {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -140deg);
    transform: rotate3d(0, 0, 1, -140deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
  }
  
  50% {
    -webkit-transform: rotate3d(0, 0, 1, -70deg);
    transform: rotate3d(0, 0, 1, -70deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0.2;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transform-origin: right center 0;
    transform-origin: right center 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
  }
}

.ybc-caption-frame.animation-type-type1 .ybc-caption-type.caption1 {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
.ybc-caption-frame.animation-type-type1.fading-out .ybc-caption-type.caption1 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}


@keyframes ZoomInBigToSmall {
  0% {
    -webkit-transform: scale(10);
    transform: scale(10);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
    letter-spacing: 0px;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
    letter-spacing: 0;
  }
}

@-webkit-keyframes ZoomInBigToSmall {
  0% {
    -webkit-transform: scale(10);
    transform: scale(10);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
    letter-spacing: 0px;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
    letter-spacing: 0;
  }
}

.ybc-caption-frame.animation-type-type1 .ybc-caption-type.caption2 {
  -webkit-animation-name: ZoomInBigToSmall;
  animation-name: ZoomInBigToSmall;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.ybc-caption-frame.animation-type-type1.fading-out .ybc-caption-type.caption2 {
  -webkit-animation-name: zoomOutBig;
  animation-name: zoomOutBig;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown1 {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.6, .6, .6) translate3d(0, 60px, 0);
    transform: scale3d(.6, .6, .6) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.ybc-caption-frame.animation-type-type1 .ybc-caption-type.caption3 {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-animation-delay: 2.7s;
  animation-delay: 3s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  display: inline-block;
}
.ybc-caption-frame.animation-type-type4 .ybc-caption-type.caption3 {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  display: inline-block;
}


@keyframes zoomOutBig {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
  }

  to {
    transform: scale(10);
    -webkit-transform: scale(10);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutBig {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 1;
  }

  to {
    transform: scale(10);
    -webkit-transform: scale(10);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    opacity: 0;
  }
}
.ybc-caption-frame.animation-type-type1 .ybc-caption-type.caption4 {
  
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}


.ybc-caption-frame.animation-type-type1.fading-out .ybc-caption-type.caption3,
.ybc-caption-frame.animation-type-type4.fading-out .ybc-caption-type.caption3 {
  
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.ybc-caption-frame.animation-type-type1.fading-out .ybc-caption-type.caption4 {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.ybc-caption-frame.animation-type-type4 .ybc-caption-type.caption4 {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  display: block;
}
.ybc-caption-frame.animation-type-type4.fading-out .ybc-caption-type.caption4 {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  display: block;
}
@-webkit-keyframes flyOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
  }
    
  to {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
}

@keyframes flyOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
  }
    
  to {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
}
.ybc-caption-frame.animation-type-type4.fading-out .char_class {
  -webkit-animation-name: flyOutRight;
  animation-name: flyOutRight;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  display: inline-block;
}
/**---------------------------------------------------------------------------------------------------------**/
/*------------------------------------------- ANIMATION STYLE 2 ---------------------------------------------*/
/**---------------------------------------------------------------------------------------------------------**/


@-webkit-keyframes rotateInUpRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -120deg);
    transform: rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }
  
  80% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  
  90% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, -20px, 0px);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, -20px, 0px);
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -120deg);
    transform: rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }
  
  80% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  
  90% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, -20px, 0px);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, -20px, 0px);
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.ybc-caption-frame.animation-type-type2 .ybc-caption-type.caption3 {
  -webkit-animation-name: rotateInUpRight1;
  animation-name: rotateInUpRight1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@-webkit-keyframes slideInLeft1 {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft1 {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.ybc-caption-frame.animation-type-type2 .ybc-caption-type.caption4 {
  -webkit-animation-name: slideInLeft1;
  animation-name: slideInLeft1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@-webkit-keyframes rotateOutDownRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -120deg);
    transform: rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -120deg);
    transform: rotate3d(0, 0, 1, -120deg);
    opacity: 0;
  }
}



.ybc-caption-frame.animation-type-type2.fading-out .ybc-caption-type.caption3 {
  -webkit-animation-name: rotateOutDownRight1;
  animation-name: rotateOutDownRight1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@-webkit-keyframes slideOutLeft1 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
}

@keyframes slideOutLeft1 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
  }
  50% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
}

.ybc-caption-frame.animation-type-type2.fading-out .ybc-caption-type.caption4 {
  -webkit-animation-name: slideOutLeft1;
  animation-name: slideOutLeft1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@-webkit-keyframes rotateInDownRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  90% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, 20px, 0px);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, 20px, 0px);
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  90% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, 20px, 0px);
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0px, 20px, 0px);
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.ybc-caption-frame.animation-type-type2 .ybc-caption-type.caption1 {
  -webkit-animation-name: rotateInDownRight1;
  animation-name: rotateInDownRight1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@-webkit-keyframes rotateOutUpRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 120deg);
    transform: rotate3d(0, 0, 1, 120deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight1 {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 120deg);
    transform: rotate3d(0, 0, 1, 120deg);
    opacity: 0;
  }
}

.ybc-caption-frame.animation-type-type2.fading-out .ybc-caption-type.caption1 {
  -webkit-animation-name: rotateOutUpRight1;
  animation-name: rotateOutUpRight1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}



@-webkit-keyframes rubberBand1 {
  from {
    -webkit-transform: scale3d(.1, .1, .1);
    transform: scale3d(.1, .1, .1);
  }
  
  80% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  90% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .55, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand1 {
  
  from {
    -webkit-transform: scale3d(.1, .1, .1);
    transform: scale3d(.1, .1, .1);
  }
  
  80% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  90% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .55, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.ybc-caption-frame.animation-type-type2 .ybc-caption-type.caption2 {
  -webkit-animation-name: rubberBand1;
  animation-name: rubberBand1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}






@-webkit-keyframes swingOutRight {
  5% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  10% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  15% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  20% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes swingOutRight {
  5% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  10% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  15% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  20% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.ybc-caption-frame.animation-type-type2.fading-out .ybc-caption-type.caption2 {
  -webkit-animation-name: swingOutRight;
  animation-name: swingOutRight;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
















/**---------------------------------------------------------------------------------------------------------**/
/*------------------------------------------- ANIMATION STYLE 3 ---------------------------------------------*/
/**---------------------------------------------------------------------------------------------------------**/

@-webkit-keyframes bounceInDown1 {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown1 {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.ybc-caption-frame.animation-type-type3 .ybc-caption-type.caption1 {
  -webkit-animation-name: bounceInDown1;
  animation-name: bounceInDown1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.ybc-caption-frame.animation-type-type3.fading-out .ybc-caption-type.caption1 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}






















@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}


.ybc-caption-frame.animation-type-type3 .ybc-caption-type.caption2 {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}


@keyframes bounceOutUp2 {
  20% {
    -webkit-transform: translate3d(0px, 20px, 0px);
    transform: translate3d(0px, 20px, 0px);
  }

  25% {
    -webkit-transform: translate3d(0px, -20px, 0px);
    transform: translate3d(0px, -20px, 0px);
  }
  
  30%, 35% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes bounceOutUp2 {
  20% {
    -webkit-transform: translate3d(0px, 20px, 0px);
    transform: translate3d(0px, 20px, 0px);
  }

  25% {
    -webkit-transform: translate3d(0px, -20px, 0px);
    transform: translate3d(0px, -20px, 0px);
  }
  
  30%, 35% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.ybc-caption-frame.animation-type-type3.fading-out .ybc-caption-type.caption2 {
  -webkit-animation-name: bounceOutUp2;
  animation-name: bounceOutUp2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}












@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}


.ybc-caption-frame.animation-type-type3 .ybc-caption-type.caption3{
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.ybc-caption-frame.animation-type-type3 .ybc-caption-type.caption4 {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@-webkit-keyframes shakeOut {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shakeOut {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  5% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 0.9;
  }

  10% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 0.8;
  }
  15% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 0.7;
  }
  20% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 0.6;
  }
  25% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 0.5;
  }
  
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes shakeOut {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  5% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 0.9;
  }

  10% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 0.8;
  }
  15% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    opacity: 0.7;
  }
  20% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    opacity: 0.6;
  }
  
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
}
.ybc-caption-frame.animation-type-type3.fading-out .ybc-caption-type.caption3 {
  -webkit-animation-name: bounceOutUp2;
  animation-name: bounceOutUp2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.ybc-caption-frame.animation-type-type3.fading-out .ybc-caption-type.caption4 {
  -webkit-animation-name: bounceOutUp2;
  animation-name: bounceOutUp2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
@keyframes changecolor{
    0{
        
    }
    10%{
        
    }
    20%{
        
    }
    30%{
        
    }
    40%{
        
    }
    50%{
        
    }
    60%{
        
    }
    70%{
        
    }
    80%{
        
    }
    90%{
        
    }
    100%{
        
    }
}



@-webkit-keyframes flyInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
    
  50% {
    opacity: 1;
  }
    
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes flyInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  
  50% {
    opacity: 1;
  }
    
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}



.ybc-caption-frame.animation-type-type4 .char_class {
  -webkit-animation-name: flyInRight;
  animation-name: flyInRight;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  display: inline-block;
}















/**---------------------------------------------------------------------------------------------------------**/
/*---------------------------------------------- Class extra ------------------------------------------------*/
/**---------------------------------------------------------------------------------------------------------**/



.c1_cl_w .caption1.ybc-caption-type{
  color: #fff   
}


.c2_cl_w .caption2 *{
  color: #fff   
}
.c2_ls_10 .caption2, .c2_ls_10 .caption2 *{
  letter-spacing: 10px;  
}
.c2_ls_5 .caption2, .c2_ls_5 .caption2 *{
  letter-spacing: 5px;  
}
.c2_fs_20 .caption2,
.c1_fs_20 .caption1{
  font-size: 20px; 
  line-height: 20px;
}
.c2_fs_14 .caption2,
.c1_fs_14 .caption1{
  font-size: 14px; 
  line-height: 14px;
}
.c2_fs_40 .caption2,
.c1_fs_40 .caption1{
  font-size: 40px; 
  line-height: 40px;
}
.c2_fs_50 .caption2,
.c1_fs_50 .caption1{
  font-size: 50px; 
  line-height: 50px;
}
.c2_fs_60 .caption2,
.c1_fs_60 .caption1{
  font-size: 60px; 
  line-height: 60px;
}
.c2_fs_70 .caption2,
.c1_fs_70 .caption1{
  font-size: 70px; 
  line-height: 70px;
}

.cl_white .caption1, .cl_white .caption2, .cl_white .caption3, .cl_white .caption4 {
  color: #fff;
}
.bt_white .btn.button_nivo {
  background-color: #fff;
  border-color: #fff;
}


.bt_bg_blue .btn.button_nivo {
  background-color: #7bced0;
}
.bt_bg_red .btn.button_nivo {
  background-color: #de5842 ;
}
.bt_bg_black .btn.button_nivo {
  background-color: #000;
}
.bt_bg_brown .btn.button_nivo {
  background-color: #8c6954 ;
}
.bt_bg_pink .btn.button_nivo {
  background-color: #ff4ea4 ;
}
.bt_bg_yellow .btn.button_nivo {
  background-color: #c79b50;
}
.bt_bg_green .btn.button_nivo {
  background-color: #01B42E;
}
.bt_bg_orange .btn.button_nivo {
  background-color: #fa6900;
}


























































/* lnk on detail product page */
#wishlist_button{
  background-color: transparent;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  cursor: pointer;
  float: left;
  font-weight: 700;
  line-height: 30px;
  margin: auto;
  outline: 0 none;
  text-align: center;
  width: 30px;
  height: 30px;
}
#wishlist_button_nopop {
  border-radius: 0;
  cursor: pointer;
  float: left;
  height: auto;
  line-height: 28px;
  margin: auto;
  outline: 0 none;
  padding: 0 15px;
  text-align: center;
}
#wishlist_button:before {
    content: "\f08a";
    font: 400 15px/31px "FontAwesome";
    color: #000;
    width: 26px;
    text-align: center;
    display: inline-block;
    height: 30px;
    margin: 0;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px; 
}
#wishlist_button_nopop:before {
    content: "\f08a";
    display: inline-block;
    font-family: "FontAwesome";
    margin: 0;
    text-align: center;
}

/* wishlist block */
#wishlist_block #wishlist_block_list {
  margin: 0 0 20px 0; }
  #wishlist_block #wishlist_block_list dl {
    font-weight: 400; }
    #wishlist_block #wishlist_block_list dl.products.no-products {
      font-weight: 700;
      padding: 0 0 15px 0;
      border-bottom: 1px solid #d6d4d4; }
      #wishlist_block #wishlist_block_list dl.products.no-products dt {
        padding: 0;
        border-top: none; }
      #wishlist_block #wishlist_block_list dl.products.no-products dd {
        display: none; }
    #wishlist_block #wishlist_block_list dl.products {
      border-bottom: 1px solid #d6d4d4; }
      #wishlist_block #wishlist_block_list dl.products dt {
        padding: 20px 0 0;
        border-top: 1px solid #d6d4d4; }
      #wishlist_block #wishlist_block_list dl.products dd {
        padding: 0 0 20px 0; }
      #wishlist_block #wishlist_block_list dl.products dt.first_item {
        padding: 0;
        border-top: none; }
    #wishlist_block #wishlist_block_list dl dt {
      position: relative;
      padding-right: 0; }
    #wishlist_block #wishlist_block_list dl dd {
      margin: 0 0 0 24px; }
#wishlist_block .lnk .form-group {
  margin: 0 0 20px 0; }
  #wishlist_block .lnk .form-group select {
    max-width: 192px; }
    @media (max-width: 767px) {
      #wishlist_block .lnk .form-group select {
        width: 192px; } }
#wishlist_block .ajax_cart_block_remove_link {
  font-size: 14px;
  line-height: 14px;
  color: #d3d2d2;
  width: 14px;
  height: 14px;
  float: right; }
  #wishlist_block .ajax_cart_block_remove_link:hover {
    color: #515151; }
#wishlist_block .cart_block_product_name {
  width: 85%;
  display: inline-block;
  font-weight: bold; }
#wishlist_block .quantity-formated {
  float: left;
  margin: 0 5px 0 0;
  width: 15px; }

#wishlist_block_list .price {
  float: right; }

/* page in my account ************************************************************************* */
#mywishlist td.wishlist_delete a {
  font-size: 15px; }

/* wishlistLinkTop */
#module-blockwishlist-mywishlist #block-order-detail #hideSendWishlist {
  display: inline-block; }

#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list {
  border: 1px solid #dbdbdb;
  margin-bottom: 20px;
}
#block-order-detail #hideWishlist {
  margin-right: 10px;
  margin-top: 12px;
}
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a {
  border-right: 1px solid #dbdbdb;
  color: #333;
  display: inline-block;
  font-weight: bold;
  margin: 0;
  padding: 10px 15px;
}
    #module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a:hover {
      color: #515151; }

#module-blockwishlist-mywishlist .wishlistLinkTop li {
  float: left; }

#module-blockwishlist-mywishlist .wishlistLinkTop #hideSendWishlist {
  float: right; }

#module-blockwishlist-mywishlist .wishlistLinkTop #showBoughtProducts,
#module-blockwishlist-mywishlist .wishlistLinkTop #hideBoughtProductsInfos {
  display: none; }

/* wlp_bought ****************************************** */
/* wlp_bought_list */
ul.wlp_bought_list li {
  margin: 0 0 30px 0;
  /*> 992px*/
  /*768px x 991px*/ }
  ul.wlp_bought_list li .product_image {
    padding: 9px;
    border: 1px solid #d6d4d4;
    margin: 0 0 20px 0;
    max-width: 270px; }
  ul.wlp_bought_list li .product-name {
    margin: 0 0 10px 0;
    padding: 0 20px 0 0; }
    ul.wlp_bought_list li .product-name small {
      display: block;
      font-size: 11px; }
      ul.wlp_bought_list li .product-name small a {
        font-size: 11px; }
  ul.wlp_bought_list li .product_infos {
    position: relative; }
  ul.wlp_bought_list li .btn_action .btn {
    margin: 0 0 10px 0; }
  @media (min-width: 992px) {
    ul.wlp_bought_list li.first-in-line {
      clear: left; } }
  @media (min-width: 768px) and (max-width: 991px) {
    ul.wlp_bought_list li.first-item-of-tablet-line {
      clear: left; } }

.wishlistLinkTop .submit {
  margin: 0 0 30px 0; }

ul.wlp_bought_list li .lnkdel {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  font-size: 14px; }

#wishlist_button > .btn-group {
  width: 80%; }

ul.product_list.grid > li .product-container .functional-buttons .wishlist .popover {
  padding: 0;
  min-width: 160px; }
  ul.product_list.grid > li .product-container .functional-buttons .wishlist .popover .popover-content {
    padding: 0;
    min-width: 158px; }
  ul.product_list.grid > li .product-container .functional-buttons .wishlist .popover table {
    margin-bottom: 2px; }
    ul.product_list.grid > li .product-container .functional-buttons .wishlist .popover table td:hover {
      background-color: #cccccc;
      cursor: pointer; }

[id=wishlist_button] + .popover,
.wishlist_change_button + .popover {
  padding: 0;
  min-width: 150px; }
  [id=wishlist_button] + .popover .popover-content,
  .wishlist_change_button + .popover .popover-content {
    padding: 0; }
  [id=wishlist_button] + .popover table,
  .wishlist_change_button + .popover table {
    margin-bottom: 2px; }
    [id=wishlist_button] + .popover table td:hover,
    .wishlist_change_button + .popover table td:hover {
      background-color: #cccccc;
      cursor: pointer; }

/*# sourceMappingURL=blockwishlist.css.map */


/* button wishlist top*/
.bt_wishlist {
  float: right;
  padding-right: 15px;
}
.bt_wishlist > a {
  color: #424242;
  float: right;
  font-size: 16px;
  padding: 19px 15px;
}
@media (max-width: 479px){
    #module-blockwishlist-mywishlist .wishlistLinkTop li {
      float: left;
      width: 100%;
    }
    #module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a {
      border-right: medium none;
    }
}

#product_comments_block_extra {
  line-height: 18px;
  margin: 0;
  padding: 8px 0px 10px;
}
#product_comments_block_extra .comments_note {
  margin-bottom: 0;
  float: left;
}
#product_comments_block_extra .comments_note span,
#product_comments_block_extra .star_content {
    float: left;
    color: #333; 
}
#product_comments_block_extra .star_content {
    margin-top: 1px; 
}
#product_comments_block_extra div.star:after {
    content: "\f006";
    font-family: "FontAwesome";
    display: inline-block;
    color: #777676; 
}
#product_comments_block_extra div.star_on:after {
    content: "\f005";
    font-family: "FontAwesome";
    display: inline-block;
    color: #c79b50; 
}
  #product_comments_block_extra .comments_advices {
    clear: both; }
.comments_advices {
  float: left;
  padding-top: 0;
  margin-bottom: 0;
}
.comments_advices li {
  display: inline-block;
  line-height: 30px;
  float: left;
}
    @media (min-width: 768px) and (max-width: 991px) {
      .comments_advices li {
        display: block;
        line-height: 20px; } }
.comments_advices a {
    text-decoration: none;
    position: relative;
    margin-right: 8px;
    line-height: 20px;
    padding: 0;
    display: inline-block; 
}
    @media (min-width: 768px) and (max-width: 1199px) {
      .comments_advices a {
        float: none;
        line-height: 20px; } }
      @media (max-width: 1199px) {
        .comments_advices a:before {
          display: none; } }

.comments_advices a.reviews {
  margin-right: 9px;
  float: left;
}
      @media (min-width: 768px) and (max-width: 991px) {
        .comments_advices a.reviews {
          margin-right: 0;
          padding: 0;
          border: none; } }
.comments_advices a.open-comment-form {
  border-left: 1px solid;
  padding-left: 10px;
}
/* pop-in add grade/advice ********************************************************************* */
#fancybox-wrap {
  width: 585px; }

#fancybox-content {
  width: 585px;
  border-width: 0; }

#new_comment_form {
  overflow: hidden;
  color: #333;
  text-align: left; }
  #new_comment_form h2 {
    margin-bottom: 10px; }
  #new_comment_form .title {
    padding: 10px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    background: #333; }
  #new_comment_form ul.grade_content {
    list-style-type: none;
    margin: 0 0 20px 0; }
    #new_comment_form ul.grade_content li {
      width: 50%; }
    #new_comment_form ul.grade_content span {
      display: inline-block;
      padding: 0 10px;
      width: 150px;
      font-weight: bold; }
    #new_comment_form ul.grade_content .cancel {
      margin-right: 5px; }
  #new_comment_form .product {
    padding: 15px; }
    #new_comment_form .product img {
      border: 1px solid #d6d4d4; }
    #new_comment_form .product .product_desc {
      line-height: 18px;
      color: #666; }
      #new_comment_form .product .product_desc .product_name {
        padding: 10px 0 5px;
        font-size: 13px;
        color: #000; }
  #new_comment_form .new_comment_form_content {
    padding: 15px 25px 15px 15px;
    background: #f8f8f8; }
    @media (max-width: 767px) {
      #new_comment_form .new_comment_form_content {
        padding-left: 25px; } }
    #new_comment_form .new_comment_form_content .intro_form {
      padding-bottom: 10px;
      font-weight: bold;
      font-size: 12px; }
  #new_comment_form label {
    display: block;
    margin: 12px 0 4px 0;
    font-weight: bold;
    font-size: 12px; }
  #new_comment_form input,
  #new_comment_form textarea {
    padding: 0 5px;
    height: 28px;
    width: 100%;
    border: 1px solid #ccc;
    background: #fff; }
  #new_comment_form textarea {
    height: 80px; }
  #new_comment_form .submit {
    margin-top: 20px;
    padding: 0;
    font-size: 13px;
    text-align: right; }
  #new_comment_form #criterions_list {
    border-bottom: 1px solid #CCC;
    padding-bottom: 15px;
    list-style-type: none; }
    #new_comment_form #criterions_list li {
      margin-bottom: 10px; }
    #new_comment_form #criterions_list label {
      display: inline;
      float: left;
      margin: 0 10px 0 0; }
    #new_comment_form #criterions_list .star_content {
      float: left; }
  #new_comment_form #new_comment_form_footer {
    margin-top: 20px;
    font-size: 12px; }

/* TAB COMMENTS ******************************************************************************** */
#product_comments_block_tab {
  margin: 0 0 20px 0; 
}
#product_comments_block_tab div.comment {
    margin: 0 0 20px;
    padding-top: 14px;
    border-top: 1px solid #d6d4d4; 
}
#product_comments_block_tab div.comment:first-child {
  padding: 0;
  border: none; 
}
#product_comments_block_tab div.comment .comment_author {
  padding: 0;
  line-height: 18px; 
}
#product_comments_block_tab div.comment .comment_author span {
    font-weight: bold;
    float: left;
}
#product_comments_block_tab div.comment .comment_author .star_content {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 10px; 
}
#product_comments_block_tab div.comment .comment_details {
  margin-top: 10px;
  overflow: hidden;
  padding-left: 0px;
}
@media (max-width: 991px) {
    #product_comments_block_tab div.comment .comment_details {
      border-left: none; 
    }
    #product_comments_block_tab div.comment .comment_details ul {
        list-style-type: none;
        margin: 0; 
    }
    #product_comments_block_tab div.comment .comment_details ul li {
        padding: 2px 0 2px; 
    }
    #product_comments_block_tab div.comment .comment_details ul li:before {
        font-family: "FontAwesome";
        content: "\f0da";
        color: #333;
        margin-right: 8px; 
    } 
}
  #product_comments_block_tab div.star:after {
    content: "\f006";
    font-family: "FontAwesome";
    display: inline-block;
  }
  #product_comments_block_tab div.star_on:after {
    content: "\f005";
    font-family: "FontAwesome";
    display: inline-block;
  }
  #product_comments_block_tab .comment_author_infos {
    clear: both;
    padding-top: 9px; }
#product_comments_block_tab .comment_author_infos strong {
  color: #333;
  display: block;
  float: left;
}
    #product_comments_block_tab .comment_author_infos em {
      color: #adadad; }
#product_comments_block_tab a {
  font-weight: bold;
  text-decoration: none;
  font-weight: normal;
  margin-top: 0;
}
  #product_comments_block_tab span.report_btn {
    cursor: pointer; }
  #product_comments_block_tab span.report_btn:hover {
    text-decoration: underline; }

.fl {
  float: left; }

.fr {
  float: right; }


@media (max-width: 767px){
    #new_comment_form > form {
      padding: 0 15px 0 5px ;
    }
    #new_comment_form .new_comment_form_content, #new_comment_form .product {
      background-color: transparent;
      padding: 0;
    }
}
/*# sourceMappingURL=productcomments.css.map */


li.ybc-widget-item i::before, li.ybc-widget-item i::after {
  background-color: #f4f4f4;
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-right: 15px;
  text-align: center;
  text-indent: 0;
  width: 50px;
}
.ybc-widget-ybc-custom-2 .ybc-widget-description {
  font-family: Montserrat;
  margin-top: 10px;
}
.ybc-widget-ybc-custom-2 .ybc-widget-description-content {
  display: inline-block;
  padding-right: 10px;
  text-align: left;
  text-transform: uppercase;
}
.ybc-widget-ybc-custom-2 .ybc-widget-item-content {
  display: flex;
  white-space: nowrap;
}
.ybc-widget-display-top-column .ybc-widget-item {
  float: left;
  padding: 0 15px;
}
.ybc-widget-ybc-custom-5 .ybc-widget-title {
  font-size: 19px;
}
.ybc-widget-ybc-custom-4 .ybc-widget-item li ul li {
  border-top: 1px solid #f4f4f4;
  float: left;
  width: 100%;
}
.ybc-widget-ybc-custom-4 .ybc-widget-item li ul {
  background-color: #fff;
  border: 1px solid #f4f4f4;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: translate3d(-50%, 0px, 0px);
  -webkit-transform: translate3d(-50%, 0px, 0px);
  visibility: hidden;
  width: 250px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 42;
}
.ybc-widget-ybc-custom-4 .ybc-widget-item li:hover > ul{
    visibility: visible;
    opacity: 1;
}
.ybc-widget-ybc-custom-4 .ybc-widget-item li ul li a {
  padding: 0 20px;
}
.bt_color:after {
  content: "\f101";
  font-family: FontAwesome;
  padding-left: 3px;
  transition: all 0.35s;
    -webkit-transition: all 0.35s;
}
.bt_color:hover:after {
  padding-left: 6px;
}
.ybc-widget-ybc-custom-5 .ybc-widget-description > h4 {
  color: #454545;
  float: left;
  font-size: 14px;
  font-weight: normal;
  margin: 15px 0 11px;
  text-transform: uppercase;
  width: 100%;
}
.ybc-widget-ybc-custom-5 li.ybc-widget-item p {
  float: left;
  width: 100%;
  margin-bottom: 16px;
  line-height: 23px;
  color: white;
}
.ybc-widget-ybc-custom-5 .ybc-widget-description {
  font-size: 14px;
}
.ybc-widget-item img {
  float: left;
  margin-right: 0;
  max-width: 100%;
  transition: all 0.7s ease 0s;
  -webkit-transition: all 0.7s ease 0s;
}
.ybc-widget-ybc-custom-5 .ybc-widget-item-content {
  backface-visibility: hidden;
  perspective: 500px;
}
.ybc-widget-ybc-custom-5 .ybc-widget-item-content:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.ybc-widget-item a > img {
  width: 100%;
}
.ybc-widget-display-right-column-product {
  float: left;
  width: 100%;
}
.ybc-widget-ybc-custom-4 {
  float: left;
  margin: 0;
}
.ybc-widget-ybc-custom-4 .ybc-widget-description li {
  display: inline-block;
  float: left;
  font-size: 12px;
  line-height: 42px;
  margin-right: 24px;
  position: relative;
}
.ybc-widget-ybc-custom-4 .ybc-widget-item {
  float: left;
  max-width: 100%;
}
.ybc-widget-display-top {
  float: left;
  margin: 10px 0;
  width: 100%;
}
.home_widget_top_column .ybc-widget-item-content:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.ybc-widget-display-top-column .ybc-widget-item img {
  float: left;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}
.ybc-widget-display-top-column .ybc-widget-item:nth-child(3) {
  width: 33.333%;
}
.ybc-widget-title {
  font-size: 14px;
  font-weight: bold;
  margin: 12px 0 13px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ybc-widget-display-top-column {
  margin-bottom: 0;
}
.home_widget_top_column {
  margin-bottom: 30px;
}
#hook_home .ybc-widget-item {
  float: left;
  padding: 0 5px 0 15px;
  width: 33.333%;
}
.ybc-widget-display-home .ybc_widget_content_hook {
  background-color: #fff;
  float: left;
  padding-right: 15px;
  width: 100%;
}
.ybc-widget-display-home {
  clear: left;
  float: left;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}
.ybc-widget-display-home .ybc-widget-title {
  color: #666;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 20px;
  text-transform: uppercase;
}
.block_content h4 {
  float: left;
  width: 100%;
}
.ybc-widget-ybc-custom-6 .block_content .ybc-widget-item {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.block_content .ybc-widget-item img {
  float: left;
  margin-right: 10px;
}
.ybc-widget-ybc-footer-links .ybc-widget-title {
  float: left;
  font-size: 13px;
  margin-bottom: 0;
  padding-right: 15px;
}
.ybc-widget-ybc-footer-links .ybc-widget-description li {
  margin-right: 10px;
}
.ybc-widget-ybc-footer-links .ybc-widget-description li:last-child {
  border-right: none;
}
.ybc-widget-ybc-footer-links .ybc-widget-description a {
  border-radius: 0;
  float: left;
  height: 30px;
  line-height: 12px;
  overflow: hidden;
  padding: 0;
  text-transform: capitalize;
  width: 30px;
}
.ybc-widget-ybc-footer-links li span {
  float: left;
  text-indent: 999px;
  width: 100%;
}
.ybc-widget-ybc-footer-links li span i {
  background-color: #8a8a8a;
  border: medium none;
  float: left;
  font-size: 16px;
  height: 100%;
  line-height: 28px;
  text-indent: 0;
  width: 100%;
  color: #e0e0e0;
  border-radius: 0;
}
.ybc-widget-ybc-footer-links .ybc-widget-description {
  clear: left;
  float: left;
}
.ybc-widget-ybc-ybcpaymentlogo-hook .ybc-widget-description {
  clear: left;
  float: left;
  margin-top: 10px;
}
.ybc-widget-ybc-ybcpaymentlogo-hook .ybc-widget-description p {
  margin-bottom: 0;
}
.ybc-widget-ybc-footer-links li {
  display: inline-block;
  float: left;
}
.ybc-widget-ybc-footer-links {
  float: left;
  margin-bottom: 5px;
  margin-top: 10px;
}
.footer_bottom_left {
  float: left;
}
#usefull_link_block li {
  float: left;
  margin: 0 20px 0 0;
}
.ybc-widget-display-left-column-product {
  float: left;
  width: 100%;
}
.ybc-widget-ybc-display-home, .ybc-widget-ybc-display-home.owl-carousel {
  display: block;
  float: left;
  width: 100%;
  margin: 0;
}
.ybc_custom_slider .ybc-widget-ybc-display-home .owl-item {
  padding: 0;
  margin-top:10px;
}
.ybc-widget-item {
  position: relative;
}
.ybc-widget-ybc-custom-5 .ybc-widget-item > img {
  position: absolute;
  right: 0;
}
.ybc-widget-ybc-display-home h4 {
  color: #000;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 12px;
  margin-top: 0;
  text-transform: uppercase;
}
.ybc-widget-ybc-display-home .ybc-widget-description {
  height: 100%;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  top: 0;
  width: 68%;
}
.ybc_widget_link_img {
  backface-visibility: hidden;
  float: left;
  height: 100%;
  perspective: 500px;
  width: 100%;
}
.ybc-widget-ybc-display-home .ybc-widget-item a > img {
  float: right;
  width: 60%;
}
.ybc-widget-ybc-display-home .ybc-widget-item {
  display: block;
  float: left;
  position: relative;
  width: 100%;
}
.ybc-widget-ybc-display-home .table {
  height: 100%;
  margin: 0;
}
.ybc-widget-ybc-display-home .content h4 span {
  font-size: 18px;
  font-weight: normal;
}
.ybc-widget-ybc-display-home .content > p {
  font-size: 18px;
}
.ybc-widget-ybc-display-home .button.button_custom {
  margin-top: 10px;
  padding: 5px 15px;
}
.ybc-widget-ybc-custom-2 {
  float: left;
  margin-bottom: 0;
  margin-left: 2%;
  margin-top: 25px;
  width: 64%;
}
.ybc-widget-item-content {
  position: relative;
  width: 100%;
}
.ybc-widget-ybc-custom-5 {
  float: left;
  margin: 0;
  width: 100%;
}
.ybc-widget-ybc-custom-3 .ybc-widget-subtitle {
  margin-bottom: 20px;
  margin-top: -6px;
  text-transform: uppercase;
}
.ybc-widget-ybc-custom-5 .ybc-widget-subtitle {
  font-family: Montserrat;
  font-size: 12px;
  line-height: 21px;
  padding: 9px 2px 5px;
  position: absolute;
  right: 15px;
  text-align: center;
  width: 42px;
  z-index: 1;
}
.ybc-widget-ybc-custom-5 .ybc_links_page_home {
  float: left;
  position: relative;
  width: 100%;
}
.ybc-widget-display-home .ybc-widget-item-content {
  padding: 125px 0 95px;
}
.ybc-widget-item-wrap::before {
  
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.ybc-widget-display-top-column .ybc-widget-item-wrap::after {
  color: #fff;
  font-family: FontAwesome;
    font-size: 6px;
    height: 30px;
    left: 50%;
    line-height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.35s ease 0.15s;
    -webkit-transition: all 0.35s ease 0.15s;
    -moz-transition: all 0.35s ease 0.15s;
    -ms-transition: all 0.35s ease 0.15s;
    -o-transition: all 0.35s ease 0.15s;
    vertical-align: middle;
    width: 30px;
    z-index: 3;
}
.ybc-widget-display-top-column .ybc-widget-item-wrap:hover::after {
    font-size: 30px;
    opacity: 1;
}
.ybc-widget-item-wrap:hover::before {
  background-color: rgba(207, 171, 110, 0.5);
  opacity: 1;
}
.ybc-widget-item-wrap {
  position: relative;
}
.ybc-widget-ybc-custom-5 .ybc-widget-description-wrapper {
  height: 100%;
  left: 0;
  padding: 8% 30px 0;
  position: absolute;
  text-align: left;
  top: 0;
}
.ybc-widget-ybc-custom-1 .ybc-widget-description-content, .ybc-widget-ybc-custom-3 .ybc-widget-description-content {
  left: 21.8%;
  position: absolute;
  top: 13px;
  width: 50%;
  z-index: 9;
}
.ybc-widget-ybc-custom-1 .ybc-widget-title,
.ybc-widget-ybc-custom-3 .ybc-widget-title {
  font-size: 18px;
}
.ybc-widget-ybc-custom-1 {
  clear: left;
  margin-bottom: 50px;
}
.ybc-widget-ybc-custom-3 {
  clear: left;
  margin-bottom: 50px;
}
.ybc-widget-display-footer .ybc-widget-title {
  font-weight: normal;
}
.caption4 .caption-span {
  float: left;
}
@media (max-width: 1199px){
    .ybc-widget-display-top-column .ybc-widget-item {
      width: 100%;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-title {
      font-size: 17px;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-description {
      font-size: 12px;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .ybc-layout-layout3 .ybc-widget-ybc-custom-2 .ybc_links_page_home {
      min-height: 200px;
    }
    .block_banner_home > h2 {
      margin-top: 2px;
    }
    .ybc-widget-ybc-custom-2 .ybc-widget-item:nth-child(n+3) {
      display: none;
    }
    .ybc-widget-ybc-custom-2 {
      width: 54%;
    }
    .ybc-widget-ybc-custom-2 .ybc-widget-item {
      width: 50%;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .ybc-widget-description {
      clear: left;
      float: left;
      width: 100%;
    }
    .ybc-widget-title {
      margin-top: 5px;
      white-space: normal;
    }
    .ybc-widget-ybc-display-home h4 {
      font-size: 24px;
      margin-bottom: 0;
    }
    .ybc-widget-ybc-display-home .content > p {
      font-size: 16px;
      margin-bottom: 0;
    }
    .ybc-widget-ybc-footer-links .ybc-widget-description li {
      margin-right: 1px;
    }
    .ybc-layout-layout3 .ybc-widget-ybc-custom-2 .ybc_links_page_home {
      float: left;
      width: 100%;
      min-height: 220px;
    }
    .block_banner_home h1 {
      font-size: 35px;
      margin-top: 0;
    }
    .block_banner_home > h2 {
      font-size: 28px;
      margin-top: 2px;
    }
    .block_banner_home button {
      padding: 7px 20px;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-title {
      font-size: 15px;
    }
    .ybc-widget-ybc-custom-5 li.ybc-widget-item p {
      float: left;
      font-size: 12px;
      line-height: 15px;
      margin-bottom: 10px;
      width: 100%;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-description-wrapper {
      padding: 15px 20px;
    }
    .ybc-widget-ybc-custom-2 {
      display: none;
    }
    .ybc-widget-ybc-custom-1 .ybc-widget-description > p,
    .ybc-widget-ybc-custom-3 .ybc-widget-description > p {
      line-height: 16px;
      margin-bottom: 5px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .ybc-widget-ybc-custom-1 .ybc-widget-title, 
    .ybc-widget-ybc-custom-3 .ybc-widget-title {
      margin-bottom: 8px;
    }
    .ybc-widget-ybc-custom-3 .ybc-widget-subtitle {
      margin-bottom: 8px;
    }
}
@media (max-width:767px){
    #hook_home .ybc-widget-item {
      width: 100%;
    }
    .ybc-widget-ybc-custom-4 .ybc-widget-item li ul {
      background-color: #fff;
      border: 1px solid #f4f4f4;
      left: auto;
      max-width: 100%;
      opacity: 1;
      position: static;
      top: 100%;
      transform: none;
      visibility: visible;
      width: 250px;
      z-index: 42;
    }
    .ybc-widget-ybc-custom-2 {
      display: none;
    }
    .footer_bottom_left {
      float: left;
      width: 100%;
    }
    #payment_footer {
      float: left;
      margin-top: 10px;
    }
    .ybc-widget-ybc-display-home .ybc-widget-item img {
      width: 100%;
    }
    .ybc-widget-ybc-footer-links > li, .ybc-widget-ybc-footer-links {
      float: left;
      width: 100%;
    }
    .home_top_colum_layout3.home_widget_top_column {
      width: 100%;
    }
    .home_top_colum_layout3 .ybc-widget-display-top-column .ybc-widget-item img {
      float: left;
      width: 100%;
    }
    .ybc-layout-default .home_widget_top_column .container {
      padding: 0;
    }
    .home_widget_top_column {
      margin-bottom: 30px;
    }
    .ybc-widget-display-home {
      margin-top: 30px;
    }
    .ybc-widget-ybc-custom-5 {
      margin: 0 -5px;
    }
    .ybc-widget-title {
      line-height: 22px;
      white-space: normal;
    }
    div .ybc-widget-ybc-custom-5 li.ybc-widget-item {
      padding: 10px 0;
    }
    .ybc-widget-display-home .ybc-widget-item-content {
      padding: 80px 0;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-item {
      float: left;
      width: 33.33%;
    }
    .ybc-widget-ybc-custom-4 {
      float: left;
      margin: 0;
      opacity: 0;
      position: absolute;
      top: 100%;
      transition: all 0.5s ease 0s;
      -webkit-transition: all 0.5s ease 0s;
      visibility: hidden;
    }
    .ybc-widget-item img {
      width: 100%;
    }
    .ybc-widget-ybc-custom-1 {
      margin-bottom: 0px;
    }
    .ybc-widget-ybc-custom-1 .ybc-widget-description {
      display: none;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-item {
      float: left;
      width: 100%;
    }
    .ybc-widget-ybc-custom-1 .ybc-widget-title, .ybc-widget-ybc-custom-3 .ybc-widget-title {
      font-size: 15px;
      margin-top: 0;
    }
    .ybc-widget-ybc-custom-4 {
      background-color: #fff;
      border: 1px solid #f4f4f4;
      pointer-events: none;
      width: 150px;
    }
    .ybc-widget-ybc-custom-4 .ybc-widget-description li {
      border-bottom: 1px solid #f4f4f4;
      line-height: 40px;
      margin-right: 0;
      width: 100%;
    }
    .ybc-widget-ybc-custom-4 .ybc-widget-description li:last-child{
        border-bottom: none;
    }
    .ybc-widget-ybc-custom-4 .ybc-widget-item li a {
      float: left;
      padding: 0 10px;
      width: 100%;
    }
    .ybc-widget-ybc-custom-4.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .ybc-widget-display-footer .ybc-widget-title {
      margin-top: 0;
    }
    .footer-container #footer .ybc-widget-display-footer .ybc-widget-item {
      margin-bottom: 10px;
    }
    .footer-container #footer .ybc-widget-display-footer .ybc-widget-item:last-child {
      margin-bottom: 0px;
    }
    .ybc-widget-ybc-custom-5 li.ybc-widget-item p {
      margin-bottom: 8px;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-description-wrapper {
      padding: 2% 30px 0;
    }
    .ybc-widget-ybc-custom-5 li.ybc-widget-item p {
      line-height: 16px;
    }
    .ybc-widget-ybc-custom-4 .ybc-widget-item li ul li {
      border-top: medium none;
    }
}


@media (max-width: 479px) {
    .ybc-widget-display-top-column .ybc-widget-item,
    .ybc-widget-display-top-column .ybc-widget-item:last-child {
      width: 100%;
      margin-bottom: 15px;
      clear: left;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-item {
      width: 100%;
    }
    .ybc-widget-ybc-footer-links .ybc-widget-title {
      display: none;
    }
    .ybc-widget-ybc-display-home h4 {
      font-size: 16px;
      margin-bottom: 0;
      margin-top: 0;
    }
    .ybc-widget-ybc-display-home .content > p {
      font-size: 14px;
      margin-bottom: 1px;
    }
    .ybc-widget-display-top-column .ybc-widget-item:nth-child(2) {
      width: 100%;
    }
    .ybc-widget-display-top-column .ybc-widget-item img {
      float: left;
      width: 100%;
    }
    .ybc-widget-display-home .block_banner_home > p {
      display: none;
    }
    .block_banner_home > h2 {
      font-size: 15px;
    }
    .block_banner_home h1 {
      font-size: 18px;
    }
    .ybc-widget-ybc-custom-1 .ybc-widget-description-content, .ybc-widget-ybc-custom-3 .ybc-widget-description-content {
      display: none;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-title {
      font-size: 16px;
    }
    .ybc-widget-ybc-custom-5 .ybc-widget-description {
      font-size: 12px;
    }
    .ybc-widget-ybc-custom-5 li.ybc-widget-item p {
      margin-bottom: 5px;
    }
}

.ybc-theme-panel {
  color: #424242;
  font-family: Open Sans,Arial,"Times New Roman";
  font-size: 14px;
  left: -302px;
  line-height: 18px;
  position: fixed;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
  width: 300px;
  z-index: 999999;
}
.tc_comparison_msg{
    display: none;
}
.ybc-theme-panel-bg{
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    display: inline-block;
    cursor: pointer;
}
.ybc-theme-panel-bg-list li{
    list-style: none;
    display: inline-block;
    margin-right: 5px;
}
.ybc-theme-panel-wrapper {
  float: left;
  height: 100%;
  padding: 0 10px 10px;
  width: 100%;
}
.ybc-theme-panel-loading{
    position: absolute;
    z-index: 999;
    /*background: url(/Assets/client/themes/digitalstore/css/modules/ybc_themeconfig/img/blinder.png);*/
    width: 100%;
    height: 100%;
    display: none;
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
}
.ie8 .ybc-theme-panel-loading{
    background-color: #FFFFFF;
}
.ybc-theme-panel-loading-setting {
  display: table;
  height: 100%;
  width: 100%;
}
#footer .ybc-theme-panel-inner #ybc_tc_float_header li.active {
  background-color: #c79b50;
  pointer-events: none;
}
#ybc_tc_layout li.active,
#ybc_tc_skin > li.active {
  pointer-events: none;
}
#footer .ybc-theme-panel-inner #ybc_tc_float_header li {
  background-color: transparent;
  color: #fff;
  float: left;
  font-size: 13px;
  line-height: 24px;
  padding-bottom: 0;
  text-align: center;
  width: 50px;
}
#ybc_tc_float_header {
  background-color: #dfdfdf;
  border-radius: 3px;
  float: left;
  overflow: hidden;
}
.ybc-theme-panel-box.tc-reset > span:hover:before {
  color: #018BBA;
  transition: color 0.5s ease 0s;
}
.ybc-theme-panel-loading-setting {
  display: table;
  height: 100%;
  width: 100%;
}
.ybc-theme-panel-loading-setting > h2 {
  display: table-cell;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}
.ybc-theme-panel-loading-logo {
  border-radius: 50%;
  height: 65px;
  margin-bottom: 10px;
  padding: 10px;
  width: 65px;
}
.ybc-theme-panel-medium {
  background-color: #fff;
  border: 1px solid #c6c6c6;
  float: left;
  height: 100%;
  position: relative;
  width: 300px;
}
.ybc-theme-panel-bg.active{
    border: 1px solid #0160BF;
}
.ybc-theme-panel-bg:hover{
    border: 1px solid #ccc;
}
.ybc-theme-panel-btn {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 30px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  left: 298px;
  line-height: 21px;
  margin-top: -20px;
  padding: 0;
  position: absolute;
  top: 50%;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
}
.ie8 .ybc-theme-panel-btn{
    left: 100%;
    width: 115px;
}
.ybc-theme-panel-box {
  float: left;
  margin: 3px 0;
  width: 100%;
}
.ybc-theme-panel-box label {
  float: left;
  font-size: 13px;
  width: 115px;
}
.ybc-theme-panel-box select {
  float: left;
  font-size: 12px;
  min-width: 100px;
}
.ybc-theme-panel-inner {
  float: left;
  padding: 0;
  width: 100%;
}
.ybc-theme-panel-wrapper > h2 {
  background-color: #efefef;
  border-bottom: 1px solid #c6c6c6;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  margin: 0 -10px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}
.ybc-theme-panel-wrapper > .ybc-theme-panel-box.tc-separator {
  border-top: medium none;
}
.ybc-theme-panel-box.tc-separator h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
  text-transform: uppercase;
}
.ybc-theme-panel-box.tc-separator {
  border-top: 1px solid #dedede;
  float: left;
  width: 100%;
}
.ybc-theme-panel-btn:before {
  content: "\f013";
  font-family: FontAwesome;
  left: -24px;
    margin-right: 10px;
    position: absolute;
    top: -10px;
    z-index: 9;
}
.ybc-theme-panel-box.tc-reset > span:before {
  color: #888888;
  content: "\f01e";
  font-family: FontAwesome;
  font-size: 12px;
  font-weight: normal;
  margin-right: 7px;
}
.ybc-theme-panel-box.tc-reset > span {
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
}
.ybc-theme-panel-box.tc-reset > span:hover {
  color: #018BBA;
  transition: color 0.5s ease 0s;
}
.ybc-theme-panel-btn:hover:after {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.2);
  transition: background-color 0.5s ease 0s;
}

.ybc-theme-panel-box.tc-reset {
  border-top: 1px solid #DEDEDE;
  margin-bottom: 0;
  padding-top: 10px;
}
body.ybc-fontsize-small{
    font-size: small;
}
body.ybc-fontsize-medium{
    font-size: medium;
}
body.ybc-fontsize-large{
    font-size: large;
}

/*setting general font*/
body.ybc-gf-arial{
    font-family: Arial;
}
body.ybc-gf-default{
    font-family: Open Sans;
}
body.ybc-gf-verdana{
    font-family: verdana;
}
body.ybc-gf-tahoma{
    font-family: tahoma;
}
body.ybc-gf-times{
    font-family: Times New Roman;
}
body.ybc-gf-impact{
    font-family: impact;
}
body.ybc-gf-courier{
    font-family: Courier New;
}
/*end general font*/




/*setting background image*/

body.ybc-bg-img-default{
    background: #fff;
}
/*end setting background image*/

/*setting font-family heading font*/


body.ybc-hf-arial .title_cat, body.ybc-hf-arial .pb-center-column h1, 
body.ybc-hf-arial .ybc_htmltitle > span, body.ybc-hf-arial .page-heading,
body.ybc-hf-arial h2, body.ybc-hf-arial h3, body.ybc-hf-arial h4{
    font-family: Arial;
}

body.ybc-hf-default .title_cat, body.ybc-hf-default .pb-center-column h1, 
body.ybc-hf-default .ybc_htmltitle > span, body.ybc-hf-default .page-heading,
body.ybc-hf-default h2, body.ybc-hf-default h3, body.ybc-hf-default h4{
    font-family: Open Sans;
}
body.ybc-hf-verdana .title_cat, body.ybc-hf-verdana .pb-center-column h1, 
body.ybc-hf-verdana .ybc_htmltitle > span, body.ybc-hf-verdana .page-heading,
body.ybc-hf-verdana h2, body.ybc-hf-verdana h3, body.ybc-hf-verdana h4{
    font-family: verdana;
}
body.ybc-hf-tahoma .title_cat, body.ybc-hf-tahoma .pb-center-column h1, 
body.ybc-hf-tahoma .ybc_htmltitle > span, body.ybc-hf-tahoma .page-heading,
body.ybc-hf-tahoma h2, body.ybc-hf-tahoma h3, body.ybc-hf-tahoma h4{
    font-family: tahoma;
}
body.ybc-hf-times .title_cat, body.ybc-hf-times .pb-center-column h1, 
body.ybc-hf-times .ybc_htmltitle > span, body.ybc-hf-times .page-heading,
body.ybc-hf-times h2, body.ybc-hf-times h3, body.ybc-hf-times h4{
    font-family: Times New Roman;
}
body.ybc-hf-impact .title_cat, body.ybc-hf-impact .pb-center-column h1, 
body.ybc-hf-impact .ybc_htmltitle > span, body.ybc-hf-impact .page-heading,
body.ybc-hf-impact h2, body.ybc-hf-impact h3, body.ybc-hf-impact h4{
    font-family: impact;
}
body.ybc-hf-courier .title_cat, body.ybc-hf-courier .pb-center-column h1, 
body.ybc-hf-courier .ybc_htmltitle > span, body.ybc-hf-courier .page-heading,
body.ybc-hf-courier h2, body.ybc-hf-courier h3, body.ybc-hf-courier h4{
    font-family: Courier New;
}

/*end setting heading font*/

/* setting custom font*/

body.ybc-cf-arial .content_price, body.ybc-cf-arial .new-label, body.ybc-cf-arial .sale-label{
    font-family: Arial;
}
body.ybc-cf-default .content_price, body.ybc-cf-default .new-label, body.ybc-cf-default .sale-label{
    font-family: Open Sans;
}
body.ybc-cf-verdana .content_price, body.ybc-cf-verdana .new-label, body.ybc-cf-verdana .sale-label{
    font-family: verdana;
}
body.ybc-cf-times .content_price, body.ybc-cf-times .new-label, body.ybc-cf-times .sale-label{
    font-family: Times New Roman;
}
body.ybc-cf-impact .content_price, body.ybc-cf-impact .new-label, body.ybc-cf-impact .sale-label{
    font-family: impact;
}
body.ybc-cf-courier .content_price, body.ybc-cf-courier .new-label, body.ybc-cf-courier .sale-label{
    font-family: Courier New;
}
body.ybc-cf-abel .content_price, body.ybc-cf-abel .new-label, body.ybc-cf-abel .sale-label{
    font-family: Abel;
}
.ybc-skin li {
  border-radius: 50% 50% 50% 50%;
  cursor: pointer;
  float: left;
  height: 26px;
  margin: 5px 3px 5px 5px;
  overflow: hidden;
  padding: 0 !important;
  position: relative;
  width: 26px;
}
.ybc-skin{
    float: left;
    width: 100%;
}
.ybc-skin li:first-child{
    margin-left: 0;
}
#ybc_tc_skin > li.active:before {
  content: "\f00c";
}
#ybc_tc_skin > li::before {
  color: #fff;
  content: "";
  float: left;
  font-family: fontawesome;
  font-size: 15px;
  height: 100%;
  line-height: 26px;
  text-align: center;
  width: 100%;
}
#ybc_tc_layout li.active:before {
  content: "\f046";
}
#ybc_tc_layout li:before {
  content: "\f096";
  font-family: FontAwesome;
  margin-right: 6px;
  font-weight: normal;
}
.ybc-theme-panel-box li, .footer-container #footer .ybc-theme-panel-box #ybc_tc_skin li {
  cursor: pointer;
  line-height: 20px;
  margin: 0 3px;
  padding: 0 0 12px;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
}






@keyframes spinner{
    0 {transform: rotate(0deg);}
    50% {transform: rotate(180deg);}
    100% {transform: rotate(360deg);}
}
@-webkit-keyframes spinner{
    0 {transform: rotate(0deg);-webkit-transform: rotate(0deg);}
    50% {transform: rotate(180deg);-webkit-transform: rotate(180deg);}
    100% {transform: rotate(360deg);-webkit-transform: rotate(360deg);}
}
@-ms-keyframes spinner{
    0 {transform: rotate(0deg);-ms-transform: rotate(0deg);}
    50% {transform: rotate(180deg);-ms-transform: rotate(180deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg);}
}
@-o-keyframes spinner{
    0 {transform: rotate(0deg);-o-transform: rotate(0deg);}
    50% {transform: rotate(180deg);-o-transform: rotate(180deg);}
    100% {transform: rotate(360deg);-o-transform: rotate(360deg);}
}

.ybc-theme-panel-btn:before {
    -webkit-animation-name: spinner;
    animation-name: spinner;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


/*style for Floating Header*/
.ybc_custom_float_header.scroll_heading {
  box-shadow: 0 0 3px 0 #999;
  left: 0;
  min-width: 320px;
  top: 0;
  width: 100%;
}
#header .ybc_custom_float_header.scroll_heading #header_logo {
  float: left;
  margin-top: 20px;
  max-width: 16%;
  width: auto;
  margin-right: 0
}
#header .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper {
  margin-top: 12px;
  text-align: center;
  width: 75%;
}

.ybc_custom_float_header.scroll_heading #search_block_top{
    display:none;
}
.ybc_custom_float_header.scroll_heading .ybc-menu {
  text-align: center;
}

.ybc_custom_float_header.scroll_heading .ybc-menu .ybc-menu-columns-wrapper{
    text-align: left;
}
.ybc_custom_float_header.scroll_heading .custom_block_cart {
  margin-right: 0;
  margin-top: 12px;
  max-width: 9%;
  padding-right: 15px;
}
.ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
.ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
  font-size: 15px;
  padding: 8px 25px 20px 15px;
}
.ybc_custom_float_header.scroll_heading .ybc-menu-slide .ybc-menu-column-type-full .ybc-menu-columns-wrapper.ybc-mm-control-content {
  max-width: 100%;
}
.ybc_custom_float_header.scroll_heading .shopping_cart .ajax_cart_product_txt_s, 
.ybc_custom_float_header.scroll_heading .shopping_cart .ajax_cart_product_txt {
  display: none!important;
}

@media (min-width: 992px) and (max-width: 1199px){
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 8px 15px 20px;
    }
    .ybc_custom_float_header.scroll_heading .shopping_cart > a:first-child {
      display: block;
      font-size: 16px;
      overflow: hidden;
      padding: 0 0px 14px 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .ybc_custom_float_header.scroll_heading .ybc-menu > li {
      float: left;
    }
    #header .ybc_custom_float_header.scroll_heading #header_logo {
      float: left;
      margin: 12px 0 10px 25%;
      max-width: 100%;
      text-align: center;
      width: calc(100% - 50%);
    }
    #header .ybc_custom_float_header.scroll_heading .custom_block_cart {
      max-width: 25%;
    }
    #header .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper {
      left: 0;
      margin-top: 0;
      max-width: 23%;
      position: absolute;
      top: 0;
      width: 70px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-main-content {
      float: left;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      top: 100%;
      transition: all 0.35s ease 0s;
      -webkit-transition: all 0.35s ease 0s;
      height: 0;
      visibility: hidden;
      width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle, .ybc_custom_float_header.scroll_heading .ybc-menu-toggle {
      display: block;
      max-width: 100%;
      width: auto;
      min-height: 45px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle_icon {
      float: left;
      height: 100%;
      left: 0;
      margin-right: 0;
      margin-top: 11px;
      position: absolute;
      top: 0;
      width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle > span {
      float: left;
      height: 100%;
      text-indent: 999px;
      width: 100%;
      overflow: hidden;
      height: 53px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle .ybc-menu-button-toggle_icon .icon-bar {
      height: 3px;
      width: 28px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-main-content.active {
      opacity: 1;
      visibility: visible;
      height: auto;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu > li {
      float: left;
      width: 100%;
    }
    
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 8px 25px 20px 0;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-slide li:hover .ybc-menu-columns-wrapper {
      border: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-layout-light.ybc-menu-skin-custom .ybc-menu .ybc-menu-item {
      border-right: none;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-control.closed::before{
        content: "\f067";
        font-family: FontAwesome;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-control.opened:before{
        content: "\f068";
        font-family: FontAwesome;
    }
   .ybc_custom_float_header.scroll_heading .ybc-menu > li > .ybc-mm-control.closed:before,
   .ybc_custom_float_header.scroll_heading .ybc-menu > li > .ybc-mm-control.opened:before{
      float: left;
      font-size: 13px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      width: 40px;
    } 
}
@media (min-width: 768px){
    .ybc_custom_float_header.scroll_heading .ybc-menu > li {
      display: inline-block;
      float: none;
      margin: 0 auto;
    }
}
@media (max-width: 767px){
    #header .ybc_custom_float_header.scroll_heading #header_logo {
      float: left;
      margin-bottom: 11px;
      margin-left: 55px;
      margin-top: 15px;
      max-width: 100%;
      padding: 0 15px;
      text-align: center;
      width: calc(100% - 120px);
    }
    #header .ybc_custom_float_header.scroll_heading .ybc-menu-wrapper {
      left: 0;
      margin-top: 0;
      position: absolute;
      text-align: center;
      top: 0;
      width: 55px;
    }
    .ybc_custom_float_header.scroll_heading .custom_block_cart {
      max-width: 90px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle_icon {
      float: left;
      height: auto;
      left: 15px;
      position: absolute;
      top: 12px;
      width: 100%;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle > span {
      height: 57px;
      max-width: 100%;
      overflow: hidden;
      text-indent: 999px;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content {
      box-shadow: 0 1px 2px 0 #999;
      left: 10px;
      opacity: 0;
      overflow-y: auto;
      position: fixed;
      top: 45px;
      visibility: hidden;
      width: 300px;
      z-index: 9999;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content .ybc-menu .ybc-menu-item:first-child > .ybc-menu-item-link,
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-link, 
    .ybc_custom_float_header.scroll_heading .ybc-menu > .ybc-menu-item > .ybc-menu-item-no-link {
      padding: 10px 25px 10px 0;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content.active {
      visibility: visible;
      opacity: 1;
    }
    .ybc_custom_float_header.scroll_heading .ybc-mm-mobile-type-full #ybc-menu-main-content.active {
      left: 0;
      opacity: 1;
      visibility: visible;
      width: 100%;
    }
}
@media (max-width: 479px){
    .ybc_custom_float_header.scroll_heading .logo.img-responsive {
      width: 180px;
    }
    .ybc_custom_float_header.scroll_heading .ybc-menu-button-toggle > span {
      height: 48px;
    }
    .ybc_custom_float_header.scroll_heading .shopping_cart > a:first-child::before {
      font-size: 22px;
    }
    .ybc_custom_float_header.scroll_heading .custom_block_cart {
      margin-top: 6px;
    }
    .ybc_custom_float_header.scroll_heading #ybc-menu-main-content {
      top: 37px;
    }
    .ybc_custom_float_header.scroll_heading .shopping_cart > a:first-child {
      margin-top: 7px;
      overflow: inherit;
      padding: 0 10px 14px 16px;
      position: relative;
    }
}



/**/
/****************************************
*  animate
*****************************************/

.animated {
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-fill-mode: unset;
  -webkit-animation-fill-mode: unset;
  opacity: 1 !important;
}
.ybc_delay01{
    animation-delay: .1s;
    -webkit-animation-delay: .1s;
}
.ybc_delay02{
    animation-delay: .2s;
    -webkit-animation-delay: .2s;
}
.ybc_delay06{
    animation-delay: .6s;
    -webkit-animation-delay: .6s;
}
.ybc_delay03{
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
}
.ybc_delay04{
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}
.ybc_delay05{
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
}
.ybc_delay09{
    animation-delay: .9s;
    -webkit-animation-delay: .9s;
}
.ybc_delay12{
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}
.ybc_delay15{
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}
.ybc_delay18{
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
}
.animation {
   opacity: 0;
}
@-webkit-keyframes slideDown {
    0% {
        max-height: 0;
    }

    100% {
        max-height: 500px;
    }
}

@keyframes slideDown {
    0% {
        max-height: 0;
    }

    100% {
        max-height: 500px;
    }
}

.slideDown {
    overflow: hidden;
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(90px);
        transform: translateY(90px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(90px);
        -ms-transform: translateY(90px);
        transform: translateY(90px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/****************************************
*  and animate
*****************************************/





















