/***********************************************************************/
/**************************************************************************
AJAXCART
**************************************************************************/
@media screen and (max-width: 480px) {
  body.ajaxcart-is-visible {
    overflow: hidden; } }
.ajaxcartInner {
  padding-bottom: 10px;
  margin-bottom: 20px; }

.ajaxcartProduct {
  position: relative;
  padding: 10px 0; }
  .ajaxcartProduct:first-child {
    padding-top: 0; }

.ajaxcartProduct,
.cartRow {
  max-height: 500px;
  visibility: visible; }
  .ajaxcartProduct.is-removed,
  .cartRow.is-removed {
    overflow: hidden;
    opacity: 0;
    padding: 0;
    margin: -1px 0 0 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: "rotateX(-92deg)";
    -moz-transform: "rotateX(-92deg)";
    -ms-transform: "rotateX(-92deg)";
    -o-transform: "rotateX(-92deg)";
    backface-visibility: hidden;
    /* W3C */
    -webkit-backface-visibility: hidden;
    /* Safari & Chrome */
    -moz-backface-visibility: hidden;
    /* Firefox */
    -ms-backface-visibility: hidden;
    /* Internet Explorer */
    -o-backface-visibility: hidden;
    /* Opera */
    -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    max-height: 0; }

.ajaxcartRow {
  clear: both; }
  .ajaxcartRow:before, .ajaxcartRow:after {
    content: " ";
    display: table; }
  .ajaxcartRow:after {
    clear: both; }

.ajaxcartProductImage {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .ajaxcartProductImage img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.apQty, .ajaxcartQty {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible;
  backface-visibility: hidden;
  /* W3C */
  -webkit-backface-visibility: hidden;
  /* Safari & Chrome */
  -moz-backface-visibility: hidden;
  /* Firefox */
  -ms-backface-visibility: hidden;
  /* Internet Explorer */
  -o-backface-visibility: hidden;
  /* Opera */ }
  .apQty input[type="text"], .ajaxcartQty input[type="text"] {
    display: block;
    background: white;
    font-size: 14px;
    text-align: center;
    width: 100%;
    height: 35px;
    line-height: 30px;
    padding: 0px 25px;
    margin: 0;
    border: 1px solid #eaeaea; }

.apQtyAdjust, .ajaxcartQtyAdjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: -1px;
  border: 0 none;
  background: #f3f3f3;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 30px;
  height: 35px;
  font-size: 24px;
  font-weight: 400; }
  .apQtyAdjust:hover, .ajaxcartQtyAdjust:hover, .apQtyAdjust:focus, .ajaxcartQtyAdjust:focus {
    background-color: #eaeaea; }
  .apQtyAdjust:active, .ajaxcartQtyAdjust:active {
    background-color: #d1d1d1; }

.apQtyAdjustPlus, .ajaxcartQtyPlus {
  right: 0;
  border-left: 1px solid #eaeaea; }

.apQtyAdjustMinus, .ajaxcartQtyMinus {
  left: 0;
  border-right: 1px solid #eaeaea; }

.ajaxcartQty {
  display: inline-block;
  margin: 0; }
  .is-loading .ajaxcartQty {
    opacity: 0.5;
    -webkit-transition: none;
    transition: none; }

.ajaxcartModal {
  position: absolute;
  background-color: white;
  top: 170px;
  left: -200%;
  margin-left: -500px;
  width: 100%;
  max-width: 900px;
  height: auto;
  z-index: 99999999;
  visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 20px;
  -webkit-transition: "left 0s linear 700ms, box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms, margin-top 200ms ease-in-out";
  transition: "left 0s linear 700ms, box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms, margin-top 200ms ease-in-out"; }
  @media only screen and (max-height: 645px) {
    .ajaxcartModal {
      top: 70px; } }
  @media screen and (max-width: 768px) {
    .ajaxcartModal {
      max-width: 90%; } }
  @media screen and (max-width: 480px) {
    .ajaxcartModal {
      position: fixed;
      top: 0;
      bottom: 0;
      margin: 0 !important;
      max-height: none;
      max-width: none; } }
  .ajaxcartModal .ajaxcartContent {
    padding-left: 30px;
    padding-right: 30px; }
    @media screen and (max-width: 768px) {
      .ajaxcartModal .ajaxcartContent {
        padding-left: 15px;
        padding-right: 15px; } }
    @media screen and (max-width: 480px) {
      .ajaxcartModal .ajaxcartContent {
        padding-bottom: 60px;
        min-height: 100%; } }
  .ajaxcartModal.is-visible {
    visibility: visible;
    left: 50%;
    -webkit-transition: "left 0s linear, box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms, margin-top 200ms ease-in-out";
    transition: "left 0s linear, box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms, margin-top 200ms ease-in-out"; }
    @media screen and (min-width: 769px) {
      .ajaxcartModal.is-visible {
        box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.25); } }
    @media screen and (max-width: 480px) {
      .ajaxcartModal.is-visible {
        left: 0; } }
  .ajaxcartModal .ajaxcartRow > div {
    padding-left: 20px; }
    .ajaxcartModal .ajaxcartRow > div:first-child {
      padding-left: 0; }
  .ajaxcartModal .ajaxcartProduct {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none; }
  .ajaxcartModal .updateCart {
    display: none !important; }
  .ajaxcartModal.no-transforms {
    border: 1px solid #eaeaea; }

.ajaxcartOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 99999998;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  background-color: #d3d3d3; }

@media screen and (min-width: 481px) {
  .is-visible ~ .ajaxcartOverlay {
    visibility: visible;
    -webkit-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    opacity: 0.8; }
    .lt-ie9 .is-visible ~ .ajaxcartOverlay {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; } }
.ajaxcartModal .ajaxcartContent {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  opacity: 0; }

.ajaxcartModal.is-visible .ajaxcartContent {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1; }

@media screen and (max-width: 768px) {
  .ajaxcartModal input[type="text"] {
    border-color: #eaeaea; }
  .ajaxcartModal .ajaxcartQtyAdjust {
    opacity: 1; } }

.sprite, .ajaxcartClose {
  display: block;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 0 0; }

.ajaxcartClose {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  border: 0 none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-color: transparent;
  background-position: center center;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkMzRUY2REVBNDY1QjExRTM4ODdCODU0OEQ4MDA1MjgwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkMzRUY2REVCNDY1QjExRTM4ODdCODU0OEQ4MDA1MjgwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzNFRjZERTg0NjVCMTFFMzg4N0I4NTQ4RDgwMDUyODAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzNFRjZERTk0NjVCMTFFMzg4N0I4NTQ4RDgwMDUyODAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7sdZ8fAAAAp0lEQVR42nSPQQ6CMBBFx4ZEj+DSY8BGt9SVwRP1QBDdULeygaN4BFzpn+Q3mZCW5DFk/uvQ2YUQfiIygYuUnzc4O7wW/QCxIEbmi8oNG23mgO03js0reDF4gCNry77mUpkpHvSgo7QHA7gnwW1+q8FKcbViTtbJB/Bl7Uty5BWe4MTa2aWTPJplbuDDmpYe04IzqBn4zbU8J2udHcUpI9oDmtd/AQYAX20mtnhTCxQAAAAASUVORK5CYII=);
  z-index: 999999999;
  -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .is-visible .ajaxcartClose {
    opacity: 0.8;
    filter: alpha(opacity=80);
    visibility: visible;
    -webkit-transition: opacity 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95) 200ms;
    transition: opacity 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95) 200ms; }
  .ajaxcartClose:hover {
    opacity: 1;
    filter: alpha(opacity=100); }

.ajaxcart h1 {
  padding: 0px;
  line-height: 30px; }
.ajaxcart .cart_header_labels {
  margin: 15px 0px;
  margin: 10px 0px 15px 0px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0px;
  border-top: 1px solid #eaeaea; }
.ajaxcart .list_product_cart {
  text-align: center;
  margin-bottom: 15px; }
.ajaxcart .product_name {
  margin: 0px 0px 5px;
  font-size: 14px;
  display: block;
  text-transform: none;
  letter-spacing: 0px;
  text-align: center; }
.ajaxcart small {
  display: block; }
.ajaxcart .note_item .control-label {
  font-weight: normal; }
@media screen and (max-width: 808px) and (min-width: 768px) {
  .ajaxcart .note_buton {
    padding: 0; }
    .ajaxcart .note_buton .btn {
      font-size: 12px; } }
@media screen and (max-width: 441px) {
  .ajaxcart .note_buton .btn {
    display: block;
    width: 100%;
    margin: 5px 0; } }
.ajaxcart .list_button_cart p {
  margin: 0px 0px 5px; }
.ajaxcart p.text-center {
  text-align: left; }

.cartTitle {
  margin: 0px 0px 30px;
  padding: 10px 0;
  font-size: 28px;
  color: #b0896c; }

#cart-page {
  margin-top: 30px;
  background: white;
  padding: 30px; }
  #cart-page h2 {
    margin: 0px;
    line-height: 50px; }
  #cart-page .cart-empty {
    text-transform: uppercase;
    font-size: 16px;
    margin: 0px;
    text-align: center; }
  #cart-page .cart-empty-continue {
    text-align: center;
    padding: 10px 0px;
    margin-bottom: 30px; }
  #cart-page .cart_header_labels {
    background-color: #b0896c;
    border: 1px solid #eaeaea;
    color: white; }
    #cart-page .cart_header_labels .label_item {
      padding-top: 10px;
      padding-bottom: 10px;
      border-right: 1px solid #eaeaea; }
      @media (max-width: 767px) {
        #cart-page .cart_header_labels .label_item {
          text-align: center; } }
      @media (max-width: 991px) and (min-width: 768px) {
        #cart-page .cart_header_labels .label_item {
          padding: 5px; } }
      #cart-page .cart_header_labels .label_item:last-child {
        border-right: 0px; }
  #cart-page .list_product_cart {
    border: 1px solid #eaeaea;
    border-top-color: transparent; }
    #cart-page .list_product_cart .cpro_item {
      padding-top: 10px;
      padding-bottom: 10px;
      border-right: 1px solid #eaeaea;
      min-height: 120px; }
      @media (max-width: 767px) {
        #cart-page .list_product_cart .cpro_item {
          min-height: auto;
          text-align: center; } }
      @media (max-width: 991px) and (min-width: 768px) {
        #cart-page .list_product_cart .cpro_item {
          padding: 5px; } }
      #cart-page .list_product_cart .cpro_item:last-child {
        border-right: 0px; }
      #cart-page .list_product_cart .cpro_item img {
        margin: 0px auto; }
      #cart-page .list_product_cart .cpro_item .js-qty {
        display: inline-block;
        vertical-align: middle; }
  #cart-page .list_button_cart {
    border: 1px solid #eaeaea;
    border-top: 0px;
    padding: 10px; }
    #cart-page .list_button_cart .note_cart {
      padding-top: 10px;
      padding-bottom: 10px; }
    @media (max-width: 991px) {
      #cart-page .list_button_cart .btn {
        margin-top: 10px; } }
  #cart-page .cart_navigation {
    margin: 15px 0px; }

.block-fullwidth .img-responsive {
  width: 100%; }

/**************************************************************************
CONTACT PAGE STYLES
**************************************************************************/
.contact-title {
  margin: 0;
  line-height: 23px; }
  .contact-title i {
    font-size: 23px;
    color: #c0c0c0;
    padding: 0 8px 0 0; }

.contact-form-box {
  padding: 0px;
  margin: 15px 0px 0px; }
  .contact-form-box .page-subheading {
    color: black;
    text-align: left;
    font-size: 45px; }
    .contact-form-box .page-subheading:before {
      width: 70px;
      left: 0;
      margin: 0; }
    .contact-form-box .page-subheading:after {
      width: 0; }
  .contact-form-box fieldset {
    padding: 0px; }
  .contact-form-box .col-md-3 {
    padding-left: 0; }
    @media (max-width: 991px) {
      .contact-form-box .col-md-3 {
        padding-right: 0; } }
  .contact-form-box .col-md-9 {
    padding-right: 0; }
    @media (max-width: 991px) {
      .contact-form-box .col-md-9 {
        padding-left: 0; } }
  .contact-form-box .form-group {
    margin-bottom: 30px; }
    .contact-form-box .form-group label {
      display: none; }
    .contact-form-box .form-group .form-control {
      font-size: 13px;
      background: #f4f4f4;
      border: none;
      box-shadow: none; }
  .contact-form-box #desc_contact0 {
    display: none; }
  .contact-form-box .submit {
    text-align: right; }
    .rtl .contact-form-box .submit {
      text-align: left; }
    .contact-form-box .submit .btn {
      padding: 6px 25px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .contact-form-box div.uploader span.filename {
      width: 114px; } }

.box-contact-info {
  padding: 0px;
  font-weight: 300;
  margin: 30px 0px 0px; }
  .box-contact-info.block .title_block {
    letter-spacing: 1px;
    background: #b0896c; }
  .box-contact-info .coninfo-des {
    font-size: 16px;
    color: black; }
    @media screen and (min-width: 991px) {
      .box-contact-info .coninfo-des {
        padding-right: 15px; } }
  .box-contact-info .page-subheading {
    margin-top: 30px;
    text-align: left; }
    .rtl .box-contact-info .page-subheading {
      text-align: right; }
  .box-contact-info ul {
    margin-top: 15px; }
    .box-contact-info ul > li {
      position: relative;
      padding: 10px 0px 10px 40px;
      font-family: Playfair Display;
      font-size: 14px; }
      .rtl .box-contact-info ul > li {
        padding: 10px 40px 10px 0px; }
      .box-contact-info ul > li:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 30px;
        height: 100%;
        line-height: 40px;
        font-family: "FontAwesome";
        font-size: 13px;
        color: black;
        text-align: center; }
        .rtl .box-contact-info ul > li:before {
          right: 0px;
          left: auto; }
      .box-contact-info ul > li.address:before {
        content: "\f041"; }
      .box-contact-info ul > li.phone:before {
        content: "\f095"; }
      .box-contact-info ul > li.email:before {
        content: "\f0e0"; }
      .box-contact-info ul > li.website:before {
        content: "\f0ac"; }

/**************************************************************************
BLOG PAGE And ARTICLE PAGE
**************************************************************************/
.blogTitle {
  margin: 0px 0px 30px;
  padding: 10px 0;
  font-size: 28px;
  color: black;
  text-transform: uppercase; }

.articleTitle {
  margin: 0px;
  padding: 10px 0;
  font-size: 28px;
  color: #666666; }

.blog-meta {
  padding: 6px 0;
  position: relative;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  display: block;
  color: black; }
  .blog-meta a {
    color: black; }
    .blog-meta a:hover {
      color: #666666; }
  .blog-meta > div {
    display: inline-block;
    vertical-align: middle; }
  .blog-meta .comment-meta {
    padding: 0px 10px; }

.blog-item {
  font-size: 13px;
  color: black; }
  .blog-item .blog-left {
    width: 14%;
    margin-top: 15px;
    padding: 10px 10px;
    color: white;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #b0896c;
    float: left; }
    .blog-item .blog-left .month {
      position: relative;
      display: block;
      padding-bottom: 8px;
      border-bottom: solid 1px #d8c4b6; }
    .blog-item .blog-left .day {
      display: block;
      padding-top: 8px; }
  .blog-item h3 {
    margin: 0px;
    padding: 10px 0; }
    .blog-item h3 a {
      font-weight: bold;
      font-size: 20px;
      text-transform: none;
      line-height: 20px;
      color: black; }
      .blog-item h3 a:hover {
        color: #b0896c; }
  .blog-item h4 {
    margin: 0px;
    padding: 0px; }
    .blog-item h4 a {
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      line-height: 25px;
      color: black; }
      .blog-item h4 a:hover {
        color: #b0896c; }
  .blog-item .rte {
    text-align: justify; }
  .blog-item .blog-shortinfo {
    margin: 0px;
    padding: 10px 0px 10px 20px;
    min-height: 60px;
    display: block;
    position: relative;
    width: 86%;
    float: left;
    line-height: 25px;
    min-height: 180px; }
    .blog-item .blog-shortinfo p {
      margin-top: 10px; }
  .blog-item .link {
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
    color: black;
    position: relative;
    display: inline-block; }
    .blog-item .link:hover {
      color: #b0896c; }
  .blog-item .btn-readmore {
    padding: 6px 0px; }

.blog-detail .imageFeatured {
  margin-bottom: 15px; }

#blog-listing .blog-item {
  margin: 0;
  text-align: left; }
  #blog-listing .blog-item img {
    margin-bottom: 20px; }

.blog-social {
  padding: 10px 0; }
  .blog-social .social-wrap > div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 30px;
    vertical-align: middle; }
    .rtl .blog-social .social-wrap > div {
      margin-left: 10px;
      margin-right: inherit; }
    @media (max-width: 400px) {
      .blog-social .social-wrap > div {
        margin-right: 4px; }
        .rtl .blog-social .social-wrap > div {
          margin-left: 4px;
          margin-right: inherit; } }

.blog-tags-bottom .icon-tag {
  position: relative;
  padding-left: 18px; }
  .rtl .blog-tags-bottom .icon-tag {
    padding-right: 18px;
    padding-left: inherit; }
  .blog-tags-bottom .icon-tag:before {
    content: "\f02c";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0; }
    .rtl .blog-tags-bottom .icon-tag:before {
      right: 0;
      left: auto; }
.blog-tags-bottom a {
  color: black; }
  .blog-tags-bottom a:hover {
    color: #b0896c; }

.listBlogTags {
  margin: 0px;
  padding: 0px; }
  .listBlogTags:before, .listBlogTags:after {
    content: " ";
    display: table; }
  .listBlogTags:after {
    clear: both; }
  .listBlogTags > li {
    float: left;
    margin: 0px 10px 10px 0px; }
    .rtl .listBlogTags > li {
      float: right; }
    .rtl .listBlogTags > li {
      margin: 0px 0px 10px 10px; }
    .listBlogTags > li > a {
      display: block;
      border: 1px solid #eaeaea;
      padding: 2px 8px;
      color: black; }
      .listBlogTags > li > a:hover {
        color: #b0896c; }

.sidebarBlog .listSidebar > li a {
  display: block;
  color: black; }
  .sidebarBlog .listSidebar > li a:hover {
    color: #b0896c; }
.sidebarBlog .listSidebar > li time {
  font-size: 13px;
  color: black; }
.sidebarBlog .block_content {
  font-size: 14px;
  color: black; }
.sidebarBlog .html_des {
  text-align: justify; }

.comment-item {
  padding: 12px 0px; }

.comment-wrap {
  overflow: hidden;
  background: none repeat scroll 0px 0px #FFF;
  border: 1px solid #eaeaea;
  padding: 20px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .comment-wrap .comment-meta {
    border-bottom: 1px solid #eaeaea;
    font-size: 11px;
    margin: -20px -20px 10px;
    padding: 10px 20px; }
  .comment-wrap .comment-content {
    font-size: 13px; }
    .comment-wrap .comment-content p {
      margin: 0px; }

.comment-link {
  background: none repeat scroll 0px 0px #F4F4F4;
  border-left: 1px solid #eaeaea;
  display: block;
  font-weight: bold;
  margin: -11px -20px -10px 0px;
  padding: 10px 20px;
  float: right; }
  .rtl .comment-link {
    float: left; }

.comment-form {
  padding-top: 10px; }
  .comment-form .control-label {
    padding-top: 6px;
    text-align: right;
    display: none; }
  .comment-form .form-group {
    margin-bottom: 30px; }
    .comment-form .form-group:before, .comment-form .form-group:after {
      content: "";
      display: table; }
    .comment-form .form-group:after {
      clear: both; }
    .comment-form .form-group.commentbody {
      margin-bottom: 10px; }
    .comment-form .form-group .form-control {
      border: none;
      box-shadow: none;
      background: #f4f4f4;
      font-size: 14px; }
  .comment-form .note_comment {
    font-style: italic;
    font-size: 13px; }
  .comment-form .btn {
    float: right;
    padding: 6px 20px 8px; }
    .rtl .comment-form .btn {
      float: left; }

.extra-blogs ul li {
  line-height: 25px; }

.blog-grid:after {
  content: '';
  display: block;
  clear: both; }

.blog-grid {
  margin: 0 -15px; }

.grid-sizer,
.grid-item {
  width: 33.333%;
  padding: 0 15px; }
  @media screen and (max-width: 991px) {
    .grid-sizer,
    .grid-item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .grid-sizer,
    .grid-item {
      width: 100%; } }

.grid-item {
  float: left; }

.grid-item img {
  display: block;
  max-width: 100%; }

/**************************************************************************
WISHLIST PAGE
**************************************************************************/
.wishlistTitle {
  margin: 0px 0px 30px;
  padding: 10px 0;
  font-size: 28px;
  color: #b0896c; }

.wishlist-page {
  background: white;
  padding: 30px 0; }

.wishlist-product {
  width: 100%;
  margin-bottom: 15px; }
  .wishlist-product thead {
    height: 40px;
    border: 1px solid #eaeaea; }
    .wishlist-product thead th {
      padding: 0px 10px;
      color: black;
      border-right: 1px solid #eaeaea; }
      .wishlist-product thead th:last-child {
        border-right: 0px; }
  .wishlist-product tbody tr {
    border: 1px solid #eaeaea; }
  .wishlist-product .no_product-wishlist {
    padding: 10px;
    text-align: center;
    display: block;
    width: 100%; }

/**************************************************************************
COLLECTIONS PAGE
**************************************************************************/
#list_collections {
  padding-top: 30px; }

.block_collection {
  margin-bottom: 70px; }
  .block_collection .collection-top {
    position: relative;
    margin: 0px;
    padding: 0px; }
    .block_collection .collection-top .view-collection {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      line-height: 40px;
      padding: 0px;
      margin: -20px 0px 0px -20px;
      background: rgba(255, 255, 255, 0.2); }
      .block_collection .collection-top .view-collection:before {
        content: "\f129";
        font-size: 14px;
        font-family: "FontAwesome";
        display: block;
        text-align: center; }
  .block_collection .collection-meta h3 {
    text-align: center;
    margin: 0px;
    line-height: 40px;
    font-size: 16px; }
  .block_collection .collection-meta .collection_products {
    text-align: center;
    color: gray;
    margin-bottom: 15px; }
  .block_collection .collection-meta .collection_desc {
    font-size: 12px;
    text-align: center;
    min-height: 40px;
    margin-bottom: 15px;
    padding: 0px 15px; }

.content_sortPagiBar {
  min-height: 50px;
  margin: 0 0 50px;
  clear: both; }
  .content_sortPagiBar #pagination {
    background: #f8f8f8;
    padding: 10px 15px; }
  .content_sortPagiBar .pagination {
    margin: 0px;
    float: left;
    list-style: none; }
    .content_sortPagiBar .pagination > li {
      float: left;
      padding: 0px 8px; }
      .content_sortPagiBar .pagination > li > a, .content_sortPagiBar .pagination > li span {
        font-size: 12px;
        color: black;
        border-color: transparent; }
        .content_sortPagiBar .pagination > li > a:hover, .content_sortPagiBar .pagination > li > a:focus, .content_sortPagiBar .pagination > li span:hover, .content_sortPagiBar .pagination > li span:focus {
          color: black;
          background: transparent;
          border: 1px solid #eaeaea; }
    .content_sortPagiBar .pagination .active > a, .content_sortPagiBar .pagination .active span {
      color: black;
      background: transparent;
      border: 1px solid #eaeaea; }
      .content_sortPagiBar .pagination .active > a:hover, .content_sortPagiBar .pagination .active > a:focus, .content_sortPagiBar .pagination .active span:hover, .content_sortPagiBar .pagination .active span:focus {
        background: transparent;
        color: black; }
    .content_sortPagiBar .pagination .pagination_previous > a, .content_sortPagiBar .pagination .pagination_previous span {
      position: relative;
      font-size: 0px; }
      .content_sortPagiBar .pagination .pagination_previous > a:before, .content_sortPagiBar .pagination .pagination_previous span:before {
        content: "Previous";
        font-weight: 300;
        font-size: 12px;
        color: black;
        display: block; }
    .content_sortPagiBar .pagination .pagination_next > a, .content_sortPagiBar .pagination .pagination_next span {
      position: relative;
      font-size: 0px; }
      .content_sortPagiBar .pagination .pagination_next > a:before, .content_sortPagiBar .pagination .pagination_next span:before {
        content: "Next";
        font-weight: 300;
        font-size: 12px;
        color: black;
        display: block; }

.content_scene_cat {
  margin-bottom: 15px; }
  .content_scene_cat .cat_desc {
    padding: 15px 0;
    background: white;
    color: black;
    font-size: 13px; }
    .content_scene_cat .cat_desc p {
      font-family: Playfair Display;
      font-size: 13px;
      color: black;
      margin: 0px; }

.category-heading {
  background: #f8f8f8;
  font-size: 11px;
  padding: 10px 15px;
  min-height: 50px;
  margin: 0 0 15px; }

.sortPagiBar label {
  font-weight: 300;
  line-height: 28px;
  margin: 0px;
  padding: 0px 10px; }
  @media screen and (max-width: 480px) {
    .sortPagiBar label {
      display: none; } }
.sortPagiBar #SortBy {
  height: 28px;
  border: 1px solid #eaeaea; }
.sortPagiBar .form-horizontal {
  text-align: right; }

.collection-view {
  text-align: left; }
  .collection-view .change-view {
    height: 28px;
    background: transparent;
    border: none;
    color: black;
    font-size: 18px; }
    .collection-view .change-view:hover, .collection-view .change-view.change-view--active {
      background: transparent;
      color: #b0896c; }
    .collection-view .change-view .fallback-text {
      display: none; }

.product_list.loading {
  position: relative; }
  .product_list.loading:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 5px;
    over-flow: hidden;
    display: block;
    z-index: 3;
    background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/loading.gif?v=2771537143351120706) no-repeat center center white;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.5);
    box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.5); }
  .product_list.loading:after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); }

/**************************************************************************
PANEL TOOLS
**************************************************************************/
#paneltool {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0px;
  right: -320px;
  left: auto;
  z-index: 1050;
  box-shadow: 0px 1px 3px #999;
  transition-duration: 0.2s;
  transition-property: left, right, top, bottom, width, margin;
  background: none repeat scroll 0px 0px #F5F5F5;
  border-right: 1px solid rgba(0, 0, 0, 0.2); }

.paneltool {
  position: fixed;
  top: 120px;
  transition: all 0.6s ease 0s;
  right: -325px;
  left: auto;
  border: 1px solid #CCC;
  box-shadow: 1px -1px 3px #888;
  z-index: 999; }
  .paneltool.active {
    right: 0px;
    left: auto;
    transition: all 0.6s ease 0s;
    color: #b0896c; }
  .paneltool .panelbutton {
    border-width: 1px 1px 1px 0px;
    border-style: solid solid solid none;
    border-color: #CCC #CCC #CCC #CCC;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    background: none repeat scroll 0% 0% #FFF;
    padding: 9px 11px;
    position: absolute;
    left: -40px;
    right: auto;
    top: 10px;
    cursor: pointer;
    box-shadow: 3px -1px 5px #888; }
    .paneltool .panelbutton img {
      width: 20px;
      height: 20px; }
  .paneltool .panelcontent {
    background: none repeat scroll 0% 0% #FFF;
    width: 320px;
    min-height: 210px; }
    .paneltool .panelcontent .panelinner {
      padding: 20px; }
      .paneltool .panelcontent .panelinner > span {
        margin-bottom: 10px;
        margin-top: 0;
        font-size: 15px;
        font-weight: bold;
        color: black;
        text-transform: uppercase; }
  .paneltool .group-input {
    margin: 15px 0px;
    border-top: 1px dashed #ebebeb; }
    .paneltool .group-input .control-label {
      text-transform: uppercase;
      text-align: left;
      font-size: 14px;
      font-weight: bold;
      padding: 6px 0px;
      margin: 0px;
      width: 100%;
      color: #848484; }
      .paneltool .group-input .control-label .fa {
        font-size: 20px;
        margin-right: 10px; }
    .paneltool .group-input .control-span {
      text-transform: uppercase;
      text-align: center;
      font-size: 13px;
      padding: 6px 0px;
      margin: 0px;
      width: 100%;
      display: block;
      color: #333; }
    .paneltool .group-input .float-control {
      width: 100%;
      text-align: center; }
    .paneltool .group-input .layout-control {
      width: 100%; }
    .paneltool .group-input .paneltool-update {
      width: 50%;
      float: left;
      font-size: 12px;
      color: #333;
      padding: 8px 6px; }
    .paneltool .group-input .dynamic-update-layout.selected, .paneltool .group-input .dynamic-update-header.selected {
      color: #666666;
      font-weight: bold; }
    .paneltool .group-input .dynamic-update-layout:hover, .paneltool .group-input .dynamic-update-header:hover {
      cursor: pointer; }

.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: inline-block;
  vertical-align: middle; }

.onoffswitch-checkbox {
  display: none; }

.onoffswitch-label {
  display: block !important;
  margin: 0px !important;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px; }

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s; }

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 35px;
  padding: 0;
  line-height: 35px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 20px;
  background-color: #34A7C1;
  color: #FFFFFF;
  text-align: left; }

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 20px;
  background-color: #EEEEEE;
  color: #999999;
  text-align: right; }

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 11px;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s; }

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0; }

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px; }

/**************************************************************************
SEARCH PAGE
**************************************************************************/
#search-page {
  background: white;
  padding: 30px;
  margin: 30px 0px 0px; }
  #search-page h1 {
    margin: 0px;
    padding: 30px 0px 20px;
    font-size: 20px; }
  #search-page .pro_search_row {
    margin-top: 50px; }

#search_block_page {
  padding: 0px;
  position: relative;
  display: block;
  margin: 30px 0px; }

#search_querry_page {
  display: inline;
  padding: 0px 50px 0px 15px;
  height: 35px;
  line-height: 35px;
  background: #FBFBFB;
  border-color: #666666;
  margin-right: 1px;
  border-radius: 0px; }
  .rtl #search_querry_page {
    padding: 0px 15px 0px 50px; }
  .rtl #search_querry_page {
    margin-left: 1px;
    margin-right: inherit; }

#search_button_page {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  padding: 0px;
  border-radius: 0px; }
  #search_button_page .fallback-text {
    display: none; }
  #search_button_page .fa {
    font-size: 18px; }

.search-bar {
  width: 60%;
  margin: 0px auto;
  position: relative; }

#ap-ajax-search {
  position: absolute;
  border: 1px solid #eaeaea;
  left: 0;
  right: 0;
  display: none;
  background: white;
  max-height: 450px;
  overflow: auto;
  z-index: 100; }
  #ap-ajax-search ul {
    margin-top: -1px; }
    #ap-ajax-search ul li {
      padding: 10px 15px; }

a a:hover, a a:focus {
  outline: none; }

.container {
  position: relative; }

.row.no-gutter {
  margin-left: 0px;
  margin-right: 0px; }

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0; }

.owl-row {
  margin-left: -15px;
  margin-right: -15px; }
  .owl-row .owl-item {
    padding: 0px 15px; }

/* ---End Header--- */
/* dropdown effect */
.popup-over {
  position: relative; }
  .popup-over .popup-title {
    padding: 15px 20px 16px 0; }
    .popup-over .popup-title .fa {
      font-size: 16px; }
    .popup-over .popup-title:after {
      position: absolute;
      top: 5px;
      content: "/";
      color: #DDD;
      font-size: 28px;
      right: 0; }
      .rtl .popup-over .popup-title:after {
        left: 0;
        right: auto; }
  .popup-over .popup-content {
    padding: 10px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dddddd;
    min-width: 160px;
    z-index: 9000;
    line-height: 25px; }
    .rtl .popup-over .popup-content {
      left: 0;
      right: auto; }
    .popup-over .popup-content a {
      color: black; }
      .popup-over .popup-content a:hover {
        color: #b0896c; }
  .popup-over:hover .popup-content {
    visibility: visible; }

.e-scale .dropdown-menu {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
.e-scale.popup-over:hover .dropdown-menu, .e-scale.open .dropdown-menu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.e-translate-left .popup-content {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(-200px, 0px);
  -ms-transform: translate(-200px, 0px);
  transform: translate(-200px, 0px);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
.e-translate-left.popup-over:hover .popup-content {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.e-translate-right .popup-content {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(200px, 0px);
  -ms-transform: translate(200px, 0px);
  transform: translate(200px, 0px);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
.e-translate-right.popup-over:hover .popup-content {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.e-translate-top .popup-content {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(0, 200px);
  -ms-transform: translate(0, 200px);
  transform: translate(0, 200px);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
.e-translate-top.popup-over:hover .popup-content {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.e-translate-down .popup-content {
  opacity: 0;
  filter: alpha(opacity=0);
  height: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
.e-translate-down.popup-over:hover .popup-content {
  opacity: 1;
  filter: alpha(opacity=100);
  height: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

.effect > a {
  position: relative;
  display: inherit;
  max-width: 100%; }
  .effect > a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .effect > a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .effect > a:hover:before, .effect > a:hover:after {
    width: 100%;
    height: 100%; }

.effect_banner a {
  position: relative;
  display: block;
  max-width: 100%; }
  .effect_banner a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.1);
    width: 0;
    height: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .effect_banner a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    width: 0;
    height: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .effect_banner a:hover:before, .effect_banner a:hover:after {
    width: 100%;
    height: 100%; }

.video-container {
  position: relative;
  padding-bottom: 56.25%; }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }

.btn-outline-inverse {
  color: black;
  background-color: white;
  border-color: #444040;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease; }
  .btn-outline-inverse:hover, .btn-outline-inverse:focus, .btn-outline-inverse:active, .btn-outline-inverse.active {
    color: white;
    background-color: #b0896c;
    border-color: #b0896c;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; }
  .open .btn-outline-inverse.dropdown-toggle {
    color: white;
    background-color: #b0896c;
    border-color: #b0896c; }
  .btn-outline-inverse:active, .btn-outline-inverse.active {
    background-image: none; }
  .open .btn-outline-inverse.dropdown-toggle {
    background-image: none; }
  .btn-outline-inverse.disabled, .btn-outline-inverse.disabled:hover, .btn-outline-inverse.disabled:focus, .btn-outline-inverse.disabled:active, .btn-outline-inverse.disabled.active, .btn-outline-inverse[disabled], .btn-outline-inverse[disabled]:hover, .btn-outline-inverse[disabled]:focus, .btn-outline-inverse[disabled]:active, .btn-outline-inverse[disabled].active, fieldset[disabled] .btn-outline-inverse, fieldset[disabled] .btn-outline-inverse:hover, fieldset[disabled] .btn-outline-inverse:focus, fieldset[disabled] .btn-outline-inverse:active, fieldset[disabled] .btn-outline-inverse.active {
    background-color: white;
    border-color: #444040; }
  .btn-outline-inverse .badge {
    color: white;
    background-color: black; }

.btn-outline {
  color: white;
  background-color: #b0896c;
  border-color: #b0896c;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease; }
  .btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
    color: #b0896c;
    background-color: black;
    border-color: black;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; }
  .open .btn-outline.dropdown-toggle {
    color: #b0896c;
    background-color: black;
    border-color: black; }
  .btn-outline:active, .btn-outline.active {
    background-image: none; }
  .open .btn-outline.dropdown-toggle {
    background-image: none; }
  .btn-outline.disabled, .btn-outline.disabled:hover, .btn-outline.disabled:focus, .btn-outline.disabled:active, .btn-outline.disabled.active, .btn-outline[disabled], .btn-outline[disabled]:hover, .btn-outline[disabled]:focus, .btn-outline[disabled]:active, .btn-outline[disabled].active, fieldset[disabled] .btn-outline, fieldset[disabled] .btn-outline:hover, fieldset[disabled] .btn-outline:focus, fieldset[disabled] .btn-outline:active, fieldset[disabled] .btn-outline.active {
    background-color: #b0896c;
    border-color: #b0896c; }
  .btn-outline .badge {
    color: #b0896c;
    background-color: white; }

.block .title_block {
  position: relative;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 400;
  background: transparent;
  color: black;
  text-transform: none;
  margin: 0px;
  padding: 10px 0px; }

.sidebar {
  overflow: hidden; }
  .sidebar .block {
    padding: 15px;
    border: 1px solid #eaeaea; }
    .sidebar .block .title_block {
      position: relative;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 16px;
      color: black;
      clear: both; }
      .sidebar .block .title_block:before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background: #b0896c; }
      .sidebar .block .title_block a {
        color: black; }
    .sidebar .block .block_content {
      padding: 20px 0;
      border: 1px solid transparent;
      background: white;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px; }
      .sidebar .block .block_content:before, .sidebar .block .block_content:after {
        content: " ";
        display: table; }
      .sidebar .block .block_content:after {
        clear: both; }

.rte a:hover {
  text-decoration: underline; }
.rte img {
  max-width: 100%;
  height: auto;
  margin: 0px auto;
  display: block; }
.rte p {
  font-size: 16px;
  line-height: 30px;
  color: black;
  font-weight: 300;
  text-align: justify; }

body.template-index #page {
  background: none; }
body.layout-boxed-lg {
  background: white; }
  body.layout-boxed-lg #page {
    max-width: 1200px;
    box-shadow: 0px 0px 5px #D5D5D5;
    margin: 0px auto;
    background: none repeat scroll 0% 0% #FFF;
    overflow: hidden; }
    body.layout-boxed-lg #page .container {
      max-width: 1140px; }
    body.layout-boxed-lg #page .caption-fullwidth {
      max-width: 100%; }
  body.layout-boxed-lg #header.navbar-fixed-top {
    width: 1200px;
    left: 50%;
    margin-left: -600px; }
  body.layout-boxed-lg .banner-html .block-html {
    padding: 1.1em 1em; }
  body.layout-boxed-lg .banner-html .title-html {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    font-family: Herr Von Muellerhoff;
    color: #b0896c;
    text-transform: none;
    margin-bottom: 0; }
  body.layout-boxed-lg .banner-html.banner-html1 .block-html {
    padding: 2.8em 1.2em; }
  body.layout-boxed-lg .banner-html .btn {
    margin-top: 18px; }
  body.layout-boxed-lg .popup-over .popup-title {
    padding: 13px; }
  body.layout-boxed-lg .btn-search,
  body.layout-boxed-lg .btn-menu {
    padding: 13px 15px; }
  body.layout-boxed-lg #search_block_top {
    width: 42px; }
  body.layout-boxed-lg .blockcart_top .heading {
    padding-left: 10px;
    padding-right: 10px; }
  body.layout-boxed-lg .slide-caption {
    width: 100%; }
    body.layout-boxed-lg .slide-caption .text_first {
      font-size: 40px; }

body.layout-boxed-md {
  background: white; }
  body.layout-boxed-md #page {
    max-width: 960px;
    box-shadow: 0px 0px 5px #D5D5D5;
    margin: 0px auto;
    background: none repeat scroll 0% 0% #FFF;
    overflow: hidden;
    padding: 0 10px; }
    body.layout-boxed-md #page .container {
      max-width: 940px; }
    body.layout-boxed-md #page .caption-fullwidth {
      max-width: 100%; }
  body.layout-boxed-md #header.navbar-fixed-top {
    width: 960px;
    left: 50%;
    margin-left: -480px; }
  body.layout-boxed-md .banner-html .block-html {
    padding: 0.6em 1em;
    margin-bottom: 10px; }
    body.layout-boxed-md .banner-html .block-html .title-html {
      font-size: 25px;
      margin: 10px 0; }
    body.layout-boxed-md .banner-html .block-html .btn {
      margin: 0; }
    body.layout-boxed-md .banner-html .block-html p {
      font-size: 12px; }
  body.layout-boxed-md .banner-html.banner-html1 .block-html {
    padding: 1.45em 1em;
    margin-bottom: 20px; }
    body.layout-boxed-md .banner-html.banner-html1 .block-html .btn {
      margin-top: 13px; }
  body.layout-boxed-md .slide-caption {
    width: 100%; }
    body.layout-boxed-md .slide-caption .text_first {
      font-size: 40px; }
  body.layout-boxed-md #apollo-menu .navbar-nav > li > a {
    padding-left: 20px;
    padding-right: 20px; }
  body.layout-boxed-md .popup-over .popup-title {
    padding: 13px; }
  body.layout-boxed-md .btn-search,
  body.layout-boxed-md .btn-menu {
    padding: 13px 15px; }
  body.layout-boxed-md #search_block_top {
    width: 42px; }
  body.layout-boxed-md .blockcart_top .heading {
    padding-left: 10px;
    padding-right: 10px; }

#page {
  -webkit-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  overflow: hidden; }

.page-heading {
  margin: 0px 0px 10px 0px;
  font-size: 24px;
  font-weight: 700;
  font-family: Montserrat;
  color: black;
  line-height: 30px; }

.page-wrap {
  margin-bottom: 30px; }

.errors {
  color: #C83A3A; }

@media (min-width: 991px) {
  .header-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99; } }
#header-main {
  background: transparent;
  padding: 25px 0 1px; }

.header-wrap {
  position: relative; }
  .header-wrap:before, .header-wrap:after {
    content: " ";
    display: table; }
  .header-wrap:after {
    clear: both; }
  .header-wrap .header-left {
    float: left;
    width: 25%; }
    .rtl .header-wrap .header-left {
      float: right; }

#header_logo {
  padding: 18px 0 32px;
  text-align: center; }
  #header_logo h1 {
    margin: 0px; }
  #header_logo a {
    margin: 0px auto;
    display: block;
    max-width: 100%; }
  #header_logo img {
    max-width: 100%; }

#topbar {
  font-size: 14px;
  background: #f8f8f8;
  color: black; }
  #topbar a {
    color: black; }
    #topbar a:hover, #topbar a:focus {
      color: #b0896c; }
  #topbar nav:before, #topbar nav:after {
    content: "";
    display: table; }
  #topbar nav:after {
    clear: both; }

.popup-over {
  position: relative; }
  .popup-over .dropdown-menu {
    display: block;
    visibility: hidden; }
  .popup-over:hover, .popup-over.open {
    cursor: pointer; }
    .popup-over:hover .dropdown-menu, .popup-over.open .dropdown-menu {
      visibility: visible; }

/* Footer */
#footer {
  color: #aaaaaa; }
  #footer a {
    color: #aaaaaa; }
    #footer a:hover {
      color: #b0896c; }

.footer-container .block .title_block {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  padding: 20px 0;
  color: white;
  text-transform: uppercase;
  margin-bottom: 13px;
  text-align: left; }
  .rtl .footer-container .block .title_block {
    text-align: right; }
  .footer-container .block .title_block:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background: #b0896c; }

#twitter_block {
  max-height: 250px; }

.footer-wrap.footer-top {
  margin-top: 50px;
  padding: 68px 0 5px;
  border-bottom: 1px solid #5c5c5c; }
.footer-wrap.footer-center {
  padding-top: 47px;
  padding-bottom: 40px; }
.footer-wrap .toggle-footer {
  padding: 0; }
  .footer-wrap .toggle-footer ul li {
    line-height: 20px; }
.footer-wrap .box-contact-footer ul > li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
  line-height: 23px; }
  .footer-wrap .box-contact-footer ul > li:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 100%;
    line-height: 28px;
    font-family: "FontAwesome";
    font-size: 14px; }
    .rtl .footer-wrap .box-contact-footer ul > li:before {
      right: 0px;
      left: auto; }
  .footer-wrap .box-contact-footer ul > li.address:before {
    content: "\f041"; }
  .footer-wrap .box-contact-footer ul > li.phone:before {
    content: "\f095"; }
  .footer-wrap .box-contact-footer ul > li.email:before {
    content: "\f0e0"; }
  .footer-wrap .box-contact-footer ul > li.website:before {
    content: "\f0ac"; }

.footer-html {
  line-height: 24px; }
  .footer-html p {
    margin-bottom: 11px; }
  .footer-html .contact-us {
    margin: 20px 0 0;
    padding: 0; }
    .footer-html .contact-us li {
      margin-bottom: 5px;
      display: flex; }
      .footer-html .contact-us li .fa {
        color: white;
        font-size: 15px;
        line-height: 25px;
        padding-right: 15px; }
        .rtl .footer-html .contact-us li .fa {
          padding-left: 15px;
          padding-right: inherit; }

.box-contact-footer .block_content {
  margin-top: 22px; }

.footer-nav {
  padding-top: 20px;
  padding-bottom: 10px; }

.logofooter {
  margin-bottom: 20px;
  clear: both; }

#powered p {
  color: #888; }

.header_user_info .popup-title .fa {
  margin-right: 5px; }
.header_user_info .setting-menu li:first-child a {
  border: none; }
.header_user_info .setting-menu li i {
  margin-right: 10px; }
.header_user_info .setting-menu li a {
  display: inline-block;
  margin: 7px 0;
  line-height: 13px; }
.header_user_info .dropdown-menu {
  top: 36px;
  margin: 0;
  padding: 0;
  left: auto;
  right: 0; }
  .header_user_info .dropdown-menu li > a {
    padding: 6px 20px;
    border-bottom: 1px solid black;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s; }
    .header_user_info .dropdown-menu li > a:hover {
      color: white !important;
      background: none repeat scroll 0 0 black; }

.links {
  margin: 0px;
  padding: 0px; }
  .links li {
    display: inline;
    margin: 0px;
    line-height: 40px; }
    .links li:last-child a {
      border-right: 0px; }
    .links li a {
      font-size: 13px;
      padding: 0px 10px;
      border-right: 1px solid #616161; }
      .links li a .fa {
        font-size: 14px; }
    .links li.fa, .links li.icon {
      margin-right: 10px; }
  .links.dropdown-menu li {
    display: block; }
    .links.dropdown-menu li a {
      margin: 0px; }

.wishlist-topbar {
  position: relative;
  padding: 15px 20px 16px 12px; }
  .wishlist-topbar:after {
    position: absolute;
    top: 5px;
    content: "/";
    color: #DDD;
    font-size: 28px;
    right: 0; }
    .rtl .wishlist-topbar:after {
      left: 0;
      right: auto; }
  .wishlist-topbar .fa {
    margin-right: 5px; }
  @media screen and (max-width: 480px) {
    .wishlist-topbar {
      display: none; } }

#block_currencies img {
  vertical-align: initial; }
#block_currencies .currencies li a.selected {
  color: #b0896c;
  font-weight: 600; }

.block_currencies {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .block_currencies .dropdown-menu {
    margin: 0;
    top: 100%;
    right: 0;
    left: 0; }
    .block_currencies .dropdown-menu li {
      padding: 2px 15px; }
      .block_currencies .dropdown-menu li > a {
        padding: 3px 0;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s; }
        .block_currencies .dropdown-menu li > a.selected, .block_currencies .dropdown-menu li > a:hover {
          color: #666666;
          background: transparent; }
  .block_currencies .dropdown-toggle .fa {
    margin-left: 8px; }
  .block_currencies .popup-content {
    left: 0; }

#first-currencies {
  margin: 0px; }
  #first-currencies li {
    margin: 0px;
    display: block; }
    #first-currencies li a {
      padding: 2px 8px; }
      #first-currencies li a img {
        width: 16px;
        height: 11px; }

.blockcart_top {
  float: right;
  position: relative;
  min-width: 125px;
  padding: 15px 0 16px 11px; }
  .rtl .blockcart_top {
    float: left; }
  @media screen and (max-width: 480px) {
    .blockcart_top {
      min-width: auto; } }
  .blockcart_top .title-cart {
    margin-right: 5px;
    float: left;
    position: relative;
    text-align: center; }
  .blockcart_top .cart-inner {
    color: #b0896c;
    font-weight: bold; }
    @media screen and (max-width: 480px) {
      .blockcart_top .cart-inner {
        display: none; } }
  .blockcart_top a {
    cursor: pointer;
    color: white; }
  .blockcart_top #CartCount {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    right: -9px; }
    .rtl .blockcart_top #CartCount {
      left: -9px;
      right: auto; }

.btn-search {
  position: absolute;
  top: 0;
  padding: 13px 20px;
  cursor: pointer;
  color: white;
  right: 0; }
  .btn-search a:hover {
    color: #b0896c; }

.close-overlay {
  z-index: 99999;
  position: relative;
  cursor: pointer;
  font-size: 26px;
  color: white;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  position: fixed;
  top: 30px;
  right: 35px; }
  .rtl .close-overlay {
    left: 35px;
    right: auto; }
  .close-overlay.active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); }

.over-layer {
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 60px;
  height: 60px;
  position: fixed;
  top: -60px;
  left: 50%;
  margin-left: -30px;
  z-index: 9998; }
  .rtl .over-layer {
    right: 50%;
    left: auto; }
  .rtl .over-layer {
    margin-right: -30px;
    margin-left: inherit; }
  .over-layer:before {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 51, 51, 0.98);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999; }
  .over-layer.active:before {
    -webkit-transform: scale(75);
    -moz-transform: scale(75);
    -ms-transform: scale(75);
    -o-transform: scale(75); }

.block-form {
  z-index: 9999;
  position: fixed;
  display: table;
  width: 100%;
  height: 100%;
  right: -20%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .block-form.active {
    right: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible; }

form#searchbox {
  margin-top: 23%; }
  form#searchbox input[type="search"]::-webkit-input-placeholder {
    color: #fefefe; }
  form#searchbox input[type="search"]::-moz-input-placeholder {
    color: #fefefe; }
  form#searchbox input[type="search"]::-ms-input-placeholder {
    color: white; }
  form#searchbox input[type="search"] {
    color: #fefefe; }
  form#searchbox input.input-search {
    padding: 0;
    width: 100%;
    height: 70px;
    max-width: inherit;
    font-size: 20px;
    color: #fefefe;
    font-weight: 400;
    padding: 0;
    border: none;
    border-bottom: 1px solid #858585;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
    .rtl form#searchbox input.input-search {
      float: right; }
    form#searchbox input.input-search:focus {
      -webkit-box-shadow: none;
      box-shadow: none; }
  form#searchbox .search_button {
    height: 70px;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
    color: #fefefe;
    background-color: transparent;
    text-transform: uppercase;
    position: absolute;
    border: none;
    right: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: left; }
    .rtl form#searchbox .search_button {
      left: 0;
      right: auto; }
    .rtl form#searchbox .search_button {
      float: right; }
    form#searchbox .search_button span {
      display: none; }
    form#searchbox .search_button:hover {
      color: #b0896c;
      border: none; }

.icon-select {
  position: relative; }
  .icon-select:before {
    content: "\f107";
    color: black;
    background: white;
    font-family: "FontAwesome";
    right: 0px;
    top: 0px;
    position: absolute;
    pointer-events: none;
    background: white;
    line-height: 36px;
    width: 20px;
    height: 100%;
    text-align: center; }

#social_block h4 {
  text-align: center;
  display: none; }
#social_block .block_content ul {
  margin-bottom: 0px;
  padding: 0; }
  @media screen and (min-width: 481px) {
    #social_block .block_content ul {
      text-align: right; } }
  #social_block .block_content ul li {
    display: inline-block;
    text-align: center;
    padding: 0;
    margin-right: 2%; }
    #social_block .block_content ul li a {
      width: 30px;
      height: 30px;
      line-height: 30px;
      display: inline-block;
      color: black;
      font-size: 16px;
      font-weight: 600;
      z-index: 1;
      text-transform: uppercase;
      position: relative; }
      #social_block .block_content ul li a:before {
        font-family: "FontAwesome";
        background-color: transparent;
        position: absolute;
        width: 100%;
        content: "";
        height: 100%;
        left: 0;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        border-radius: 50px;
        -webkit-transition: box-shadow 0.3s ease 0s;
        transition: box-shadow 0.3s ease 0s; }
      #social_block .block_content ul li a span {
        display: none; }
    #social_block .block_content ul li:hover a {
      color: white; }
      #social_block .block_content ul li:hover a:before {
        background-color: #666666;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-transform: 0.5s ease 0s;
        -moz-transform: 0.5s ease 0s;
        -ms-transform: 0.5s ease 0s;
        -o-transform: 0.5s ease 0s;
        -webkit-box-shadow: 0 0 0 4px #f2f2f2;
        box-shadow: 0 0 0 4px #f2f2f2; }
      #social_block .block_content ul li:hover a span {
        color: white;
        position: inherit; }

.tags_block {
  padding: 30px 35px 35px;
  margin-top: 30px;
  border-bottom: 1px solid #515151;
  border-top: 1px solid #515151; }
  .tags_block .title_block {
    color: white;
    text-transform: none;
    margin-bottom: 35px;
    font-size: 20px;
    text-align: left; }
    .rtl .tags_block .title_block {
      text-align: right; }
  .tags_block .block_content ul {
    padding: 0; }
    .tags_block .block_content ul li {
      display: inline-block;
      list-style: none; }
      .tags_block .block_content ul li a {
        color: white;
        background-color: #515253;
        padding: 4px 10px;
        margin-bottom: 8px;
        font-size: 12px;
        font-family: "Raleway", sans-serif;
        display: inline-block;
        margin-right: 3px; }
        .rtl .tags_block .block_content ul li a {
          margin-left: 3px;
          margin-right: inherit; }
        .tags_block .block_content ul li a:hover {
          background-color: #b0896c; }

.btn-menu {
  cursor: pointer;
  padding: 13px 20px;
  font-size: 16px;
  float: right; }
  .rtl .btn-menu {
    float: left; }

.menu-rightsidebar {
  position: fixed;
  z-index: 2222;
  display: block;
  top: 0;
  height: 100%;
  width: 340px;
  background-color: #272727;
  right: 0px;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s; }
  .rtl .menu-rightsidebar {
    left: 0px;
    right: auto; }
  @media (max-width: 480px) {
    .menu-rightsidebar {
      width: 300px; } }

.show-menu-block {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
  .rtl .show-menu-block {
    webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.bg-over-lay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
  visibility: hidden;
  cursor: pointer;
  will-change: opacity;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s; }

.show-over-lay {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible; }

.home-top {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media screen and (max-width: 992px) {
    .home-top .widget-banner img {
      width: 100%; } }

@media screen and (min-width: 992px) {
  .block-banner-bt {
    margin-top: -50px; } }

.banner-html.text-right {
  text-align: right; }
.banner-html .title-html {
  font-size: 48px;
  font-weight: 400;
  font-family: Herr Von Muellerhoff;
  color: #b0896c;
  text-transform: none;
  margin-bottom: 0; }
.banner-html .title-html-1 {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Montserrat; }
  @media screen and (max-width: 1104px) and (min-width: 992px) {
    .banner-html .title-html-1 {
      margin-bottom: 5px; } }
  .banner-html .title-html-1:before, .banner-html .title-html-1:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }
  .banner-html .title-html-1:before {
    height: 1px;
    width: 150px;
    background-color: #b0896c; }
  .banner-html .title-html-1:after {
    width: 10px;
    height: 10px;
    bottom: -5px;
    background-color: #b0896c;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg); }
.banner-html .btn {
  padding: 10px 25px;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  font-family: Montserrat; }
.banner-html p {
  line-height: 25px; }
.banner-html.banner-html1 .block-html {
  text-align: center;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px; }
  @media screen and (min-width: 992px) {
    .banner-html.banner-html1 .block-html {
      padding-top: 81px; } }
.banner-html.banner-html1 .btn {
  margin-top: 18px;
  padding: 11px 25px 10px; }

@media screen and (min-width: 992px) {
  .banner-bt {
    float: right;
    padding-top: 80px; }
    .rtl .banner-bt {
      float: left; } }

.sidebar > div {
  margin-bottom: 30px; }
  .sidebar > div:first-child {
    margin-top: 0px; }

.listSidebar {
  margin: 0px;
  padding: 0px; }
  .listSidebar > li {
    padding: 5px 0px; }
    .listSidebar > li a {
      color: black; }
      .listSidebar > li a:hover {
        color: #b0896c; }

.sidebarCategories {
  margin: 0px;
  padding: 0px; }
  .sidebarCategories li {
    line-height: 30px;
    position: relative;
    /* &:before{
       content: "\f105";
       font-family: $font-icon;
       left: 0;
       color: #999;
       position: absolute;
       top: 5px;
     } */ }
    .sidebarCategories li a {
      position: relative;
      display: block;
      font-weight: bold;
      text-transform: uppercase;
      color: #272727;
      font-size: 12px; }
  .sidebarCategories .apolloQty {
    position: absolute;
    width: 30px;
    top: 0;
    right: 0;
    text-align: right; }
    .rtl .sidebarCategories .apolloQty {
      left: 0;
      right: auto; }
    .rtl .sidebarCategories .apolloQty {
      text-align: left; }

.catalog_filters {
  border-bottom: 1px solid #eaeaea;
  padding: 6px 0;
  color: #272727; }
  .catalog_filters:last-child {
    border-bottom: 0px; }
  .catalog_filters .catalog_subtitle_heading {
    font-weight: bold; }

.catalog_filter_ul {
  margin: 0px;
  padding: 0px; }
  .catalog_filter_ul:before, .catalog_filter_ul:after {
    content: " ";
    display: table; }
  .catalog_filter_ul:after {
    clear: both; }
  .catalog_filter_ul > li {
    margin: 0;
    padding: 0px 15px; }
    .catalog_filter_ul > li input {
      display: none; }
    .catalog_filter_ul > li a {
      position: relative;
      display: block;
      font-size: 14px;
      padding: 6px 15px;
      color: #272727; }
      .catalog_filter_ul > li a:before {
        position: absolute;
        content: "\f096";
        top: 6px;
        left: 0px;
        font-family: FontAwesome;
        font-size: 12px; }
        .rtl .catalog_filter_ul > li a:before {
          right: 0px;
          left: auto; }
      .catalog_filter_ul > li a:hover:before {
        content: "\f046";
        color: #b0896c; }
    .catalog_filter_ul > li .catalog_color {
      display: block;
      padding: 0px;
      border: 2px solid #eaeaea; }
      .catalog_filter_ul > li .catalog_color:before {
        display: none; }
      .catalog_filter_ul > li .catalog_color:hover {
        border-color: #b0896c;
        -webkit-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22);
        box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22); }
    .catalog_filter_ul > li.active-filter a:before {
      content: "\f046";
      color: #b0896c; }
    .catalog_filter_ul > li.active-filter .catalog_color {
      border-color: #b0896c;
      -webkit-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22);
      box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22); }
  .catalog_filter_ul.color-group {
    padding: 10px 0 0; }
    .catalog_filter_ul.color-group:before, .catalog_filter_ul.color-group:after {
      content: " ";
      display: table; }
    .catalog_filter_ul.color-group:after {
      clear: both; }
    .catalog_filter_ul.color-group > li {
      float: left;
      margin-right: 10px;
      margin-bottom: 10px;
      padding: 0px; }
      .rtl .catalog_filter_ul.color-group > li {
        float: right; }
      .rtl .catalog_filter_ul.color-group > li {
        margin-left: 10px;
        margin-right: inherit; }

.socialsharing_product {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
  padding-bottom: 15px; }
  .socialsharing_product ul {
    margin: 0px;
    padding: 0; }
    .socialsharing_product ul li {
      display: inline-block;
      vertical-align: middle; }
      .socialsharing_product ul li .btn {
        padding: 5px 10px;
        font-size: 14px;
        color: #666; }
        .socialsharing_product ul li .btn span {
          display: none; }
      .socialsharing_product ul li .btn-twitter:hover {
        color: #00AAF0; }
        .socialsharing_product ul li .btn-twitter:hover i {
          color: #00AAF0; }
      .socialsharing_product ul li .btn-facebook:hover {
        color: #435F9F; }
        .socialsharing_product ul li .btn-facebook:hover i {
          color: #435F9F; }
      .socialsharing_product ul li .btn-google-plus:hover {
        color: #E04B34; }
        .socialsharing_product ul li .btn-google-plus:hover i {
          color: #E04B34; }
      .socialsharing_product ul li .btn-linkedin:hover {
        color: #435F9F; }
        .socialsharing_product ul li .btn-linkedin:hover i {
          color: #435F9F; }
      .socialsharing_product ul li .btn-pinterest:hover {
        color: #CE1F21; }
        .socialsharing_product ul li .btn-pinterest:hover i {
          color: #CE1F21; }

.owl-controls {
  position: absolute;
  top: -40px;
  left: 0px;
  right: 0px;
  width: 100%;
  text-align: center;
  font-size: 0px; }
  .owl-controls .owl-prev, .owl-controls .owl-next {
    font-size: 0px;
    height: 30px;
    line-height: 28px;
    width: 30px;
    text-shadow: none;
    text-align: center;
    font-family: Playfair Display;
    background-color: transparent;
    border: 1px solid #eaeaea;
    color: black;
    margin: 0px; }
    @media (max-width: 480px) {
      .owl-controls .owl-prev, .owl-controls .owl-next {
        top: 14px; } }
    .owl-controls .owl-prev:before, .owl-controls .owl-next:before {
      content: "";
      font-family: "FontAwesome";
      font-size: 14px;
      display: block; }
    .owl-controls .owl-prev:hover, .owl-controls .owl-prev:focus, .owl-controls .owl-next:hover, .owl-controls .owl-next:focus {
      background: #b0896c;
      color: white; }
  .owl-controls .owl-prev {
    right: 50px;
    left: auto; }
    .owl-controls .owl-prev:before {
      content: "\f104"; }
  .owl-controls .owl-next {
    right: 15px;
    left: auto; }
    .owl-controls .owl-next:before {
      content: "\f105"; }

.carousel-control {
  font-size: 0px;
  background: white;
  border: 2px solid #444040;
  -webkit-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s; }
  .carousel-control:before {
    position: absolute;
    font-weight: 300;
    font-family: "FontAwesome";
    font-size: 20px;
    line-height: 28px;
    width: 32px;
    height: 32px; }
  .carousel-control.left {
    left: -100%;
    background: none; }
    .rtl .carousel-control.left {
      right: -100%;
      left: auto; }
    .carousel-control.left:before {
      content: "\f104";
      right: 0; }
  .carousel-control.right {
    right: -100%;
    background: none; }
    .rtl .carousel-control.right {
      left: -100%;
      right: auto; }
    .carousel-control.right:before {
      content: "\f105";
      left: 0; }
  .carousel-control:hover, .carousel-control:focus {
    background: #b0896c;
    border-color: #b0896c; }
    .carousel-control:hover:before, .carousel-control:focus:before {
      color: white; }

.block .carousel-control, .home_blogs .carousel-control {
  display: none; }
  .block .carousel-control.left, .home_blogs .carousel-control.left {
    left: 0; }
    .rtl .block .carousel-control.left, .rtl .home_blogs .carousel-control.left {
      right: 0;
      left: auto; }
  .block .carousel-control.right, .home_blogs .carousel-control.right {
    right: 0; }
    .rtl .block .carousel-control.right, .rtl .home_blogs .carousel-control.right {
      left: 0;
      right: auto; }

/* Block Newsletter */
#newsletter_block {
  position: relative;
  padding-top: 56px;
  padding-bottom: 100px; }
  #newsletter_block:before {
    content: "";
    padding: 0px 1000px;
    margin-left: -1000px;
    width: 100%;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    height: 100%;
    display: block !important;
    top: 0;
    border-top: 1px solid #eaeaea; }
    .rtl #newsletter_block:before {
      margin-right: -1000px;
      margin-left: inherit; }
  #newsletter_block h4 {
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    text-align: center; }
    #newsletter_block h4 span {
      font-weight: 300; }
    #newsletter_block h4:before, #newsletter_block h4:after {
      display: none; }
  #newsletter_block .des_newsletter {
    position: relative;
    color: #aaa;
    margin: 0px 0 35px;
    line-height: 24px;
    text-align: center; }
  #newsletter_block .form_newsletter {
    position: relative;
    width: 65%;
    margin: 0 auto; }
    @media (max-width: 991px) {
      #newsletter_block .form_newsletter {
        width: 90%; } }
  #newsletter_block .newsletter-input {
    border: 1px solid #f8f8f8;
    box-shadow: none;
    height: 50px;
    padding: 10px 20px;
    font-family: Playfair Display;
    font-weight: 300;
    font-size: 14px;
    background: #f8f8f8; }
  #newsletter_block .btn {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 9px 35px;
    font-family: Montserrat;
    background: #b0896c;
    border: none;
    color: white;
    right: 0; }
    .rtl #newsletter_block .btn {
      left: 0;
      right: auto; }
    #newsletter_block .btn .fa {
      display: none; }
    #newsletter_block .btn:hover {
      background: black; }

/* Block Manufacture */
.block-manufacture {
  padding-top: 80px;
  padding-bottom: 80px; }
  .block-manufacture .dres_vendor {
    text-align: center;
    margin-bottom: 30px;
    color: #888; }
  .block-manufacture .logo-manu {
    text-align: center; }
    .block-manufacture .logo-manu img {
      display: inline-block; }
    .block-manufacture .logo-manu a {
      display: inline-flex; }
  .block-manufacture .carousel-control {
    background: transparent;
    text-align: center;
    color: black;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    margin-top: 0px;
    box-shadow: none;
    text-shadow: none; }
    .block-manufacture .carousel-control.left {
      left: -60px; }
    .block-manufacture .carousel-control.right {
      right: -60px; }
    .block-manufacture .carousel-control:hover {
      color: #666666;
      border-color: #666666;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  .block-manufacture .owl-next, .block-manufacture .owl-prev {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: black;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    margin-top: -5px;
    box-shadow: none;
    text-shadow: none; }
    .block-manufacture .owl-next:hover, .block-manufacture .owl-prev:hover {
      color: #666666;
      border-color: #666666;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  .block-manufacture .owl-next {
    right: -60px; }
  .block-manufacture .owl-prev {
    left: -60px; }
  .block-manufacture:hover .carousel-control {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .block-manufacture:hover .carousel-control.left {
      left: -10px; }
    .block-manufacture:hover .carousel-control.right {
      right: -10px; }
  .block-manufacture:hover .owl-prev {
    left: -10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .block-manufacture:hover .owl-next {
    right: -10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }

.toggle-footer {
  padding: 5px 0px; }
  .toggle-footer li {
    line-height: 26px;
    position: relative; }
    .toggle-footer li a {
      position: relative;
      padding: 4px 0px;
      display: block;
      color: black;
      -webkit-transition: all 0.2s ease 0s;
      transition: all 0.2s ease 0s; }

#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99; }
  #back-top a {
    background: none repeat scroll 0% 0% #666666;
    opacity: 0.5;
    width: 50px;
    height: 50px;
    display: inline-block;
    font-size: 0px;
    border: 1px solid #666666;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: relative; }
    #back-top a::before {
      position: absolute;
      display: block;
      top: 0px;
      left: 0px;
      right: 0px;
      width: 100%;
      text-align: center;
      font-family: "FontAwesome";
      font-size: 40px;
      content: "\f106";
      color: #FFF;
      line-height: 40px; }

.box-googlemap {
  margin: 0px;
  text-align: center;
  position: relative; }
  .box-googlemap .box_title {
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 0px;
    right: 0px;
    width: 200px;
    margin: 0px auto;
    padding: 0px 15px;
    line-height: 41px;
    color: white;
    background: black;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1; }
    .box-googlemap .box_title span {
      font-weight: 300; }
    .box-googlemap .box_title:before {
      content: "";
      position: absolute;
      top: 0px;
      left: 50%;
      margin-left: -5px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid #b0896c; }

.swatch {
  margin: 20px 0px 0px; }
  .swatch .header {
    margin: 0px 10px 0px 0px;
    float: left;
    line-height: 35px;
    min-width: 60px; }
    .rtl .swatch .header {
      margin: 0px 0px 0px 10px; }
    .rtl .swatch .header {
      float: right; }
    .quick-view-product .swatch .header {
      width: 100%;
      line-height: normal; }
  .swatch input {
    display: none; }
  .swatch label {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    float: left;
    min-width: 30px !important;
    height: 30px !important;
    margin: 0;
    border: 1px solid #eaeaea;
    background-color: white;
    color: #777;
    /* Styling text */
    font-size: 11px;
    text-align: center;
    line-height: 30px;
    white-space: nowrap;
    text-transform: uppercase; }
    .rtl .swatch label {
      float: right; }
  .swatch .swatch-element {
    float: left;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    margin: 0px 10px 0px 0;
    position: relative; }
    .rtl .swatch .swatch-element {
      float: right; }
    .swatch .swatch-element.soldout {
      display: none; }

.swatch-element label {
  padding: 0 10px;
  cursor: pointer; }

.color.swatch-element label {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  padding: 0; }

.swatch input:checked + label {
  -webkit-box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.8);
  border-color: transparent; }

.color.swatch-element input:checked + label {
  border: 1px solid black;
  -webkit-box-shadow: none;
  box-shadow: none; }

.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: block; }

.swatch .swatch-element.soldout label {
  opacity: 0.6;
  filter: alpha(opacity=60); }

.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -30px;
  margin-bottom: 15px;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

.swatch .swatch-element:hover .tooltip {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px); }

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }

.swatch.error p {
  margin: 0.7em 0; }

.swatch.error p:first-child {
  margin-top: 0; }

.swatch.error p:last-child {
  margin-bottom: 0; }

.swatch.error code {
  font-family: monospace; }

.page-subheading {
  position: relative;
  background: transparent;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 300;
  text-transform: none;
  padding: 0px 0 20px;
  color: #b0896c;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px; }
  .page-subheading:before, .page-subheading:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }
  .page-subheading:before {
    height: 1px;
    width: 150px;
    background-color: #b0896c; }
  .page-subheading:after {
    width: 10px;
    height: 10px;
    bottom: -5px;
    background-color: #b0896c;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg); }
  .page-subheading .desproduct_block {
    display: block;
    font-family: Herr Von Muellerhoff;
    font-size: 48px;
    margin: 0;
    line-height: 40px;
    padding: 2px;
    color: #b0896c; }

.products_sidebar .product-block {
  padding: 0px; }
  .products_sidebar .product-block .functional-buttons, .products_sidebar .product-block .quickview {
    display: none; }
  .products_sidebar .product-block .content_price {
    margin: 5px 0px 0px; }
  .products_sidebar .product-block .review {
    border-top: 0px; }
    .products_sidebar .product-block .review .spr-badge {
      padding: 0px 0px 5px; }
  .products_sidebar .product-block .product-meta {
    padding: 5px 0px 10px;
    border-bottom: 1px solid #eaeaea; }
.products_sidebar .owl-item .item .product_block {
  margin-bottom: 30px; }
  .products_sidebar .owl-item .item .product_block:last-child .product-meta {
    border-bottom: 0px; }
.products_sidebar .product_list .product_block {
  margin: 30px 0px 0px; }
.products_sidebar .product_list .product-block .product-meta {
  border-bottom: 0px; }

/* Login page */
#login-page {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 300;
  color: black; }
  #login-page h1, #login-page h2, #login-page h3 {
    font-family: Playfair Display;
    font-size: 20px;
    font-weight: 400;
    color: black;
    margin: 0px 0px 30px;
    line-height: 40px;
    border-bottom: 1px solid #eaeaea; }
  #login-page .login-box {
    border: 1px solid #eaeaea;
    min-height: 350px;
    padding: 20px;
    background: white;
    margin-bottom: 10px; }
    #login-page .login-box p {
      margin: 0px; }
    #login-page .login-box .label-login {
      display: block;
      line-height: 22px;
      margin: 0px 0px 5px;
      font-weigth: 400; }
    #login-page .login-box .form-control {
      box-shadow: none;
      max-width: 350px;
      margin-bottom: 20px;
      font-size: 13px; }
    #login-page .login-box .lost_password {
      margin: 0px 0px 10px;
      font-size: 11px;
      font-weight: normal;
      font-style: italic; }
    #login-page .login-box .text-link {
      margin-top: 10px; }
  #login-page .register-box {
    border: 1px solid #eaeaea;
    min-height: 350px;
    padding: 20px;
    background: white; }
    #login-page .register-box p {
      margin: 0px; }
    #login-page .register-box .register_des {
      margin-bottom: 20px; }
  #login-page .btn-outline {
    padding: 6px 15px 8px 15px; }

#register-page .register-box {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 70px;
  background: white; }
  #register-page .register-box .label-register {
    display: block;
    line-height: 22px;
    margin: 0px 0px 5px; }
  #register-page .register-box .form-control {
    box-shadow: none;
    margin-bottom: 20px; }
#register-page h1, #register-page h3 {
  font-family: Playfair Display;
  font-size: 18px;
  font-weight: normal;
  background: transparent;
  color: black;
  margin: 0px 0px 20px;
  line-height: 40px;
  text-align: center; }
  #register-page h1:before, #register-page h1:after, #register-page h3:before, #register-page h3:after {
    display: none; }

#create_customer {
  max-width: 600px;
  margin: 0px auto;
  border: 1px solid #eaeaea;
  padding: 0px 20px 30px; }

#account-page {
  margin: 30px 0px 50px; }
  #account-page h1 {
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: normal;
    color: black;
    margin: 0px 0px 20px;
    line-height: 40px;
    border-bottom: 1px solid #eaeaea; }
  #account-page h4 {
    font-family: Playfair Display;
    margin: 0px;
    line-height: 40px;
    padding: 0px 20px;
    border: 1px solid #eaeaea;
    background-color: #F7F7F7;
    height: 40px; }
  #account-page h5 {
    line-height: 30px;
    margin: 0px; }
  #account-page .box-content {
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    border-top: 0px; }
  #account-page .order-account {
    margin-bottom: 20px; }
  #account-page p {
    margin: 0px;
    line-height: 30px; }

.account-box {
  padding: 30px 20px 70px;
  background: white; }

#adress-page {
  margin: 50px 0px 70px; }
  #adress-page h1 {
    margin: 0px;
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: normal;
    color: black;
    margin: 0px;
    line-height: 40px; }
  #adress-page .section-header {
    padding: 5px 20px;
    border: 1px solid #eaeaea;
    margin-bottom: 20px; }
  #adress-page .section-header_left, #adress-page .section-header_right {
    float: left;
    padding: 3px 0px;
    width: 50%; }
    .rtl #adress-page .section-header_left, .rtl #adress-page .section-header_right {
      float: right; }
    @media (max-width: 362px) {
      #adress-page .section-header_left, #adress-page .section-header_right {
        width: 100%; } }
  #adress-page .section-header_right {
    text-align: right; }
    .rtl #adress-page .section-header_right {
      text-align: left; }
    @media (max-width: 362px) {
      #adress-page .section-header_right {
        width: 100%;
        text-align: left; } }

.address_box {
  padding: 30px 20px 70px;
  background: white; }

.adress-box {
  padding: 20px; }
  .adress-box h3, .adress-box h4 {
    font-size: 14px;
    margin: 0px;
    line-height: 40px; }

#AddAddress, .edit_address {
  width: 100%;
  margin: 0px auto;
  border: 1px solid #eaeaea;
  padding: 20px;
  margin-bottom: 30px;
  max-width: 600px; }

#quick-view-product {
  bottom: 0px;
  left: 0px;
  outline: 0px none;
  overflow-x: auto;
  overflow-y: scroll;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 1100; }
  #quick-view-product .product-info {
    color: black;
    font-weight: 300; }
  #quick-view-product .brand {
    color: black; }
  #quick-view-product .available {
    margin: 0px;
    font-weight: 400;
    color: #72C13D; }
    #quick-view-product .available.outstock {
      color: #E55E5E; }
  #quick-view-product .qwp-name {
    margin: 10px 0px;
    font-size: 24px;
    font-family: Montserrat;
    font-weight: 900;
    line-height: 30px;
    color: black;
    text-transform: uppercase; }
  #quick-view-product .quickview-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
    z-index: 8010;
    background-color: rgba(10, 10, 10, 0.8); }
  #quick-view-product .quick-view-product {
    position: absolute;
    width: 1140px;
    top: 10%;
    height: auto;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    padding: 30px;
    background-color: white;
    z-index: 8011; }
    @media screen and (max-width: 1199px) {
      #quick-view-product .quick-view-product {
        width: 90%; } }
  #quick-view-product .prices {
    display: block;
    margin-bottom: 15px; }
    #quick-view-product .prices .price {
      float: none; }
  #quick-view-product .total-price {
    float: left;
    width: 100%;
    display: block;
    margin: 15px 0; }
    #quick-view-product .total-price span {
      font-family: Montserrat;
      font-size: 17px;
      font-weight: 400;
      color: #b0896c; }
  #quick-view-product .more-view-wrapper {
    overflow: hidden; }
  #quick-view-product .product-right-column .selector-wrapper label {
    font-weight: 700;
    line-height: 40px; }
  #quick-view-product .product-right-column .selector-wrapper select {
    border-color: #eaeaea;
    height: 42px; }
  #quick-view-product .product-right-column .quantity_wanted_p {
    width: 100%;
    margin-top: 15px; }
    #quick-view-product .product-right-column .quantity_wanted_p label {
      line-height: 50px;
      font-weight: 700; }
  #quick-view-product .product-right-column .add_to_cart_detail {
    margin: 15px 10px 15px 0px; }
  #quick-view-product .product-right-column .btn-wishlist {
    margin-top: 15px; }
  #quick-view-product .swatch .swatch-element {
    margin: 6px 6px 0px 0px; }
  #quick-view-product .view_full_size {
    position: relative; }
  #quick-view-product .loading-imgquickview {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: url(loading.gif) no-repeat center center; }
  #quick-view-product .availability {
    line-height: 28px; }
  #quick-view-product .product-sku {
    line-height: 28px; }

#thumbs_list_quickview {
  position: relative;
  padding: 20px 30px; }

#thumblist_quickview {
  position: static; }
  #thumblist_quickview .owl-item {
    padding: 1px; }
    #thumblist_quickview .owl-item a {
      display: block;
      border: 1px solid transparent; }
      #thumblist_quickview .owl-item a:hover {
        border-color: #b0896c; }
    #thumblist_quickview .owl-item img {
      max-width: 100%; }
  #thumblist_quickview .owl-prev, #thumblist_quickview .owl-next {
    width: 20px;
    height: 20px;
    line-height: 16px;
    margin-top: -10px;
    border: 1px solid #eaeaea;
    color: #eaeaea; }
    #thumblist_quickview .owl-prev:before, #thumblist_quickview .owl-next:before {
      font-size: 14px;
      text-shadow: none; }
    #thumblist_quickview .owl-prev:hover, #thumblist_quickview .owl-next:hover {
      background-color: #b0896c;
      border-color: #b0896c;
      color: white; }

@media (max-width: 991px) {
  #quick-view-product {
    display: none !important; }

  .quickview {
    display: none !important; } }
#deal-pages {
  margin-bottom: 50px; }
  #deal-pages .bg-warning {
    margin: 0px;
    padding: 8px 10px; }

#popup-newletter {
  background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/pnewletter_bg.png?v=17359141496515011940) no-repeat scroll bottom right #e6e6e6;
  text-align: left;
  padding: 20px;
  min-width: 624px;
  min-height: 420px;
  overflow: hidden; }
  @media (max-width: 480px) {
    #popup-newletter {
      min-width: 100%; } }
  @media (max-width: 375px) {
    #popup-newletter {
      min-width: 280px; } }
  #popup-newletter h3 {
    font-family: Montserrat;
    font-size: 30px;
    color: black;
    margin: 0px 0px 10px;
    padding: 8px 0px;
    font-weight: normal; }
  #popup-newletter .pnewle-message {
    font-family: Playfair Display;
    width: 55%;
    color: black; }
    @media (max-width: 480px) {
      #popup-newletter .pnewle-message {
        width: 100%; } }
    #popup-newletter .pnewle-message span {
      font-size: 14px;
      margin-bottom: 20px;
      display: block; }
    #popup-newletter .pnewle-message p {
      font-size: 12px;
      margin-bottom: 10px;
      display: block; }
    #popup-newletter .pnewle-message ul {
      margin-bottom: 20px; }
      #popup-newletter .pnewle-message ul li {
        font-size: 12px;
        position: relative;
        display: block;
        padding-left: 25px; }
        .rtl #popup-newletter .pnewle-message ul li {
          padding-right: 25px;
          padding-left: inherit; }
        #popup-newletter .pnewle-message ul li:before {
          content: "\f111";
          position: absolute;
          font-family: "FontAwesome";
          font-size: 5px;
          top: 8px;
          left: 10px; }
          .rtl #popup-newletter .pnewle-message ul li:before {
            right: 10px;
            left: auto; }
  #popup-newletter .pnewle-form {
    width: 53%; }
    @media (max-width: 480px) {
      #popup-newletter .pnewle-form {
        width: 100%; } }
    #popup-newletter .pnewle-form .newsletter-input {
      font-size: 12px;
      font-style: italic;
      height: 33px; }
    #popup-newletter .pnewle-form .btn {
      margin-top: 10px;
      background-color: #666666;
      color: white;
      font-family: Playfair Display;
      font-style: italic;
      font-size: 11px;
      position: relative;
      padding: 5px 12px; }
      #popup-newletter .pnewle-form .btn:hover {
        background-color: black; }

.social-icons {
  width: 53%;
  margin-top: 20px; }
  .social-icons h4 {
    font-weight: normal;
    padding: 8px 0px; }
  .social-icons .block_content ul {
    margin: 0px; }
    .social-icons .block_content ul li {
      width: 20%;
      text-align: center;
      padding: 0px;
      height: 40px;
      float: left; }
      .rtl .social-icons .block_content ul li {
        float: right; }
      .social-icons .block_content ul li a {
        font-size: 18px;
        display: inline-block;
        height: 35px;
        width: 35px;
        color: black;
        border: 1px solid transparent;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg); }
      .social-icons .block_content ul li .fa {
        line-height: 35px;
        display: block;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg); }
      .social-icons .block_content ul li span {
        font-size: 0px; }
      .social-icons .block_content ul li.facebook a:hover {
        border-color: #428bca; }
      .social-icons .block_content ul li.twitter a:hover {
        border-color: #5bc0de; }
      .social-icons .block_content ul li.rss a:hover {
        border-color: #0eba9e; }
      .social-icons .block_content ul li.youtube a:hover {
        border-color: #CC181E; }
      .social-icons .block_content ul li.google-plus a:hover {
        border-color: #4387fd; }
      .social-icons .block_content ul li.instagram a:hover {
        border-color: #3F729B; }
      .social-icons .block_content ul li.pinterest a:hover {
        border-color: #c72527; }

.google-maps .gmap-content {
  padding-right: 0px; }
  .rtl .google-maps .gmap-content {
    padding-left: 0px;
    padding-right: inherit; }
.google-maps .gmap-stores-content {
  padding-left: 0px; }
  .rtl .google-maps .gmap-stores-content {
    padding-right: 0px;
    padding-left: inherit; }
  .google-maps .gmap-stores-content .gmap-stores-list {
    overflow: hidden;
    background: #e4e4e4; }
    .google-maps .gmap-stores-content .gmap-stores-list ul {
      padding: 15px 20px 15px 30px; }
      .rtl .google-maps .gmap-stores-content .gmap-stores-list ul {
        padding: 15px 30px 15px 20px; }
      .google-maps .gmap-stores-content .gmap-stores-list ul li {
        cursor: pointer;
        padding: 20px 0px;
        border-bottom: 1px solid black;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease; }
        .google-maps .gmap-stores-content .gmap-stores-list ul li > strong {
          color: black;
          font-family: Montserrat;
          font-size: 14px;
          text-transform: uppercase; }
        .google-maps .gmap-stores-content .gmap-stores-list ul li > text {
          font-size: 13px;
          font-family: Playfair Display; }
        .google-maps .gmap-stores-content .gmap-stores-list ul li:last-child {
          border-bottom: 0px; }

/* custom inclusion of right, left and below tabs */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0; }

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none; }

.tab-content > .active,
.pill-content > .active {
  display: block; }

.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd; }

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0; }

.tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px; }

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #ddd;
  border-bottom-color: transparent; }

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd; }

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none; }

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px; }

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd; }

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px; }

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee; }

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff; }

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd; }

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0; }

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd; }

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff; }

.instagram-block .block-title h3 {
  font-size: 18px;
  margin: 0px 0px 10px;
  padding: 10px 0px;
  text-align: center; }
.instagram-block .block-content {
  over-flow: hidden; }

#instafeed .owl-item {
  padding: 0px 10px; }
  #instafeed .owl-item a {
    display: block; }
    #instafeed .owl-item a img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0px auto; }

.page-header {
  font-family: Montserrat;
  font-size: 20px;
  color: black;
  margin: 0px;
  padding: 0px;
  border: 0px;
  line-height: 40px; }
  .page-header h1 {
    font-size: 24px;
    margin: 0px; }

#order-page h4 {
  font-size: 17px;
  margin: 0px;
  font-weight: 600;
  line-height: 25px; }

.order_details {
  margin-bottom: 20px; }
  .order_details p {
    font-size: 14px;
    font-style: italic; }

.order_info {
  margin-bottom: 20px; }

.page-404 {
  text-align: center;
  padding: 40px 0px; }
  .page-404 h1 {
    font-size: 200px;
    letter-spacing: 20px;
    line-height: 150px;
    color: #ffffff; }
  .page-404 h2 {
    font-size: 60px;
    letter-spacing: 20px;
    line-height: 60px;
    color: #ffffff; }
  .page-404 .des_cription_404 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 100;
    color: #ffffff; }
  .page-404 .btn_404 {
    margin-top: 20px; }

.page_404 {
  background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/404.jpg?v=1842313088229201947) no-repeat center center;
  background-size: cover;
  min-height: 800px;
  padding-top: 60px; }

.loading_site {
  background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/loading.gif?v=2771537143351120706) no-repeat center center white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 50% !important;
  bottom: auto;
  left: 50%;
  right: auto;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  overflow: hidden;
  padding: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }

.aboutus {
  color: #666666;
  background-color: #ffffff; }
  .aboutus .rte {
    color: #666666; }
  .aboutus .page-wrap {
    background: transparent;
    padding-bottom: 100px; }

.page-abouts {
  margin-top: 20px; }
  .page-abouts .page-subheading {
    text-align: left; }
    .rtl .page-abouts .page-subheading {
      text-align: right; }
  @media screen and (min-width: 991px) {
    .page-abouts .block_content {
      padding-right: 15px; } }
  .page-abouts .block_content .name_abouts strong {
    color: black; }

.list-aboutus li {
  width: 100%;
  margin: 8px 0;
  float: left; }
  .list-aboutus li p {
    padding-left: 90px; }
  .list-aboutus li strong {
    color: #b0896c;
    display: block; }

.faqPage .panel-group .block .page-subheading, #faq .panel-group .block .page-subheading {
  text-align: left; }
.faqPage .panel-group .panel-default, #faq .panel-group .panel-default {
  padding-left: 50px;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .rtl .faqPage .panel-group .panel-default, .rtl #faq .panel-group .panel-default {
    padding-right: 50px;
    padding-left: inherit; }
  .faqPage .panel-group .panel-default .panel-heading, #faq .panel-group .panel-default .panel-heading {
    border: none;
    background-color: transparent; }
.faqPage .panel-group .panel-heading + .panel-collapse .panel-body, #faq .panel-group .panel-heading + .panel-collapse .panel-body {
  border: none;
  background-color: transparent;
  padding: 10px 15px; }
.faqPage .panel-group .panel-title > a, #faq .panel-group .panel-title > a {
  color: black;
  display: block;
  position: relative; }
  .faqPage .panel-group .panel-title > a:before, #faq .panel-group .panel-title > a:before {
    content: "";
    width: 34px;
    height: 34px;
    position: absolute;
    top: -10px;
    left: -50px;
    -webkit-box-shadow: 0 0 0 2px black inset;
    box-shadow: 0 0 0 2px black inset;
    border-radius: 100%;
    z-index: 10;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
  .faqPage .panel-group .panel-title > a:after, #faq .panel-group .panel-title > a:after {
    content: "\f067";
    font-family: "FontAwesome";
    z-index: 11;
    position: absolute;
    top: -10px;
    left: -38px;
    line-height: 34px;
    font-weight: normal;
    color: black; }
  .faqPage .panel-group .panel-title > a.collapsed:after, #faq .panel-group .panel-title > a.collapsed:after {
    content: "\f068";
    color: black; }
  .faqPage .panel-group .panel-title > a.collapsed:before, #faq .panel-group .panel-title > a.collapsed:before {
    -webkit-box-shadow: 0 0 0 2px black inset;
    box-shadow: 0 0 0 2px black inset; }
  .faqPage .panel-group .panel-title > a.in:after, #faq .panel-group .panel-title > a.in:after {
    content: "\f068";
    color: black; }
  .faqPage .panel-group .panel-title > a.in:before, #faq .panel-group .panel-title > a.in:before {
    -webkit-box-shadow: 0 0 0 34px black inset;
    box-shadow: 0 0 0 34px black inset; }

.wrapper-product {
  background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/bg_image_product.jpg?v=4495148259743532801) repeat; }
  .wrapper-product #productlist1 .page-subheading {
    color: white; }
  .wrapper-product #productlist1 .left_block {
    width: 47.4%;
    float: left; }
    .rtl .wrapper-product #productlist1 .left_block {
      float: right; }
    @media screen and (max-width: 991px) {
      .wrapper-product #productlist1 .left_block {
        width: 100%; } }
    .wrapper-product #productlist1 .left_block .product-image-container {
      margin: 0; }
  .wrapper-product #productlist1 .right_block {
    float: right;
    width: 52.6%; }
    .rtl .wrapper-product #productlist1 .right_block {
      float: left; }
    @media screen and (max-width: 991px) {
      .wrapper-product #productlist1 .right_block {
        width: 100%; } }
    .wrapper-product #productlist1 .right_block .product-meta {
      padding: 40px 30px;
      text-align: left; }
      @media screen and (max-width: 1199px) {
        .wrapper-product #productlist1 .right_block .product-meta {
          padding: 21px 10px 25px; } }
      .wrapper-product #productlist1 .right_block .product-meta .product-desc {
        display: block; }

.products_shop {
  text-align: center;
  padding-top: 60px; }
  .products_shop .page-subheading {
    color: black;
    font-size: 45px;
    margin-bottom: 45px; }

.statistic-homeshop {
  background-color: #f7f7f7; }
  .statistic-homeshop .block-statistic {
    padding: 30px 0; }
    @media screen and (min-width: 992px) {
      .statistic-homeshop .block-statistic {
        padding-top: 97px;
        padding-bottom: 75px; } }
    .statistic-homeshop .block-statistic .list-statistic {
      margin-top: 30px; }
      .statistic-homeshop .block-statistic .list-statistic .title_block {
        font-size: 45px;
        padding-top: 0;
        color: black;
        font-weight: 600; }
      .statistic-homeshop .block-statistic .list-statistic p {
        font-size: theme-font-size2;
        color: #888888;
        margin: 0;
        text-transform: uppercase;
        font-family: Montserrat; }

.html-homeshop {
  background: url(//cdn.shopify.com/s/files/1/0020/3859/5683/t/52/assets/html_homeshopbg.jpg?v=9845230655279440030);
  padding: 150px 0;
  margin: 10px 0; }
  .html-homeshop .title_block {
    font-size: 50px;
    color: white;
    text-transform: uppercase;
    margin-top: 16px; }
  .html-homeshop .text_shophtml {
    color: white;
    line-height: 25px;
    padding: 10px 150px 20px 0; }
    @media screen and (max-width: 991px) {
      .html-homeshop .text_shophtml {
        padding: 10px 50px 20px 0; } }
  .html-homeshop .btn-shop {
    border-color: white;
    background-color: transparent;
    font-size: 13px;
    text-transform: uppercase;
    color: white;
    font-family: Montserrat;
    padding: 13px 30px 12px;
    margin-bottom: 10px; }
    .html-homeshop .btn-shop:hover {
      color: #b0896c;
      border-color: #b0896c; }
    .html-homeshop .btn-shop.button_html {
      background: #b0896c;
      border-color: #b0896c;
      margin-right: 10px; }
      .html-homeshop .btn-shop.button_html:hover {
        background: transparent; }

@media screen and (min-width: 991px) {
  .service-homeshop {
    padding-top: 50px; } }
.service-homeshop .widget-banner .effect a:before, .service-homeshop .widget-banner .effect a:after {
  background: transparent; }
.service-homeshop .block-service {
  padding-top: 30px; }
  @media screen and (min-width: 991px) {
    .service-homeshop .block-service {
      padding-top: 120px; } }
  .service-homeshop .block-service .service {
    padding-bottom: 57px; }
    .service-homeshop .block-service .service:hover .title_block {
      color: #b0896c; }
    .service-homeshop .block-service .service:hover .fa {
      background: #b0896c; }
    .service-homeshop .block-service .service .title_block {
      font-size: 16px;
      color: black;
      font-weight: bold; }
    .service-homeshop .block-service .service .fa {
      width: 70px;
      height: 70px;
      line-height: 68px;
      color: white;
      margin: 0 auto;
      font-size: 24px;
      background-color: #60c452;
      text-align: center;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      -webkit-transition: all 0.5s ease-out 0s;
      transition: all 0.5s ease-out 0s;
      float: left;
      margin-top: 10px;
      margin-right: 20px; }
      .rtl .service-homeshop .block-service .service .fa {
        float: right; }
  .service-homeshop .block-service .html-service:nth-of-type(3) {
    clear: both; }

.testimonial-block {
  padding: 70px 0 85px; }
  .testimonial-block .page-subheading {
    font-size: 45px;
    color: black;
    padding-bottom: 22px;
    margin-bottom: 70px; }
  .testimonial-block .testimonial-item {
    padding: 0 15px; }
    .testimonial-block .testimonial-item .profile {
      margin: 10px 0 25px; }
      .testimonial-block .testimonial-item .profile .testimmonial__name {
        text-transform: uppercase;
        font-size: 14px;
        color: black;
        font-weight: bold;
        padding: 6px 0; }
      .testimonial-block .testimonial-item .profile .testimmonial__name--sub {
        position: relative;
        padding-bottom: 15px; }
        .testimonial-block .testimonial-item .profile .testimmonial__name--sub:before {
          position: absolute;
          content: '';
          width: 40px;
          height: 1px;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          background: #b0896c; }
    .testimonial-block .testimonial-item .testimmonial_des {
      line-height: 24px; }

.contact-homeshop {
  background: #f8f8f8;
  margin-bottom: -50px; }
  .contact-homeshop .contact-form-box {
    margin: 60px 0 20px; }
    .contact-homeshop .contact-form-box .form-group label {
      display: block;
      font-weight: normal; }
    .contact-homeshop .contact-form-box .form-group .form-control {
      height: 40px;
      background-color: white; }
    .contact-homeshop .contact-form-box .submit {
      text-align: left; }
      .contact-homeshop .contact-form-box .submit .btn {
        text-transform: uppercase;
        padding: 9px 23px 10px 23px;
        font-family: Montserrat;
        font-size: 13px; }
        .rtl .contact-homeshop .contact-form-box .submit .btn {
          padding: 9px 23px 10px 23px; }
  .contact-homeshop .widget-banner .effect a:before, .contact-homeshop .widget-banner .effect a:after {
    background: transparent; }

.template-404 .footer-top {
  margin: 0; }

@media (max-width: 991px) {
  .template-page .main-content {
    padding: 0 15px; } }
.template-page .columns-container {
  padding-top: 10px; }
.template-page .panel-group.demoaccordion .panel.panel-default .page-subheading {
  padding: 15px; }
.template-page .panel-group.demoaccordion .panel.panel-default .block_content .owl-item {
  padding: 0 15px; }
  .template-page .panel-group.demoaccordion .panel.panel-default .block_content .owl-item .functional-buttons {
    width: 66%; }
    @media (max-width: 1199px) {
      .template-page .panel-group.demoaccordion .panel.panel-default .block_content .owl-item .functional-buttons {
        display: none; } }
.template-page .aboutus .page-wrap {
  padding: 20px 20px 0; }
.template-page .aboutus .page-content {
  padding: 0 10px 0 0; }
.template-page .contact-form .row {
  margin: 0 -10px; }
  @media (max-width: 991px) {
    .template-page .contact-form .row {
      margin: 0; } }
  .template-page .contact-form .row .form-group {
    padding: 0 10px; }
.template-page .panel-group .panel.panel-default .panel-body {
  padding: 10px 15px; }
  .template-page .panel-group .panel.panel-default .panel-body .instagram-block.demo-instagram #instafeed a img {
    max-width: 160px; }
    @media (max-width: 767px) {
      .template-page .panel-group .panel.panel-default .panel-body .instagram-block.demo-instagram #instafeed a img {
        max-width: 84px; } }

.ap-multilang-box {
  display: none !important; }

.wishlist {
  position: relative; }
  .primary_block .wishlist {
    display: inline-block; }
  .wishlist .btn-wlct {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    filter: alpha(opacity=0); }
