/* Navigation Menu CSS */

ul.hfe-nav-menu,
.hfe-nav-menu li,
.hfe-nav-menu ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.hfe-nav-menu li.menu-item {
    position: relative;
}

.hfe-flyout-container .hfe-nav-menu li.menu-item {
    position: relative;
    background: unset;
}

.hfe-nav-menu .sub-menu li.menu-item {
    position: relative;
    background: inherit;
}
.hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
    display: none;
}

div.hfe-nav-menu,
.elementor-widget-hfe-nav-menu .elementor-widget-container{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hfe-nav-menu__layout-horizontal,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
    display: none;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu,
.hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 16;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: hidden;
    opacity: 0;
}

.hfe-nav-menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.hfe-nav-menu:before,
.hfe-nav-menu:after {
    content: '';
    display: table;
    clear: both;
}

/* Alignemnt CSS */
.hfe-nav-menu__align-right .hfe-nav-menu {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: right;
}
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: left;
}
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: center;
}
.hfe-nav-menu__align-left .hfe-nav-menu {
  margin-right: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-center .hfe-nav-menu {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    width: 100%; 
}
  .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            -webkit-flex-grow: 1;
            -moz-box-flex: 1;
            flex-grow: 1; }
    .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              -webkit-justify-content: center;
              -moz-box-pack: center;
              justify-content: center; }

/* Alignment CSS ends */

.hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item,
.hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
    border-bottom-width: 0;
}

/*  Horizontal Menu */

.hfe-nav-menu a.hfe-menu-item,
.hfe-nav-menu a.hfe-sub-menu-item {
    line-height: 1;
    text-decoration: none;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hfe-nav-menu a.hfe-menu-item:hover,
.hfe-nav-menu a.hfe-sub-menu-item:hover {
    text-decoration: none;
}

.hfe-nav-menu .sub-menu {
    min-width: 220px;
    margin: 0;
    z-index: 9999;
}

.hfe-nav-menu__layout-horizontal {
    font-size: 0;
}

.hfe-nav-menu__layout-horizontal li.menu-item,
.hfe-nav-menu__layout-horizontal > li.menu-item {
    font-size: medium;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu{
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: '+'; 
}
.hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
    display: none; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before,.hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: '-'; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}
/* Icon CSS ends */

.hfe-nav-menu-icon {
    padding: 0.35em;
    border: 0 solid;
}

.hfe-nav-menu-icon svg {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
}

.hfe-nav-menu-icon i:focus {
    outline: 0;
}

.hfe-has-submenu-container a.hfe-menu-item:focus,
.hfe-has-submenu-container a.hfe-sub-menu-item:focus {
    outline: 0;
}
/* Submenus */

.hfe-nav-menu .menu-item-has-children:focus,
.hfe-nav-menu .menu-item-has-children .sub-menu:focus,
.hfe-nav-menu .menu-item-has-children-container:focus {
    outline: 0;
}
.hfe-nav-menu .menu-item-has-children-container {
    position: relative;
}

.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-flyout-wrapper .sub-menu {
    position: relative;
    height: 0;
}

.hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-plus .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    font-size: inherit;
    font-weight: inherit;
    line-height: 0;
}

.hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item,
.hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item,
.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__toggle-icon:before {
    content: '\f0c9';
    font-family: 'fontAwesome';
    z-index: 1;
    font-size: 24px;
    font-weight: inherit;
    font-style: normal;
    line-height: 0;
}

.hfe-active-menu .hfe-nav-menu__toggle-icon:before {
    content: '\f00d';
}

.hfe-nav-menu__layout-expandible {
    -webkit-transition-property: display;
    transition-property: display;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
    transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
}

.hfe-nav-menu__layout-expandible {
    visibility: hidden;
    opacity: 0; 
}

.hfe-nav-menu__layout-expandible .sub-menu {
    visibility: hidden;
    opacity: 0; 
}

.hfe-active-menu + .hfe-nav-menu__layout-expandible {
    visibility: visible;
    opacity: 1; 
    height: auto;
}

.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
    position: absolute;
    top: 100%;
}

.hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu,
.hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-layout-expandible nav {
    height: 0;
}

.hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
    display: inline-block;
    line-height: 1;
}

.hfe-nav-menu__toggle {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    cursor: pointer;
    border: 0 solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #494c4f;
    position: relative;
    line-height: 1;
}

.hfe-nav-menu__toggle-icon {
    display: inline-block;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hfe-nav-menu .sub-arrow {
    font-size: 14px;
    line-height: 1;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: -10px;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
    margin-left: 10px;
}

.hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow,
.hfe-layout-expandible .sub-arrow,
.hfe-flyout-wrapper .sub-arrow
{
    padding: 10px;
}

.hfe-nav-menu .child-item,
.hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
    font-size: 14px;
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.hfe-layout-horizontal .hfe-nav-menu__toggle,
.hfe-layout-vertical .hfe-nav-menu__toggle {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.hfe-nav-menu-icon {
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.hfe-nav-menu__layout-expandible .saved-content,
.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-expandible .child,
.hfe-nav-menu__layout-vertical .saved-content,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-nav-menu__layout-vertical .child,
.hfe-flyout-container .saved-content,
.hfe-flyout-container .sub-menu,
.hfe-flyout-container .child {
    left: 0 !important;
    width: 100% !important; 
}

.hfe-flyout-container .hfe-nav-menu .sub-menu {
    background: unset;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover,
.hfe-flyout-wrapper .hfe-menu-toggle:hover {
    border:1px dotted;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle,
.hfe-flyout-wrapper .hfe-menu-toggle {
    border:1px dotted transparent;
}

/* Common Animation CSS */

.hfe-nav-menu .menu-item a:before,
.hfe-nav-menu .menu-item a:after {
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
          transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1); }

.hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
  opacity: 0; }

.hfe-nav-menu .menu-item a.hfe-menu-item:hover:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:hover:after,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:after,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after,
.hfe-nav-menu .current-menu-item:before,
.hfe-nav-menu .current-menu-item:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Double Line / Underline / Overline Style */

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #55595c;
    z-index: 2;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 0;
    width: 0;
    left: 50%;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: -10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: -10px;
}

.hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
    content: '';
    top: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    width: 10px;
    left: -20px;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
    content: '';
    bottom: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    width: 10px;
    left: -webkit-calc( 100% + 20px);
    left: calc( 100% + 20px);
}


/* Framed Style */

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 3px solid #55595c;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
    content: '';
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
    -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, transform 0.4s;
    transition: opacity 0.2s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
    border-width: 0 0 3px 3px;
    -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
    transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 3px 3px 0 0;
    -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
    transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    width: 100%;
    height: 100%;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
    -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
    transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
    transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
    border-width: 3px 0 0 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 0 3px 3px 0;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.002s, width 0.4s, height 0.4s;
    transition: opacity 0.002s, width 0.4s, height 0.4s;
}

.hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Background Style */

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
    content: '';
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
    color: #fff;
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
    -webkit-transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, transform 0.4s;
    transition: opacity 0.15s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    left: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 50%;
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 50%;
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
    top: 100%;
    bottom: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
    bottom: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
    right: 0;
    left: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    right: 100%;
    left: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
    right: 50%;
}

.hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Text Style */

.hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    transform: skew(-8deg);
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
}

.hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
}

.hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-flyout-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: rgba(0,0,0,.6);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
}

/* No link hover effect to last menu item */

.hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
    height: 0px;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after{
    border-width: 0px;
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover,
.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus
{
    -webkit-transform: none;
    transform: none;
}

.hfe-flyout-close,
.hfe-flyout-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 23px;
    display: block;
    cursor: pointer;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%;
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px;
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side {
    display: none;
    position: fixed;
    z-index: 999999;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
    display: block;
}

.hfe-flyout-content.push {
    color: #ffffff;
}

.hfe-flyout-content ul li {
    color: #ffffff;
}

/* ===========================================================
 *  Flyout Location
 * ======================================================== */

.hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
    top: 0;
    bottom: 0;
    left: auto;
    right: -100%; /* default */
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%; /* default */
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side.top {
    top: -100%; /* default */
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

.hfe-flyout-wrapper .hfe-side.bottom {
    top: auto;
    bottom: -100%; /* default */
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

/* ===========================================================
 *  Flyout Container
 * ======================================================== */

.hfe-flyout-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.4em;
    color: #fff;
}
/* iOS fix */
@media (max-width:1024px) {
    .hfe-flyout-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.hfe-flyout-content::-webkit-scrollbar {
    display: none;
}

.admin-bar .hfe-side {
    margin-top: 32px;
}

/* Dropdown animation CSS */

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {  
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child,
.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
    overflow: visible !important;
}

.elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
    display: inline-flex;
} 

.hfe-nav-menu li.hfe-button-wrapper {
    align-self: center;
}

/* Tablet */
@media only screen and ( max-width: 1024px ) {

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu{
        width: 100%;
        margin-right:0px;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child {
        left: 0 !important;
        width:auto !important;  
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    /* Effect 1: Fade in and scale up */
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    
    /*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
        border-left: 16px solid transparent;
    }*/

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
         background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus{
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }
}

/* Mobile */
@media only screen and ( max-width: 767px ) {

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item 
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper { 
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
        width: 100%
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: inline-block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;  
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover{
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle{
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* Effect 1: Fade in and scale up */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 2: Slide from the right */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 3: Slide from the bottom */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    .hfe-nav-menu__breakpoint-mobile .saved-content,
    .hfe-nav-menu__breakpoint-mobile .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .child,
    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child{
        left: 0 !important;
        width: auto !important; 
    }

    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }   

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
        background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }
}

.hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
    display: none;
}

/* Icon common CSS */

.hfe-icon {
    display: inline-block;
    vertical-align: middle; /* Alignment of icon */
}

/* Icon Svg */
.hfe-icon svg {
    width: 1em;
    height: 1em;
}

/* Menu Cart CSS */

.hfe-cart-menu-wrap-custom {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count, 
.hfe-cart-menu-wrap-custom .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 12px 24px;
}

/* Default skin for cart*/
.hfe-cart-menu-wrap-default {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-default .hfe-cart-count, 
.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-default .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0em 0em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 0 .4em;
}

.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    bottom: 100%;
    margin-bottom: 0;
    height: .8em;
    width: .8em;
    left: 50%;
    transform: translateX(-50%);
    top: -.6em;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border-width: 2px;
    border-style: solid;
    border-top-left-radius: 10em;
    border-top-right-radius: 10em;
    border-bottom: 0;
}

.elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
    display: none; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e3'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e4'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e5'; 
}

.hfe-menu-cart__toggle .elementor-button {
    background: transparent;
    border-radius: 0;
    color: #818a91;
    border: 1px solid;
    border-color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
}

.hfe-menu-cart__toggle .elementor-button-text {
    margin-right: 0.3em; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    position: relative;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s; 
}

.hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: block;
    position: absolute;
    min-width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    top: -0.7em;
    right: -0.7em;
    border-radius: 100%;
    color: #fff;
    background-color: #d9534f;
    text-align: center;
    font-size: 10px; 
}

.hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: inline-block;
    font-weight: normal; 
}

.hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
    content: none;
    display: none; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    -webkit-box-ordinal-group: 16;
    -webkit-order: 15;
    -ms-flex-order: 15;
    order: 15;
}

.hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
    color:#4d4848;
}

/*Search Box CSS*/

.hfe-search-button-wrapper {
    display: block;
    cursor: pointer;
    vertical-align: middle;
    text-align: right;
}

.hfe-search-form__container {
    display: flex;
    overflow: hidden;
}

.hfe-search-form__input {
    flex-basis: 100%;
}

.hfe-search-icon-toggle i.fa-search {
    display: inline-block;
    position: absolute;
    width: 20px;
    box-sizing: content-box;
    padding: 10px;
}

.hfe-search-icon-toggle i:before {
    vertical-align: middle;
}
/*search icon toggle css*/

.hfe-search-button-wrapper input[type=search] {
    border: 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    transition: all .5s;
    box-sizing: border-box;
    outline: none;
}

.hfe-search-button-wrapper button {
    border: none;
    border-radius: 0;
    padding: 0;
}

.hfe-search-button-wrapper input[type=search]:focus {
    cursor: auto;
    border: none;
    box-shadow: none;
}

.hfe-search-icon-toggle input:-moz-placeholder,
.hfe-search-icon-toggle input::-webkit-input-placeholder {
    color: transparent;
}

.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
    background-color: unset;
    height: 100%;
}

.hfe-search-button-wrapper.hfe-input-focus {
    display: flex;
}

.hfe-search-form__container .hfe-search-submit {
    min-width: 3%;
    position:relative;
}

.hfe-search-form__container button#clear,
.hfe-search-icon-toggle button#clear {
    visibility: hidden;
    position: absolute;
    right:0; 
    top:0;
    padding: 0 8px;
    font-style: normal;
    user-select: none;
    cursor: pointer;
    bottom:0;
    margin-right:10px;
    background-color: transparent;
}

.hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.hfe-search-form__container button#clear-with-button{
    visibility: hidden;
    position: absolute;
    top: 0;
    padding: 0 8px;
    font-style: normal;
    font-size: 1.2em;
    user-select: none;
    cursor: pointer;
    bottom:0;
    background-color: transparent;
}

.hfe-search-button-wrapper, 
.hfe-search-form__container,
.hfe-search-icon-toggle,
.hfe-search-button-wrapper .hfe-search-icon-toggle i,
.hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
    position: relative;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {
    position: absolute;
    width: 0;
    right: 0;
    background-color: transparent;
}

.hfe-search-icon-toggle {
    width: 100%!important;
}

.hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{
    position: absolute;
    width: 250px;
    right: 0;
}

.hfe-search-layout-text .hfe-search-form__container,
.hfe-search-layout-icon_text .hfe-search-form__container,
.hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input,
.hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
    width: 100%;
}

.hfe-search-icon-toggle {
    line-height: 1.5;
}

/*-------Navigation menu active parent---------*/
.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
 .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before  {
    width: 100%;
    left: 0;
    opacity:1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 0px;
    opacity:1;
}
.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 0px;
    opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 3px;
    width: 100%;
    left: 0;
    opacity: 1;
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    opacity:1;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    border-width:3px;
    width:100%;
    opacity:1;
    height:100%;
}

/* Scroll to top CSS */
.hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
    display: none;
}

.hfe-scroll-to-top-wrap.edit-mode,
.hfe-scroll-to-top-wrap.single-page-off {
    display: none !important;
}

.hfe-scroll-to-top-button {
    position:fixed;
    right:15px;
    bottom:15px;
    z-index:9999;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50px;
    background-color:#000000;
    color:#fff;
    text-align:center;
    opacity:1;
    cursor:pointer;
    -webkit-transition:all .3s;
    transition:all .3s;
}

.hfe-scroll-to-top-button i {
    color:#fff;
    font-size:16px;
}
/* Breadcrumbs CSS */

ul.hfe-breadcrumbs {
    display:block;
    margin:0;
    padding:0;
    list-style:none
}

ul.hfe-breadcrumbs li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

ul.hfe-breadcrumbs li:last-child {
    margin:0;
}

ul.hfe-breadcrumbs li a,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    display:block;
}

ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    -webkit-transition:all .4s;
    transition:all .4s;
}

span.hfe-breadcrumbs-home-icon{
    margin-right:10px;
    align-content: center;
}

.hfe-breadcrumbs-first a {
    align-content: center;
}

.hfe-breadcrumbs-separator-icon i, 
.hfe-breadcrumbs-separator-icon svg,
.hfe-breadcrumbs-home-icon i,
.hfe-breadcrumbs-home-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
    display: inline-flex;
}

/* Post Info CSS */

ul.hfe-post-info-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.hfe-post-info-inline.hfe-post-info-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

li.hfe-post-info-item {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

li.hfe-post-info-item,
li.hfe-post-info-item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

.hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
    margin-right: 8px;
    margin-left: 8px;
}

.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
    position: relative;
    right: -8px;
}

.hfe-post-info-inline.hfe-post-info-items {
    margin-right: -8px;
    margin-left: -8px;
}

.hfe-post-info-icon svg {
    display: block;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
    position: relative;
}


/* Info Card CSS */
.hfe-icon-wrap .hfe-icon svg {
    height: 100%;
    width: 100%;
}
body .elementor .hfe-button-wrapper a {
    text-decoration: none;
}
.hfe-button-wrapper {
    border-radius: 3px;
}


.hfe-reading-progress-bar{
    height: 4px;
}

/* Basic Posts Widget CSS - Only essential structure, no styling */
.hfe-posts-grid {
    display: grid;
}

.hfe-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hfe-post-title a {
    text-decoration: none;
}
.hfe-post-title {
    margin-top: 0px;
}
.hfe-read-more {
    text-decoration: none;
}
.hfe-post-meta {
    font-size: 12px;
    line-height: 1.3em;
}
.hfe-post-title {
    font-size: 20px;
}.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
.wslu-color-scheme--facebook{--wslu-color-scheme:#3B5998;--wslu-color-scheme-lighten:#718dc8;--wslu-color-scheme-darken:#2d4373}.wslu-color-scheme--twitter{--wslu-color-scheme:#1DA1F2;--wslu-color-scheme-lighten:#7dc9f8;--wslu-color-scheme-darken:#0c85d0}.wslu-color-scheme--dribbble{--wslu-color-scheme:#EA4C89;--wslu-color-scheme-lighten:#f5a7c5;--wslu-color-scheme-darken:#e51e6b}.wslu-color-scheme--pinterest{--wslu-color-scheme:#bd081c;--wslu-color-scheme-lighten:#f6354a;--wslu-color-scheme-darken:#8c0615}.wslu-color-scheme--instagram{--wslu-color-scheme:#5851DB;--wslu-color-scheme-lighten:#a9a6ec;--wslu-color-scheme-darken:#332bce}.wslu-color-scheme--github{--wslu-color-scheme:#6E5494;--wslu-color-scheme-lighten:#a28fbf;--wslu-color-scheme-darken:#564273}.wslu-color-scheme--linkedin{--wslu-color-scheme:#0077B5;--wslu-color-scheme-lighten:#1cb1ff;--wslu-color-scheme-darken:#005582}.wslu-color-scheme--vkontakte{--wslu-color-scheme:#45668E;--wslu-color-scheme-lighten:#7a99bf;--wslu-color-scheme-darken:#344d6c}.wslu-color-scheme--reddit{--wslu-color-scheme:#FF4500;--wslu-color-scheme-lighten:#ff8f66;--wslu-color-scheme-darken:#cc3700}.wslu-color-scheme--skype{--wslu-color-scheme:#00aff0;--wslu-color-scheme-lighten:#57d2ff;--wslu-color-scheme-darken:#008abd}.wslu-color-scheme--wordpress{--wslu-color-scheme:#21759B;--wslu-color-scheme-lighten:#4aacd8;--wslu-color-scheme-darken:#185571}.wslu-color-scheme--google{--wslu-color-scheme:#4285F4;--wslu-color-scheme-lighten:#a2c3fa;--wslu-color-scheme-darken:#1266f1}.wslu-color-scheme--youtube{--wslu-color-scheme:#ff0000;--wslu-color-scheme-lighten:#ff6666;--wslu-color-scheme-darken:#cc0000}.wslu-color-scheme--vimeo{--wslu-color-scheme:#1ab7ea;--wslu-color-scheme-lighten:#77d4f3;--wslu-color-scheme-darken:#1295bf}.wslu-color-scheme--whatsapp{--wslu-color-scheme:#25d366;--wslu-color-scheme-lighten:#77e7a1;--wslu-color-scheme-darken:#1da851}.wslu-color-scheme--mailchimp{--wslu-color-scheme:#6dc5dc;--wslu-color-scheme-lighten:#bfe6f0;--wslu-color-scheme-darken:#44b5d2}.wslu-color-scheme--posts{--wslu-color-scheme:#36454f;--wslu-color-scheme-lighten:#5f7a8c;--wslu-color-scheme-darken:#212b31}.wslu-color-scheme--comments{--wslu-color-scheme:#000000;--wslu-color-scheme-lighten:#333333;--wslu-color-scheme-darken:black}.wslu-color-scheme--facebook-messenger{--wslu-color-scheme:#3b5998;--wslu-color-scheme-lighten:#718dc8;--wslu-color-scheme-darken:#2d4373}.wslu-color-scheme--kik{--wslu-color-scheme:#82bc23;--wslu-color-scheme-lighten:#b2e263;--wslu-color-scheme-darken:#64911b}.wslu-color-scheme--trello{--wslu-color-scheme:#0079bf;--wslu-color-scheme-lighten:#26afff;--wslu-color-scheme-darken:#00598c}.wslu-color-scheme--viber{--wslu-color-scheme:#59267c;--wslu-color-scheme-lighten:#9043c5;--wslu-color-scheme-darken:#3d1a55}.wslu-color-scheme--telegram{--wslu-color-scheme:#0088cc;--wslu-color-scheme-lighten:#33bbff;--wslu-color-scheme-darken:#006699}.wslu-color-scheme--email{--wslu-color-scheme:#ea4335;--wslu-color-scheme-lighten:#f49991;--wslu-color-scheme-darken:#d62516}.wslu-color-scheme--digg{--wslu-color-scheme:#005be2;--wslu-color-scheme-lighten:#4992ff;--wslu-color-scheme-darken:#0046af}.wslu-color-scheme--stumbleupon{--wslu-color-scheme:#eb4924;--wslu-color-scheme-lighten:#f49781;--wslu-color-scheme-darken:#ca3412}.wslu-color-scheme--lineapp{--wslu-color-scheme:#06C755;--wslu-color-scheme-lighten:#3af988;--wslu-color-scheme-darken:#059540}.wslu #loginform #XS_social_login_div{display:none}.wslu #loginform #XS_social_login_div_login{display:-webkit-box}#XS_social_login_div{clear:both;display:-webkit-box;width:100%;max-width:300px;margin:0 auto}#XS_social_login_div_login{clear:both;position:relative;padding-top:25px;width:100%;margin:0 auto;display:-webkit-box}.wslu-hover-content{display:none;z-index:1}._login_button_style__ul{width:100%;list-style:none;margin:0}._login_button_style__ul .facebook .social-icon{background-color:#3b5998}._login_button_style__ul .facebook .login-button-text{color:#3b5998}._login_button_style__ul .facebook:hover>a{background-color:#3b5998}._login_button_style__ul .facebook:hover .social-icon{background-color:#344e86}._login_button_style__ul .twitter .social-icon{background-color:#1da1f2}._login_button_style__ul .twitter .login-button-text{color:#1da1f2}._login_button_style__ul .twitter:hover>a{background-color:#1da1f2}._login_button_style__ul .twitter:hover .social-icon{background-color:#0d95e8}._login_button_style__ul .dribbble .social-icon{background-color:#ea4c89}._login_button_style__ul .dribbble .login-button-text{color:#ea4c89}._login_button_style__ul .dribbble:hover>a{background-color:#ea4c89}._login_button_style__ul .dribbble:hover .social-icon{background-color:#e7357a}._login_button_style__ul .pinterest .social-icon{background-color:#bd081c}._login_button_style__ul .pinterest .login-button-text{color:#bd081c}._login_button_style__ul .pinterest:hover>a{background-color:#bd081c}._login_button_style__ul .pinterest:hover .social-icon{background-color:#a50718}._login_button_style__ul .instagram .social-icon{background-color:#5851db}._login_button_style__ul .instagram .login-button-text{color:#5851db}._login_button_style__ul .instagram:hover>a{background-color:#5851db}._login_button_style__ul .instagram:hover .social-icon{background-color:#443cd7}._login_button_style__ul .github .social-icon{background-color:#6e5494}._login_button_style__ul .github .login-button-text{color:#6e5494}._login_button_style__ul .github:hover>a{background-color:#6e5494}._login_button_style__ul .github:hover .social-icon{background-color:#624b84}._login_button_style__ul .linkedin .social-icon{background-color:#0077b5}._login_button_style__ul .linkedin .login-button-text{color:#0077b5}._login_button_style__ul .linkedin:hover>a{background-color:#0077b5}._login_button_style__ul .linkedin:hover .social-icon{background-color:#00669c}._login_button_style__ul .vkontakte .social-icon{background-color:#45668e}._login_button_style__ul .vkontakte .login-button-text{color:#45668e}._login_button_style__ul .vkontakte:hover>a{background-color:#45668e}._login_button_style__ul .vkontakte:hover .social-icon{background-color:#3d5a7d}._login_button_style__ul .reddit .social-icon{background-color:#ff4500}._login_button_style__ul .reddit .login-button-text{color:#ff4500}._login_button_style__ul .reddit:hover>a{background-color:#ff4500}._login_button_style__ul .reddit:hover .social-icon{background-color:#e63e00}._login_button_style__ul .skype .social-icon{background-color:#00aff0}._login_button_style__ul .skype .login-button-text{color:#00aff0}._login_button_style__ul .skype:hover>a{background-color:#00aff0}._login_button_style__ul .skype:hover .social-icon{background-color:#009cd7}._login_button_style__ul .wordpress .social-icon{background-color:#21759b}._login_button_style__ul .wordpress .login-button-text{color:#21759b}._login_button_style__ul .wordpress:hover>a{background-color:#21759b}._login_button_style__ul .wordpress:hover .social-icon{background-color:#1d6586}._login_button_style__ul .google .social-icon{background-color:#4285f4}._login_button_style__ul .google .login-button-text{color:#4285f4}._login_button_style__ul .google:hover>a{background-color:#4285f4}._login_button_style__ul .google:hover .social-icon{background-color:#2a75f3}._login_button_style__ul .youtube .social-icon{background-color:red}._login_button_style__ul .youtube .login-button-text{color:red}._login_button_style__ul .youtube:hover>a{background-color:red}._login_button_style__ul .youtube:hover .social-icon{background-color:#e60000}._login_button_style__ul .vimeo .social-icon{background-color:#1ab7ea}._login_button_style__ul .vimeo .login-button-text{color:#1ab7ea}._login_button_style__ul .vimeo:hover>a{background-color:#1ab7ea}._login_button_style__ul .vimeo:hover .social-icon{background-color:#14a7d7}._login_button_style__ul .whatsapp .social-icon{background-color:#25d366}._login_button_style__ul .whatsapp .login-button-text{color:#25d366}._login_button_style__ul .whatsapp:hover>a{background-color:#25d366}._login_button_style__ul .whatsapp:hover .social-icon{background-color:#21bd5c}._login_button_style__ul .mailchimp .social-icon{background-color:#6dc5dc}._login_button_style__ul .mailchimp .login-button-text{color:#6dc5dc}._login_button_style__ul .mailchimp:hover>a{background-color:#6dc5dc}._login_button_style__ul .mailchimp:hover .social-icon{background-color:#58bdd7}._login_button_style__ul .posts .social-icon{background-color:#36454f}._login_button_style__ul .posts .login-button-text{color:#36454f}._login_button_style__ul .posts:hover>a{background-color:#36454f}._login_button_style__ul .posts:hover .social-icon{background-color:#2c3840}._login_button_style__ul .comments .social-icon{background-color:#000}._login_button_style__ul .comments .login-button-text{color:#000}._login_button_style__ul .comments:hover>a{background-color:#000}._login_button_style__ul .comments:hover .social-icon{background-color:#000}._login_button_style__ul .facebook-messenger .social-icon{background-color:#3b5998}._login_button_style__ul .facebook-messenger .login-button-text{color:#3b5998}._login_button_style__ul .facebook-messenger:hover>a{background-color:#3b5998}._login_button_style__ul .facebook-messenger:hover .social-icon{background-color:#344e86}._login_button_style__ul .kik .social-icon{background-color:#82bc23}._login_button_style__ul .kik .login-button-text{color:#82bc23}._login_button_style__ul .kik:hover>a{background-color:#82bc23}._login_button_style__ul .kik:hover .social-icon{background-color:#73a71f}._login_button_style__ul .trello .social-icon{background-color:#0079bf}._login_button_style__ul .trello .login-button-text{color:#0079bf}._login_button_style__ul .trello:hover>a{background-color:#0079bf}._login_button_style__ul .trello:hover .social-icon{background-color:#0069a6}._login_button_style__ul .viber .social-icon{background-color:#59267c}._login_button_style__ul .viber .login-button-text{color:#59267c}._login_button_style__ul .viber:hover>a{background-color:#59267c}._login_button_style__ul .viber:hover .social-icon{background-color:#4b2068}._login_button_style__ul .telegram .social-icon{background-color:#08c}._login_button_style__ul .telegram .login-button-text{color:#08c}._login_button_style__ul .telegram:hover>a{background-color:#08c}._login_button_style__ul .telegram:hover .social-icon{background-color:#0077b3}._login_button_style__ul .email .social-icon{background-color:#ea4335}._login_button_style__ul .email .login-button-text{color:#ea4335}._login_button_style__ul .email:hover>a{background-color:#ea4335}._login_button_style__ul .email:hover .social-icon{background-color:#e82e1e}._login_button_style__ul .digg .social-icon{background-color:#005be2}._login_button_style__ul .digg .login-button-text{color:#005be2}._login_button_style__ul .digg:hover>a{background-color:#005be2}._login_button_style__ul .digg:hover .social-icon{background-color:#0051c9}._login_button_style__ul .stumbleupon .social-icon{background-color:#eb4924}._login_button_style__ul .stumbleupon .login-button-text{color:#eb4924}._login_button_style__ul .stumbleupon:hover>a{background-color:#eb4924}._login_button_style__ul .stumbleupon:hover .social-icon{background-color:#e13b15}._login_button_style__ul .lineapp .social-icon{background-color:#06c755}._login_button_style__ul .lineapp .login-button-text{color:#06c755}._login_button_style__ul .lineapp:hover>a{background-color:#06c755}._login_button_style__ul .lineapp:hover .social-icon{background-color:#05ae4a}._login_button_style__ul>li:not(:last-child){margin-bottom:20px}._login_button_style__ul>li>a{display:block;text-decoration:none;-webkit-box-shadow:0 15px 50px 0 rgba(0,0,0,.07);box-shadow:0 15px 50px 0 rgba(0,0,0,.07);padding:10px;border-radius:30px;-webkit-transition:background .4s cubic-bezier(.47,0,.75,.72),-webkit-transform .6s cubic-bezier(.39,.58,.57,1);transition:background .4s cubic-bezier(.47,0,.75,.72),-webkit-transform .6s cubic-bezier(.39,.58,.57,1);transition:background .4s cubic-bezier(.47,0,.75,.72),transform .6s cubic-bezier(.39,.58,.57,1);transition:background .4s cubic-bezier(.47,0,.75,.72),transform .6s cubic-bezier(.39,.58,.57,1),-webkit-transform .6s cubic-bezier(.39,.58,.57,1)}._login_button_style__ul>li>a:hover{-webkit-transform:scale(.95);transform:scale(.95)}._login_button_style__ul>li>a:hover .login-button-text{color:#fff}._login_button_style__ul>li>a .xs-social-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}._login_button_style__ul>li>a .social-icon{height:40px;width:40px;line-height:40px;border-radius:20px;text-align:center;-webkit-transition:background-color .4s ease;transition:background-color .4s ease}._login_button_style__ul>li>a .social-icon>img{max-width:12px;display:inline-block}._login_button_style__ul>li>a .social-icon>span{color:#fff;font-size:13px}._login_button_style__ul>li>a .login-button-text{font-size:14px;font-weight:500;margin-left:15px;-webkit-transition:color .4s ease;transition:color .4s ease}._login_button_style__ul .xs-li-style2{display:inline-block}._login_button_style__ul .xs-li-style2:not(:last-child){margin-right:5px}._login_button_style__ul .xs-li-style2>a{display:inline-block;padding:0}._login_button_style__ul .xs-li-style2>a:hover{-webkit-transform:scale(1);transform:scale(1)}.xs_social_counter_widget{width:100%;clear:both}.xs_social_counter_widget .xs_counter_url{width:100%;list-style:none;text-align:center;margin:0;padding:0}.xs_social_counter_widget .xs_counter_url li{border-right:0;margin:0!important;min-width:33.33%;-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative;padding:0;border:none}.xs_social_counter_widget .xs_counter_url li a{width:100%;padding:18px 0 12px 0!important;-webkit-transition:all .4s;transition:all .4s;text-decoration:none;-webkit-box-shadow:none;box-shadow:none}.xs_social_counter_widget .xs_counter_url li a .met-social,.xs_social_counter_widget .xs_counter_url li a>div{-webkit-transition:all .4s;transition:all .4s}.xs_social_counter_widget .xs_counter_url li a .met-social:before,.xs_social_counter_widget .xs_counter_url li a>div:before{-webkit-transition:all .4s;transition:all .4s}.xs_social_counter_widget .xs_counter_url li a:active,.xs_social_counter_widget .xs_counter_url li a:focus,.xs_social_counter_widget .xs_counter_url li a:hover{outline:0;-webkit-box-shadow:none;box-shadow:none}.xs_social_counter_widget .xs_counter_url li a>div{line-height:14px}.xs_social_counter_widget .xs_counter_url li a>div.xs-social-icon{line-height:initial;margin-bottom:5px}.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .wslu-both-counter-text,.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .wslu-share-count--text,.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .wslu-share-count--total,.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .xs-social-follower-label,.xs_social_counter_widget .xs_counter_url.wslu-theme-font-no .xs-social-follower-text{font-family:Helvetica,sans-serif}.xs_social_counter_widget .xs_counter_url.wslu-counter-box-shaped{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.xs_social_counter_widget .xs_counter_url.wslu-counter-box-shaped li{max-width:33.33%}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.facebook span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.facebook span::before{color:#3b5998!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.twitter span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.twitter span::before{color:#1da1f2!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.dribbble span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.dribbble span::before{color:#ea4c89!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.pinterest span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.pinterest span::before{color:#bd081c!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.instagram span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.instagram span::before{color:#5851db!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.github span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.github span::before{color:#6e5494!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.linkedin span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.linkedin span::before{color:#0077b5!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.vkontakte span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.vkontakte span::before{color:#45668e!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.reddit span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.reddit span::before{color:#ff4500!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.skype span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.skype span::before{color:#00aff0!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.wordpress span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.wordpress span::before{color:#21759b!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.google span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.google span::before{color:#4285f4!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.youtube span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.youtube span::before{color:red!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.vimeo span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.vimeo span::before{color:#1ab7ea!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.whatsapp span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.whatsapp span::before{color:#25d366!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.mailchimp span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.mailchimp span::before{color:#6dc5dc!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.posts span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.posts span::before{color:#36454f!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.comments span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.comments span::before{color:#000!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.facebook-messenger span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.facebook-messenger span::before{color:#3b5998!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.kik span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.kik span::before{color:#82bc23!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.trello span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.trello span::before{color:#0079bf!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.viber span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.viber span::before{color:#59267c!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.telegram span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.telegram span::before{color:#08c!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.email span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.email span::before{color:#ea4335!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.digg span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.digg span::before{color:#005be2!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.stumbleupon span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.stumbleupon span::before{color:#eb4924!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.lineapp span{background-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color li.lineapp span::before{color:#06c755!important}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored.wslu-counter-icon-fill-color.wslu-counter-thin-border li{border-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li{border-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li:last-child,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li:nth-child(3n+3){border-color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook{background-color:#3b5998}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.twitter{background-color:#1da1f2}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.twitter .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.twitter .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.twitter a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.twitter span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.dribbble{background-color:#ea4c89}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.dribbble .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.dribbble .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.dribbble a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.dribbble span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.pinterest{background-color:#bd081c}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.pinterest .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.pinterest .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.pinterest a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.pinterest span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.instagram{background-color:#5851db}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.instagram .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.instagram .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.instagram a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.instagram span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.github{background-color:#6e5494}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.github .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.github .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.github a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.github span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.linkedin{background-color:#0077b5}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.linkedin .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.linkedin .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.linkedin a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.linkedin span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vkontakte{background-color:#45668e}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vkontakte .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vkontakte .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vkontakte a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vkontakte span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.reddit{background-color:#ff4500}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.reddit .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.reddit .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.reddit a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.reddit span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.skype{background-color:#00aff0}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.skype .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.skype .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.skype a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.skype span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.wordpress{background-color:#21759b}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.wordpress .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.wordpress .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.wordpress a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.wordpress span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.google{background-color:#4285f4}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.google .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.google .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.google a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.google span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.youtube{background-color:red}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.youtube .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.youtube .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.youtube a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.youtube span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vimeo{background-color:#1ab7ea}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vimeo .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vimeo .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vimeo a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.vimeo span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.whatsapp{background-color:#25d366}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.whatsapp .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.whatsapp .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.whatsapp a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.whatsapp span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.mailchimp{background-color:#6dc5dc}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.mailchimp .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.mailchimp .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.mailchimp a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.mailchimp span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.posts{background-color:#36454f}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.posts .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.posts .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.posts a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.posts span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.comments{background-color:#000}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.comments .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.comments .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.comments a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.comments span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook-messenger{background-color:#3b5998}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook-messenger .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook-messenger .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook-messenger a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.facebook-messenger span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.kik{background-color:#82bc23}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.kik .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.kik .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.kik a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.kik span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.trello{background-color:#0079bf}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.trello .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.trello .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.trello a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.trello span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.viber{background-color:#59267c}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.viber .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.viber .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.viber a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.viber span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.telegram{background-color:#08c}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.telegram .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.telegram .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.telegram a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.telegram span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.email{background-color:#ea4335}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.email .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.email .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.email a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.email span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.digg{background-color:#005be2}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.digg .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.digg .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.digg a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.digg span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.stumbleupon{background-color:#eb4924}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.stumbleupon .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.stumbleupon .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.stumbleupon a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.stumbleupon span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.lineapp{background-color:#06c755}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.lineapp .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.lineapp .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.lineapp a,.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li.lineapp span{color:#fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-fill-colored li a:focus{outline:0}.xs_social_counter_widget .xs_counter_url.wslu-counter-rounded li{border-radius:100px}.xs_social_counter_widget .xs_counter_url.wslu-counter-rounded .wslu-hover-content{border-radius:100px}.xs_social_counter_widget .xs_counter_url.wslu-counter-space li{border:3px solid #fff}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:-webkit-max-content;width:-moz-max-content;width:max-content}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped.wslu-counter-icon-fill-color li .xs-social-icon span{width:26px;height:26px;text-align:center;margin:0}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li{width:100%;padding:0}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li:not(:last-child){border-bottom:0}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px!important;font-size:15px;text-transform:uppercase;line-height:15px;text-decoration:none;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li .xs-social-follower,.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li .xs-social-follower-text,.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li .xs-social-icon{margin:0 5px}.xs_social_counter_widget .xs_counter_url.wslu-counter-line-shaped li .met-social{height:auto;width:auto;font-size:12px}.xs_social_counter_widget .xs_counter_url .xs-social-icon span{color:#333;font-size:24px;display:inline-block;border-radius:100px}.xs_social_counter_widget .xs_counter_url .xs-social-follower{color:#333;font-size:16px;font-weight:600;margin-bottom:5px}.xs_social_counter_widget .xs_counter_url .xs-social-follower-text{font-size:9px;color:#999;text-transform:uppercase}.xs_social_share_widget.wslu-theme-font-no .wslu-both-counter-text,.xs_social_share_widget.wslu-theme-font-no .wslu-share-count--text,.xs_social_share_widget.wslu-theme-font-no .wslu-share-count--total,.xs_social_share_widget.wslu-theme-font-no .xs-social-follower,.xs_social_share_widget.wslu-theme-font-no .xs-social-follower-label,.xs_social_share_widget.wslu-theme-font-no .xs-social-follower-text{font-family:Helvetica,sans-serif}.xs_social_share_widget.xs_share_url{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:-webkit-fit-content!important;width:-moz-fit-content!important;width:fit-content!important;max-width:100%!important}.xs_social_share_widget.xs_share_url ul{position:relative;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;text-align:center;margin:0;padding:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-ms-flex-wrap:wrap;flex-wrap:wrap}.xs_social_share_widget.xs_share_url ul li{margin:0}.xs_social_share_widget.xs_share_url ul li>a{display:block;text-decoration:none;-webkit-box-shadow:0 15px 50px 0 rgba(0,0,0,.07);box-shadow:0 15px 50px 0 rgba(0,0,0,.07);padding:5px;-webkit-transition:all .4s cubic-bezier(.47,0,.75,.72);transition:all .4s cubic-bezier(.47,0,.75,.72);-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px;line-height:17px;position:relative;background-color:transparent}.xs_social_share_widget.xs_share_url ul li>a .xs-social-icon{text-align:center}.xs_social_share_widget.xs_share_url ul li>a .xs-social-icon span{color:#fff;-webkit-transition:background,opacity .3s ease-in-out;transition:background,opacity .3s ease-in-out}.xs_social_share_widget.xs_share_url ul li.wslu-no-extra-data>a .xs-social-icon{padding:6px 10px;min-width:36px}.xs_social_share_widget.xs_share_url ul li .wslu-both-counter-text{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xs_social_share_widget.xs_share_url ul li.wslu-share-more-btn{margin:0;padding:0!important}.xs_social_share_widget.xs_share_url ul li.wslu-share-more-btn a{background-color:#00a600;color:#fff;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;cursor:pointer;-webkit-transition:all .4s;transition:all .4s}.xs_social_share_widget.xs_share_url ul li.wslu-share-more-btn a .wslu-share-more-btn--icon{margin-right:3px}.xs_social_share_widget.xs_share_url ul .wslu-share-more{position:absolute;top:120%;right:0;width:250px;background-color:#fff;padding:30px;-webkit-box-shadow:0 10px 25px rgba(0,0,0,.1);box-shadow:0 10px 25px rgba(0,0,0,.1);border-radius:5px;margin-top:15px;opacity:0;visibility:hidden;-webkit-transition:all .4s;transition:all .4s;z-index:1}.xs_social_share_widget.xs_share_url ul .wslu-share-more.active{opacity:1;visibility:visible;top:100%}.xs_social_share_widget.xs_share_url ul .wslu-share-more:before{content:"";width:0;height:0;border-left:15px solid transparent;border-right:15px solid transparent;border-bottom:15px solid #fff;position:absolute;top:-15px;right:20px}.xs_social_share_widget.xs_share_url ul .wslu-share-more ul{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.xs_social_share_widget.xs_share_url ul .wslu-share-more .wslu-share-more-btn-title{font-size:16px;line-height:18px;color:#101010;font-weight:600;margin:0;margin-bottom:12px;text-align:left}.xs_social_share_widget.xs_share_url ul .wslu-share-more .wslu-share-more-btn-close{color:#ff433c;font-size:15px;font-weight:700;position:absolute;right:15px;top:13px;cursor:pointer}.xs_social_share_widget.xs_share_url.wslu-share-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.xs_social_share_widget.xs_share_url.wslu-share-vertical ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.xs_social_share_widget.xs_share_url.wslu-share-vertical.wslu-share-m-5 li{margin:3px}.xs_social_share_widget.xs_share_url.wslu-share-vertical.wslu-share-m-5 .wslu-share-count{margin:0;margin-bottom:5px}.xs_social_share_widget.xs_share_url.wslu-share-vertical .wslu-share-count{width:100%}.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook a{background-color:#3b5998}.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook a .xs-social-follower{background-color:#263961}.xs_social_share_widget.xs_share_url.wslu-fill-colored .twitter a{background-color:#1da1f2}.xs_social_share_widget.xs_share_url.wslu-fill-colored .twitter a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .twitter a .xs-social-follower{background-color:#0b76b8}.xs_social_share_widget.xs_share_url.wslu-fill-colored .dribbble a{background-color:#ea4c89}.xs_social_share_widget.xs_share_url.wslu-fill-colored .dribbble a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .dribbble a .xs-social-follower{background-color:#d11960}.xs_social_share_widget.xs_share_url.wslu-fill-colored .pinterest a{background-color:#bd081c}.xs_social_share_widget.xs_share_url.wslu-fill-colored .pinterest a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .pinterest a .xs-social-follower{background-color:#740511}.xs_social_share_widget.xs_share_url.wslu-fill-colored .instagram a{background-color:#5851db}.xs_social_share_widget.xs_share_url.wslu-fill-colored .instagram a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .instagram a .xs-social-follower{background-color:#2e26b9}.xs_social_share_widget.xs_share_url.wslu-fill-colored .github a{background-color:#6e5494}.xs_social_share_widget.xs_share_url.wslu-fill-colored .github a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .github a .xs-social-follower{background-color:#4a3863}.xs_social_share_widget.xs_share_url.wslu-fill-colored .linkedin a{background-color:#0077b5}.xs_social_share_widget.xs_share_url.wslu-fill-colored .linkedin a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .linkedin a .xs-social-follower{background-color:#004569}.xs_social_share_widget.xs_share_url.wslu-fill-colored .vkontakte a{background-color:#45668e}.xs_social_share_widget.xs_share_url.wslu-fill-colored .vkontakte a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .vkontakte a .xs-social-follower{background-color:#2c415b}.xs_social_share_widget.xs_share_url.wslu-fill-colored .reddit a{background-color:#ff4500}.xs_social_share_widget.xs_share_url.wslu-fill-colored .reddit a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .reddit a .xs-social-follower{background-color:#b33000}.xs_social_share_widget.xs_share_url.wslu-fill-colored .skype a{background-color:#00aff0}.xs_social_share_widget.xs_share_url.wslu-fill-colored .skype a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .skype a .xs-social-follower{background-color:#0077a4}.xs_social_share_widget.xs_share_url.wslu-fill-colored .wordpress a{background-color:#21759b}.xs_social_share_widget.xs_share_url.wslu-fill-colored .wordpress a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .wordpress a .xs-social-follower{background-color:#14455c}.xs_social_share_widget.xs_share_url.wslu-fill-colored .google a{background-color:#4285f4}.xs_social_share_widget.xs_share_url.wslu-fill-colored .google a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .google a .xs-social-follower{background-color:#0d5bdd}.xs_social_share_widget.xs_share_url.wslu-fill-colored .youtube a{background-color:red}.xs_social_share_widget.xs_share_url.wslu-fill-colored .youtube a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .youtube a .xs-social-follower{background-color:#b30000}.xs_social_share_widget.xs_share_url.wslu-fill-colored .vimeo a{background-color:#1ab7ea}.xs_social_share_widget.xs_share_url.wslu-fill-colored .vimeo a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .vimeo a .xs-social-follower{background-color:#0f83a8}.xs_social_share_widget.xs_share_url.wslu-fill-colored .whatsapp a{background-color:#25d366}.xs_social_share_widget.xs_share_url.wslu-fill-colored .whatsapp a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .whatsapp a .xs-social-follower{background-color:#1a9247}.xs_social_share_widget.xs_share_url.wslu-fill-colored .mailchimp a{background-color:#6dc5dc}.xs_social_share_widget.xs_share_url.wslu-fill-colored .mailchimp a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .mailchimp a .xs-social-follower{background-color:#31accc}.xs_social_share_widget.xs_share_url.wslu-fill-colored .posts a{background-color:#36454f}.xs_social_share_widget.xs_share_url.wslu-fill-colored .posts a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .posts a .xs-social-follower{background-color:#171d22}.xs_social_share_widget.xs_share_url.wslu-fill-colored .comments a{background-color:#000}.xs_social_share_widget.xs_share_url.wslu-fill-colored .comments a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .comments a .xs-social-follower{background-color:#000}.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook-messenger a{background-color:#3b5998}.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook-messenger a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .facebook-messenger a .xs-social-follower{background-color:#263961}.xs_social_share_widget.xs_share_url.wslu-fill-colored .kik a{background-color:#82bc23}.xs_social_share_widget.xs_share_url.wslu-fill-colored .kik a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .kik a .xs-social-follower{background-color:#557c17}.xs_social_share_widget.xs_share_url.wslu-fill-colored .trello a{background-color:#0079bf}.xs_social_share_widget.xs_share_url.wslu-fill-colored .trello a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .trello a .xs-social-follower{background-color:#004973}.xs_social_share_widget.xs_share_url.wslu-fill-colored .viber a{background-color:#59267c}.xs_social_share_widget.xs_share_url.wslu-fill-colored .viber a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .viber a .xs-social-follower{background-color:#2f1441}.xs_social_share_widget.xs_share_url.wslu-fill-colored .telegram a{background-color:#08c}.xs_social_share_widget.xs_share_url.wslu-fill-colored .telegram a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .telegram a .xs-social-follower{background-color:#005580}.xs_social_share_widget.xs_share_url.wslu-fill-colored .email a{background-color:#ea4335}.xs_social_share_widget.xs_share_url.wslu-fill-colored .email a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .email a .xs-social-follower{background-color:#bf2114}.xs_social_share_widget.xs_share_url.wslu-fill-colored .digg a{background-color:#005be2}.xs_social_share_widget.xs_share_url.wslu-fill-colored .digg a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .digg a .xs-social-follower{background-color:#003c96}.xs_social_share_widget.xs_share_url.wslu-fill-colored .stumbleupon a{background-color:#eb4924}.xs_social_share_widget.xs_share_url.wslu-fill-colored .stumbleupon a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .stumbleupon a .xs-social-follower{background-color:#b22e10}.xs_social_share_widget.xs_share_url.wslu-fill-colored .lineapp a{background-color:#06c755}.xs_social_share_widget.xs_share_url.wslu-fill-colored .lineapp a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-fill-colored .lineapp a .xs-social-follower{background-color:#047d35}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .wslu-share-more-btn,.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored a{background-color:#333}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .facebook:hover a{background-color:#3b5998}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .facebook:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .twitter:hover a{background-color:#1da1f2}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .twitter:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .dribbble:hover a{background-color:#ea4c89}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .dribbble:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .pinterest:hover a{background-color:#bd081c}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .pinterest:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .instagram:hover a{background-color:#5851db}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .instagram:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .github:hover a{background-color:#6e5494}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .github:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .linkedin:hover a{background-color:#0077b5}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .linkedin:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .vkontakte:hover a{background-color:#45668e}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .vkontakte:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .reddit:hover a{background-color:#ff4500}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .reddit:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .skype:hover a{background-color:#00aff0}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .skype:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .wordpress:hover a{background-color:#21759b}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .wordpress:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .google:hover a{background-color:#4285f4}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .google:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .youtube:hover a{background-color:red}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .youtube:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .vimeo:hover a{background-color:#1ab7ea}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .vimeo:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .whatsapp:hover a{background-color:#25d366}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .whatsapp:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .mailchimp:hover a{background-color:#6dc5dc}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .mailchimp:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .posts:hover a{background-color:#36454f}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .posts:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .comments:hover a{background-color:#000}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .comments:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .facebook-messenger:hover a{background-color:#3b5998}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .facebook-messenger:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .kik:hover a{background-color:#82bc23}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .kik:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .trello:hover a{background-color:#0079bf}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .trello:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .viber:hover a{background-color:#59267c}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .viber:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .telegram:hover a{background-color:#08c}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .telegram:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .email:hover a{background-color:#ea4335}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .email:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .digg:hover a{background-color:#005be2}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .digg:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .stumbleupon:hover a{background-color:#eb4924}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .stumbleupon:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .lineapp:hover a{background-color:#06c755}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored .lineapp:hover a span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored.wslu-icon-border-colored-hover li a{background-color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored.wslu-icon-border-colored-hover li a span{color:#333}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored.wslu-icon-border-colored-hover li a:hover span{color:#fff}.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored li.wslu-share-more-btn.active,.xs_social_share_widget.xs_share_url.wslu-fill-brand-hover-colored li.wslu-share-more-btn:hover{background-color:#00a600}.xs_social_share_widget.xs_share_url.wslu-share-m-5 li{margin:3px}.xs_social_share_widget.xs_share_url.wslu-share-m-5 .wslu-share-count{margin:3px 5px 3px 0}.xs_social_share_widget.xs_share_url.wslu-share-rounded li a{border-radius:100px}.xs_social_share_widget.xs_share_url.wslu-share-rounded li a .wslu-both-counter-text{border-top-right-radius:100px;border-bottom-right-radius:100px}.xs_social_share_widget.xs_share_url.wslu-share-rounded li a .xs-social-icon{border-radius:100px}.xs_social_share_widget.xs_share_url.wslu-share-rounded li.wslu-share-more-btn{border-radius:100px}.xs_social_share_widget.xs_share_url.wslu-share-rounded .wslu-hover-content,.xs_social_share_widget.xs_share_url.wslu-share-rounded .wslu-share-count{border-radius:100px}.xs_social_share_widget.xs_share_url.wslu-share-rounded.wslu-slide-top li:hover .wslu-hover-content{margin-bottom:2px}.xs_social_share_widget.xs_share_url.wslu-share-rounded.wslu-slide-down li:hover .wslu-hover-content{margin-top:2px}.xs_social_share_widget.xs_share_url.wslu-share-rounded.wslu-slide-right li:hover .wslu-hover-content{margin-left:2px}.xs_social_share_widget.xs_share_url.wslu-share-rounded.wslu-slide-left li:hover .wslu-hover-content{margin-right:2px}.xs_social_share_widget.xs_share_url.wslu-share-box-shaped{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.xs_social_share_widget.xs_share_url.wslu-share-box-shaped li a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.xs_social_share_widget.xs_share_url.wslu-share-box-shaped li a .wslu-both-counter-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:10px;-ms-flex:10px;flex:10px}.xs_social_share_widget.xs_share_url.wslu-share-box-shaped li a .wslu-both-counter-text,.xs_social_share_widget.xs_share_url.wslu-share-box-shaped li a .xs-social-icon{padding:0 10px}.xs_social_share_widget.xs_share_url.wslu-share-box-shaped li.wslu-extra-data a .xs-social-icon{padding-top:3px;padding-bottom:3px}.xs_social_share_widget.xs_share_url .wslu-both-counter-text,.xs_social_share_widget.xs_share_url .xs-social-follower{font-size:12px;color:#fff;line-height:14px}.xs_social_share_widget.xs_share_url.wslu-radius-3 a{border-radius:3px}.xs_social_share_widget.xs_share_url.wslu-radius-3 a .wslu-both-counter-text{border-top-right-radius:3px;border-bottom-right-radius:3px}.xs_social_share_widget.xs_share_url.wslu-radius-3 a .wslu-hover-content{border-radius:3px}.xs_social_share_widget.xs_share_url.wslu-radius-3 .wslu-share-count,.xs_social_share_widget.xs_share_url.wslu-radius-3 .wslu-share-more-btn{border-radius:3px}.xs_social_share_widget.xs_share_url.wslu-radius-3.wslu-slide-top li a:hover .wslu-hover-content{margin-bottom:2px}.xs_social_share_widget.xs_share_url.wslu-radius-3.wslu-slide-down li a:hover .wslu-hover-content{margin-top:2px}.xs_social_share_widget.xs_share_url.wslu-radius-3.wslu-slide-right li a:hover .wslu-hover-content{margin-left:2px}.xs_social_share_widget.xs_share_url.wslu-radius-3.wslu-slide-left li a:hover .wslu-hover-content{margin-right:2px}.xs_social_share_widget.xs_share_url.wslu-share-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:nowrap;flex-wrap:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex}.xs_social_share_widget.xs_share_url.wslu-share-horizontal ul{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.xs_social_share_widget.xs_share_url.wslu-share-horizontal .wslu-share-count{padding:4px 9px}.xs_social_share_widget.xs_share_url.wslu-share-horizontal.wslu-share-m-5 li{margin:3px}.xs_social_share_widget.xs_share_url.wslu-share-horizontal.wslu-share-m-5 .wslu-share-more li{margin:3px}.xs_social_share_widget.xs_share_url.wslu-share-horizontal.wslu-style-18{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.xs_social_share_widget.xs_share_url.wslu-share-horizontal.wslu-style-18 a{height:100%}.xs_social_share_widget.left_content,.xs_social_share_widget.right_content{position:fixed;z-index:9999;-webkit-transition:all .3s ease-out;transition:all .3s ease-out;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-box-align:inherit!important;-ms-flex-align:inherit!important;align-items:inherit!important}.xs_social_share_widget.left_content .wslu-share-count,.xs_social_share_widget.right_content .wslu-share-count{padding:9px 9px;max-width:100%;width:100%}.xs_social_share_widget.left_content.xs_share_url li,.xs_social_share_widget.right_content.xs_share_url li{display:block;margin-left:0;margin-right:0;min-width:38px}.xs_social_share_widget.left_content.wslu-share-m-5 li,.xs_social_share_widget.right_content.wslu-share-m-5 li{margin:3px}.xs_social_share_widget.left_content.wslu-share-m-5 .wslu-share-count,.xs_social_share_widget.right_content.wslu-share-m-5 .wslu-share-count{margin-bottom:5px}.xs_social_share_widget.right_content{left:auto;right:0}.xs_social_share_widget.bottom_content,.xs_social_share_widget.top_content{position:fixed;z-index:9999;-webkit-transition:all .3s ease-out;transition:all .3s ease-out;top:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.xs_social_share_widget.bottom_content.xs_share_url ul li,.xs_social_share_widget.top_content.xs_share_url ul li{display:inline-block}.xs_social_share_widget.bottom_content{top:auto;bottom:0}.xs_social_share_widget .met-social{line-height:24px}.wslu-fill-brand-hover-colored .wslu-share-count,.wslu-fill-colored .wslu-share-count{padding:9px}.wslu-share-count{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;background-color:#fff;margin:0 auto;padding:0 12px}.wslu-share-count--total{font-size:16px;line-height:18px;color:#333}.wslu-share-count--text{font-size:10px;line-height:10px;letter-spacing:.5px;color:#333;text-transform:uppercase}#xs-social-login-container a{text-decoration:none;display:inline-block}#xs-social-login-container a:hover{text-decoration:none}#xs-social-login-container a:focus{-webkit-box-shadow:none;box-shadow:none;outline:0}#xs-social-login-container span{display:inline-block}#xs-social-login-container .wslu-logout-button{background:#2271b1;color:#fff;font-size:16px;padding:10px;width:100%;text-align:center;font-weight:400;border-radius:5px;-webkit-transition:all linear .3s;transition:all linear .3s}#xs-social-login-container .wslu-logout-button:hover{color:#fff;background-color:#005b93}#xs-social-login-container{max-width:300px;margin:30px auto;padding-bottom:50px}#xs-social-login-container .xs-login--style-1{display:grid;grid-template-columns:1fr;grid-gap:15px;--iconbox-size:40px}#xs-social-login-container .xs-login--style-1 .xs-login__item{background-color:#fff;padding:6px;border-radius:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:0 15px 35px rgba(0,0,0,.06);box-shadow:0 15px 35px rgba(0,0,0,.06);-webkit-transition:all linear .3s;transition:all linear .3s}#xs-social-login-container .xs-login--style-1 .xs-login__item:hover{background-color:var(--wslu-color-scheme);-webkit-box-shadow:0;box-shadow:0}#xs-social-login-container .xs-login--style-1 .xs-login__item:hover .xs-login__item--icon{background-color:#fff;color:var(--wslu-color-scheme)}#xs-social-login-container .xs-login--style-1 .xs-login__item:hover .xs-login__item--label{color:#fff}#xs-social-login-container .xs-login--style-1 .xs-login__item--icon{background-color:var(--wslu-color-scheme);width:var(--iconbox-size);height:var(--iconbox-size);line-height:var(--iconbox-size);text-align:center;border-radius:var(--iconbox-size);color:#fff;font-size:calc(var(--iconbox-size)/ 2)}#xs-social-login-container .xs-login--style-1 .xs-login__item--label{color:var(--wslu-color-scheme);font-size:14px;font-weight:600;padding-left:10px}#xs-social-login-container .xs-login--style-2{--iconbox-size:45px;display:grid;grid-template-columns:repeat(auto-fit,calc(var(--iconbox-size) + 7px));grid-gap:10px}#xs-social-login-container .xs-login--style-2 .xs-login__item{border-radius:100px}#xs-social-login-container .xs-login--style-2 .xs-login__item:hover .xs-login__item--icon{background-color:#fff;color:var(--wslu-color-scheme);-webkit-box-shadow:0 15px 35px rgba(0,0,0,.06);box-shadow:0 15px 35px rgba(0,0,0,.06)}#xs-social-login-container .xs-login--style-2 .xs-login__item--icon{background-color:var(--wslu-color-scheme);width:var(--iconbox-size);height:var(--iconbox-size);line-height:var(--iconbox-size);text-align:center;border-radius:50%;color:#fff;font-size:calc(var(--iconbox-size)/ 3);-webkit-transition:.2s;transition:.2s}#xs-social-login-container .xs-login--style-3{display:grid;grid-template-columns:1fr;grid-gap:15px}#xs-social-login-container .xs-login--style-3 .xs-login__item{background-color:#fff;padding:13px 30px;border-radius:100px;-webkit-box-shadow:0 15px 35px rgba(0,0,0,.06);box-shadow:0 15px 35px rgba(0,0,0,.06);-webkit-transition:all linear .3s;transition:all linear .3s;text-align:center}#xs-social-login-container .xs-login--style-3 .xs-login__item:hover{background-color:var(--wslu-color-scheme);-webkit-box-shadow:0;box-shadow:0}#xs-social-login-container .xs-login--style-3 .xs-login__item:hover .xs-login__item--label{color:#fff}#xs-social-login-container .xs-login--style-3 .xs-login__item--label{color:var(--wslu-color-scheme);font-size:16px;font-weight:600}@font-face{font-family:met-social;src:url(/wp-content/plugins/wp-social/assets/css/fonts/met-social.eot?kjn5hn);src:url(/wp-content/plugins/wp-social/assets/css/fonts/met-social.eot?kjn5hn#iefix) format('embedded-opentype'),url(/wp-content/plugins/wp-social/assets/css/fonts/met-social.ttf?kjn5hn) format('truetype'),url(/wp-content/plugins/wp-social/assets/css/fonts/met-social.woff?kjn5hn) format('woff'),url(/wp-content/plugins/wp-social/assets/css/fonts/met-social.svg?kjn5hn#met-social) format('svg');font-weight:400;font-style:normal;font-display:block}.met-social{font-family:met-social!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.met-social-home:before{content:"\e800"}.met-social-apartment:before{content:"\e801"}.met-social-pencil:before{content:"\e802"}.met-social-magic-wand:before{content:"\e803"}.met-social-drop:before{content:"\e804"}.met-social-lighter:before{content:"\e805"}.met-social-poop:before{content:"\e806"}.met-social-sun:before{content:"\e807"}.met-social-moon:before{content:"\e808"}.met-social-cloud:before{content:"\e809"}.met-social-cloud-upload:before{content:"\e80a"}.met-social-cloud-download:before{content:"\e80b"}.met-social-cloud-sync:before{content:"\e80c"}.met-social-cloud-check:before{content:"\e80d"}.met-social-database:before{content:"\e80e"}.met-social-lock:before{content:"\e80f"}.met-social-cog:before{content:"\e810"}.met-social-trash:before{content:"\e811"}.met-social-dice:before{content:"\e812"}.met-social-heart:before{content:"\e813"}.met-social-star1:before{content:"\e814"}.met-social-star-half:before{content:"\e815"}.met-social-star-empty:before{content:"\e816"}.met-social-flag:before{content:"\e817"}.met-social-envelope:before{content:"\e818"}.met-social-paperclip:before{content:"\e819"}.met-social-inbox:before{content:"\e81a"}.met-social-eye:before{content:"\e81b"}.met-social-printer:before{content:"\e81c"}.met-social-file-empty:before{content:"\e81d"}.met-social-file-add:before{content:"\e81e"}.met-social-enter:before{content:"\e81f"}.met-social-exit:before{content:"\e820"}.met-social-graduation-hat:before{content:"\e821"}.met-social-license:before{content:"\e822"}.met-social-music-note:before{content:"\e823"}.met-social-film-play:before{content:"\e824"}.met-social-camera-video:before{content:"\e825"}.met-social-camera:before{content:"\e826"}.met-social-picture:before{content:"\e827"}.met-social-book:before{content:"\e828"}.met-social-bookmark:before{content:"\e829"}.met-social-user:before{content:"\e82a"}.met-social-users:before{content:"\e82b"}.met-social-shirt:before{content:"\e82c"}.met-social-store:before{content:"\e82d"}.met-social-cart:before{content:"\e82e"}.met-social-tag:before{content:"\e82f"}.met-social-phone-handset:before{content:"\e830"}.met-social-phone:before{content:"\e831"}.met-social-pushpin:before{content:"\e832"}.met-social-map-marker:before{content:"\e833"}.met-social-map:before{content:"\e834"}.met-social-location:before{content:"\e835"}.met-social-calendar-full:before{content:"\e836"}.met-social-keyboard:before{content:"\e837"}.met-social-spell-check:before{content:"\e838"}.met-social-screen:before{content:"\e839"}.met-social-smartphone:before{content:"\e83a"}.met-social-tablet:before{content:"\e83b"}.met-social-laptop:before{content:"\e83c"}.met-social-laptop-phone:before{content:"\e83d"}.met-social-power-switch:before{content:"\e83e"}.met-social-bubble:before{content:"\e83f"}.met-social-heart-pulse:before{content:"\e840"}.met-social-construction:before{content:"\e841"}.met-social-pie-chart:before{content:"\e842"}.met-social-chart-bars:before{content:"\e843"}.met-social-gift:before{content:"\e844"}.met-social-diamond:before{content:"\e845"}.met-social-dinner:before{content:"\e847"}.met-social-coffee-cup:before{content:"\e848"}.met-social-leaf:before{content:"\e849"}.met-social-paw:before{content:"\e84a"}.met-social-rocket:before{content:"\e84b"}.met-social-briefcase:before{content:"\e84c"}.met-social-bus:before{content:"\e84d"}.met-social-car:before{content:"\e84e"}.met-social-train:before{content:"\e84f"}.met-social-bicycle:before{content:"\e850"}.met-social-wheelchair:before{content:"\e851"}.met-social-select:before{content:"\e852"}.met-social-earth:before{content:"\e853"}.met-social-smile:before{content:"\e854"}.met-social-sad:before{content:"\e855"}.met-social-neutral:before{content:"\e856"}.met-social-mustache:before{content:"\e857"}.met-social-alarm:before{content:"\e858"}.met-social-bullhorn:before{content:"\e859"}.met-social-volume-high:before{content:"\e85a"}.met-social-volume-medium:before{content:"\e85b"}.met-social-volume-low:before{content:"\e85c"}.met-social-volume:before{content:"\e85d"}.met-social-mic:before{content:"\e85e"}.met-social-hourglass:before{content:"\e85f"}.met-social-undo:before{content:"\e860"}.met-social-redo:before{content:"\e861"}.met-social-sync:before{content:"\e862"}.met-social-history:before{content:"\e863"}.met-social-clock:before{content:"\e864"}.met-social-download:before{content:"\e865"}.met-social-upload:before{content:"\e866"}.met-social-enter-down:before{content:"\e867"}.met-social-exit-up:before{content:"\e868"}.met-social-bug:before{content:"\e869"}.met-social-code:before{content:"\e86a"}.met-social-link:before{content:"\e86b"}.met-social-unlink:before{content:"\e86c"}.met-social-thumbs-up:before{content:"\e86d"}.met-social-thumbs-down:before{content:"\e86e"}.met-social-magnifier:before{content:"\e86f"}.met-social-cross:before{content:"\e870"}.met-social-menu:before{content:"\e871"}.met-social-list:before{content:"\e872"}.met-social-chevron-up:before{content:"\e873"}.met-social-chevron-down:before{content:"\e874"}.met-social-chevron-left:before{content:"\e875"}.met-social-chevron-right:before{content:"\e876"}.met-social-arrow-up:before{content:"\e877"}.met-social-arrow-down:before{content:"\e878"}.met-social-arrow-left:before{content:"\e879"}.met-social-arrow-right:before{content:"\e87a"}.met-social-move:before{content:"\e87b"}.met-social-warning:before{content:"\e87c"}.met-social-question-circle:before{content:"\e87d"}.met-social-menu-circle:before{content:"\e87e"}.met-social-checkmark-circle:before{content:"\e87f"}.met-social-cross-circle:before{content:"\e880"}.met-social-plus-circle:before{content:"\e881"}.met-social-circle-minus:before{content:"\e882"}.met-social-arrow-up-circle:before{content:"\e883"}.met-social-arrow-down-circle:before{content:"\e884"}.met-social-arrow-left-circle:before{content:"\e885"}.met-social-arrow-right-circle:before{content:"\e886"}.met-social-chevron-up-circle:before{content:"\e887"}.met-social-chevron-down-circle:before{content:"\e888"}.met-social-chevron-left-circle:before{content:"\e889"}.met-social-chevron-right-circle:before{content:"\e88a"}.met-social-crop:before{content:"\e88b"}.met-social-frame-expand:before{content:"\e88c"}.met-social-frame-contract:before{content:"\e88d"}.met-social-layers:before{content:"\e88e"}.met-social-funnel:before{content:"\e88f"}.met-social-text-format:before{content:"\e890"}.met-social-text-size:before{content:"\e892"}.met-social-bold:before{content:"\e893"}.met-social-italic:before{content:"\e894"}.met-social-underline:before{content:"\e895"}.met-social-strikethrough:before{content:"\e896"}.met-social-highlight:before{content:"\e897"}.met-social-text-align-left:before{content:"\e898"}.met-social-text-align-center:before{content:"\e899"}.met-social-text-align-right:before{content:"\e89a"}.met-social-text-align-justify:before{content:"\e89b"}.met-social-line-spacing:before{content:"\e89c"}.met-social-indent-increase:before{content:"\e89d"}.met-social-indent-decrease:before{content:"\e89e"}.met-social-page-break:before{content:"\e8a2"}.met-social-hand:before{content:"\e8a5"}.met-social-pointer-up:before{content:"\e8a6"}.met-social-pointer-right:before{content:"\e8a7"}.met-social-pointer-down:before{content:"\e8a8"}.met-social-pointer-left:before{content:"\e8a9"}.met-social-behance:before{content:"\e901"}.met-social-behance-line:before{content:"\e902"}.met-social-dribbble:before{content:"\e903"}.met-social-dribbble-line:before{content:"\e904"}.met-social-uniE905:before{content:"\e905"}.met-social-uniE906:before{content:"\e906"}.met-social-envato-line:before{content:"\e907"}.met-social-facebook:before{content:"\e908"}.met-social-facebook-line:before{content:"\e909"}.met-social-flickr:before{content:"\e90a"}.met-social-flickr-line:before{content:"\e90b"}.met-social-github:before{content:"\e90c"}.met-social-github-line:before{content:"\e90d"}.met-social-google:before{content:"\e90e"}.met-social-google-line:before{content:"\e90f"}.met-social-instagram:before{content:"\e910"}.met-social-instagram-line:before{content:"\e911"}.met-social-linkedin:before{content:"\e912"}.met-social-linkedin-line:before{content:"\e913"}.met-social-mailchimp:before{content:"\e914"}.met-social-mailchimp-line:before{content:"\e915"}.met-social-pinterest:before{content:"\e916"}.met-social-pinterest-line:before{content:"\e917"}.met-social-reddit:before{content:"\e918"}.met-social-reddit-line:before{content:"\e919"}.met-social-tumblr:before{content:"\e91a"}.met-social-tumblr-line:before{content:"\e91b"}.met-social-twitter1:before{content:"\e91c"}.met-social-twitter-line:before{content:"\e91d"}.met-social-vimeo:before{content:"\e91e"}.met-social-vimeo-line:before{content:"\e91f"}.met-social-vkontakte:before{content:"\e920"}.met-social-vkontakte-line:before{content:"\e921"}.met-social-wordpress:before{content:"\e922"}.met-social-wordpress-line:before{content:"\e923"}.met-social-youtube:before{content:"\e924"}.met-social-youtube-line:before{content:"\e925"}.met-social-posts:before{content:"\e926"}.met-social-comments:before{content:"\e927"}.met-social-digg:before{content:"\e928"}.met-social-digg-line:before{content:"\e929"}.met-social-email:before{content:"\e92a"}.met-social-mail-line:before{content:"\e92b"}.met-social-telegram:before{content:"\e92c"}.met-social-telegram-line:before{content:"\e92d"}.met-social-facebook-messenger:before{content:"\e92e"}.met-social-facebook-messenger-line:before{content:"\e92f"}.met-social-kik:before{content:"\e930"}.met-social-kik-line:before{content:"\e931"}.met-social-skype:before{content:"\e932"}.met-social-skype-line:before{content:"\e933"}.met-social-trello:before{content:"\e934"}.met-social-trello-line:before{content:"\e935"}.met-social-viber:before{content:"\e936"}.met-social-viber-line:before{content:"\e937"}.met-social-stumbleupon:before{content:"\e938"}.met-social-stumbleupon-line:before{content:"\e939"}.met-social-whatsapp-line:before{content:"\e93a"}.met-social-whatsapp:before{content:"\e93b"}.met-social-cog-icon:before{content:"\e93c"}.met-social-lineapp:before{content:"\e93d"}.met-social-elements-kit-logo:before{content:"\e940"}.met-social-degree-image:before{content:"\e941"}.met-social-accordion:before{content:"\e942"}.met-social-animated-flip-box:before{content:"\e943"}.met-social-animated-text:before{content:"\e944"}.met-social-brands:before{content:"\e945"}.met-social-business-hour:before{content:"\e946"}.met-social-ekit:before{content:"\e947"}.met-social-button:before{content:"\e948"}.met-social-carousel:before{content:"\e949"}.met-social-Circle-progress:before{content:"\e94a"}.met-social-contact-form:before{content:"\e94b"}.met-social-countdown-timer:before{content:"\e94c"}.met-social-dropbar:before{content:"\e94d"}.met-social-faq:before{content:"\e94e"}.met-social-full-width-scroll:before{content:"\e94f"}.met-social-google-map:before{content:"\e950"}.met-social-heading-style:before{content:"\e951"}.met-social-help-desk:before{content:"\e952"}.met-social-horizontal-timeline:before{content:"\e953"}.met-social-iframe:before{content:"\e954"}.met-social-image-comparison:before{content:"\e955"}.met-social-image-gallery:before{content:"\e956"}.met-social-image-justify:before{content:"\e957"}.met-social-image-magnifier:before{content:"\e958"}.met-social-image-masonry:before{content:"\e959"}.met-social-inline-svg:before{content:"\e95a"}.met-social-instagram1:before{content:"\e95b"}.met-social-listing:before{content:"\e95c"}.met-social-music-player:before{content:"\e95d"}.met-social-news-ticker:before{content:"\e95e"}.met-social-off-canvus-menu:before{content:"\e95f"}.met-social-parallax:before{content:"\e960"}.met-social-portfolio:before{content:"\e961"}.met-social-post-banner:before{content:"\e962"}.met-social-post-carousel:before{content:"\e963"}.met-social-post-grid:before{content:"\e964"}.met-social-post-slider:before{content:"\e965"}.met-social-pricing-list:before{content:"\e966"}.met-social-pricing-table:before{content:"\e967"}.met-social-product-featured:before{content:"\e968"}.met-social-product-image:before{content:"\e969"}.met-social-product-recent:before{content:"\e96a"}.met-social-product-sale:before{content:"\e96b"}.met-social-product-top-rated:before{content:"\e96c"}.met-social-product-top-seller:before{content:"\e96d"}.met-social-progress-bar:before{content:"\e96e"}.met-social-protected-content-v2:before{content:"\e96f"}.met-social-protected-content-v3:before{content:"\e970"}.met-social-protected-content:before{content:"\e971"}.met-social-qr_code:before{content:"\e972"}.met-social-scroll-button:before{content:"\e973"}.met-social-search:before{content:"\e974"}.met-social-service:before{content:"\e975"}.met-social-slider-image:before{content:"\e976"}.met-social-social-share:before{content:"\e977"}.met-social-subscribe:before{content:"\e978"}.met-social-tab:before{content:"\e979"}.met-social-table:before{content:"\e97a"}.met-social-team-join:before{content:"\e97b"}.met-social-team-member:before{content:"\e97c"}.met-social-testimonial-carousel:before{content:"\e97d"}.met-social-testimonial-grid:before{content:"\e97e"}.met-social-testimonial-quote:before{content:"\e97f"}.met-social-testimonial-slider:before{content:"\e980"}.met-social-toggle:before{content:"\e981"}.met-social-user-login:before{content:"\e982"}.met-social-double-left-chevron:before{content:"\e983"}.met-social-double-angle-pointing-to-right:before{content:"\e984"}.met-social-left-arrow:before{content:"\e985"}.met-social-download-arrow:before{content:"\e986"}.met-social-left-arrow2:before{content:"\e987"}.met-social-right-arrow2:before{content:"\e988"}.met-social-burger:before{content:"\e989"}.met-social-cakes:before{content:"\e98a"}.met-social-cheese:before{content:"\e98b"}.met-social-drink-glass:before{content:"\e98c"}.met-social-pizza:before{content:"\e98d"}.met-social-vplay:before{content:"\e98e"}.met-social-newsletter:before{content:"\e98f"}.met-social-coins-2:before{content:"\e990"}.met-social-commerce-2:before{content:"\e991"}.met-social-monitor:before{content:"\e992"}.met-social-business:before{content:"\e993"}.met-social-down-arrow1:before{content:"\e994"}.met-social-up-arrow1:before{content:"\e995"}.met-social-right-arrow:before{content:"\e996"}.met-social-left-arrows:before{content:"\e997"}.met-social-graphic-2:before{content:"\e998"}.met-social-commerce-1:before{content:"\e999"}.met-social-hammer:before{content:"\e99a"}.met-social-justice-1:before{content:"\e99b"}.met-social-line:before{content:"\e99c"}.met-social-money-3:before{content:"\e99d"}.met-social-commerce:before{content:"\e99e"}.met-social-agenda:before{content:"\e99f"}.met-social-justice:before{content:"\e9a0"}.met-social-technology:before{content:"\e9a1"}.met-social-coins-1:before{content:"\e9a2"}.met-social-bank:before{content:"\e9a3"}.met-social-calculator:before{content:"\e9a4"}.met-social-soundcloud:before{content:"\e9a5"}.met-social-chart2:before{content:"\e9a6"}.met-social-checked:before{content:"\e9a7"}.met-social-clock1:before{content:"\e9a8"}.met-social-comment:before{content:"\e9a9"}.met-social-comments1:before{content:"\e9aa"}.met-social-consult:before{content:"\e9ab"}.met-social-consut2:before{content:"\e9ac"}.met-social-deal:before{content:"\e9ad"}.met-social-envelope1:before{content:"\e9ae"}.met-social-folder:before{content:"\e9af"}.met-social-invest:before{content:"\e9b0"}.met-social-loan:before{content:"\e9b1"}.met-social-map-marker1:before{content:"\e9b2"}.met-social-mutual-fund:before{content:"\e9b3"}.met-social-google-plus:before{content:"\e9b4"}.met-social-phone1:before{content:"\e9b5"}.met-social-pie-chart1:before{content:"\e9b6"}.met-social-play:before{content:"\e9b7"}.met-social-savings:before{content:"\e9b8"}.met-social-search1:before{content:"\e9b9"}.met-social-tag1:before{content:"\e9ba"}.met-social-tags:before{content:"\e9bb"}.met-social-instagram2:before{content:"\e9bc"}.met-social-quote:before{content:"\e9bd"}.met-social-arrow-point-to-down:before{content:"\e9be"}.met-social-play-button:before{content:"\e9bf"}.met-social-minus:before{content:"\e9c0"}.met-social-plus:before{content:"\e9c1"}.met-social-tick:before{content:"\e9c2"}.met-social-up-arrow:before{content:"\e9c3"}.met-social-arrows:before{content:"\e9c4"}.met-social-right-arrow1:before{content:"\e9c5"}.met-social-edit:before{content:"\e9c6"}.met-social-reply:before{content:"\e9c7"}.met-social-cogwheel-outline:before{content:"\e9c8"}.met-social-apple:before{content:"\e9c9"}.met-social-abacus:before{content:"\e9ca"}.met-social-abacus1:before{content:"\e9cb"}.met-social-agenda1:before{content:"\e9cc"}.met-social-shopping-basket:before{content:"\e9cd"}.met-social-users1:before{content:"\e9ce"}.met-social-man:before{content:"\e9cf"}.met-social-support:before{content:"\e9d0"}.met-social-favorites:before{content:"\e9d1"}.met-social-calendar:before{content:"\e9d2"}.met-social-paper-plane:before{content:"\e9d3"}.met-social-placeholder:before{content:"\e9d4"}.met-social-phone-call:before{content:"\e9d5"}.met-social-contact:before{content:"\e9d6"}.met-social-email1:before{content:"\e9d7"}.met-social-internet:before{content:"\e9d8"}.met-social-quote1:before{content:"\e9d9"}.met-social-medical:before{content:"\e9da"}.met-social-eye1:before{content:"\e9db"}.met-social-full-screen:before{content:"\e9dc"}.met-social-tools:before{content:"\e9dd"}.met-social-pie-chart2:before{content:"\e9de"}.met-social-diamond1:before{content:"\e9df"}.met-social-valentines-heart:before{content:"\e9e0"}.met-social-like:before{content:"\e9e1"}.met-social-team:before{content:"\e9e2"}.met-social-tshirt:before{content:"\e9e3"}.met-social-cancel:before{content:"\e9e4"}.met-social-drink:before{content:"\e9e5"}.met-social-home1:before{content:"\e9e6"}.met-social-music:before{content:"\e9e7"}.met-social-rich:before{content:"\e9e8"}.met-social-brush:before{content:"\e9e9"}.met-social-opposite-way:before{content:"\e9ea"}.met-social-cloud-computing:before{content:"\e9eb"}.met-social-technology-1:before{content:"\e9ec"}.met-social-rotate:before{content:"\e9ed"}.met-social-medical1:before{content:"\e9ee"}.met-social-flash-1:before{content:"\e9ef"}.met-social-flash:before{content:"\e9f0"}.met-social-uturn:before{content:"\e9f1"}.met-social-down-arrow:before{content:"\e9f2"}.met-social-hours-support:before{content:"\e9f3"}.met-social-bag:before{content:"\e9f4"}.met-social-photo-camera:before{content:"\e9f5"}.met-social-school:before{content:"\e9f6"}.met-social-settings:before{content:"\e9f7"}.met-social-smartphone1:before{content:"\e9f8"}.met-social-technology-11:before{content:"\e9f9"}.met-social-tool:before{content:"\e9fa"}.met-social-business1:before{content:"\e9fb"}.met-social-shuffle-arrow:before{content:"\e9fc"}.met-social-van-1:before{content:"\e9fd"}.met-social-van:before{content:"\e9fe"}.met-social-vegetables:before{content:"\e9ff"}.met-social-women:before{content:"\ea00"}.met-social-vintage:before{content:"\ea01"}.met-social-team-1:before{content:"\ea02"}.met-social-team1:before{content:"\ea03"}.met-social-watch:before{content:"\ea04"}.met-social-cogwheel:before{content:"\ea05"}.met-social-light-bulb:before{content:"\ea06"}.met-social-light-bulb-1:before{content:"\ea07"}.met-social-heart-shape-outline:before{content:"\ea08"}.met-social-online-shopping-cart:before{content:"\ea09"}.met-social-shopping-cart:before{content:"\ea0a"}.met-social-star2:before{content:"\ea0b"}.met-social-star-1:before{content:"\ea0c"}.met-social-favorite:before{content:"\ea0d"}.met-social-agenda2:before{content:"\ea0e"}.met-social-agenda-1:before{content:"\ea0f"}.met-social-alarm-clock:before{content:"\ea10"}.met-social-alarm-clock1:before{content:"\ea11"}.met-social-atomic:before{content:"\ea12"}.met-social-auction:before{content:"\ea13"}.met-social-balance:before{content:"\ea14"}.met-social-balance1:before{content:"\ea15"}.met-social-bank1:before{content:"\ea16"}.met-social-bar-chart:before{content:"\ea17"}.met-social-barrier:before{content:"\ea18"}.met-social-battery:before{content:"\ea19"}.met-social-battery-1:before{content:"\ea1a"}.met-social-bell:before{content:"\ea1b"}.met-social-bluetooth:before{content:"\ea1c"}.met-social-book1:before{content:"\ea1d"}.met-social-briefcase1:before{content:"\ea1e"}.met-social-briefcase-1:before{content:"\ea1f"}.met-social-briefcase-2:before{content:"\ea20"}.met-social-calculator1:before{content:"\ea21"}.met-social-calculator2:before{content:"\ea22"}.met-social-calculator-1:before{content:"\ea23"}.met-social-calendar1:before{content:"\ea24"}.met-social-calendar2:before{content:"\ea25"}.met-social-calendar-1:before{content:"\ea26"}.met-social-car1:before{content:"\ea27"}.met-social-carrier:before{content:"\ea28"}.met-social-cash:before{content:"\ea29"}.met-social-chat:before{content:"\ea2a"}.met-social-chat-1:before{content:"\ea2b"}.met-social-checked1:before{content:"\ea2c"}.met-social-clip:before{content:"\ea2d"}.met-social-clip1:before{content:"\ea2e"}.met-social-clipboard:before{content:"\ea2f"}.met-social-clipboard1:before{content:"\ea30"}.met-social-clock2:before{content:"\ea31"}.met-social-clock-1:before{content:"\ea32"}.met-social-cloud1:before{content:"\ea33"}.met-social-cloud-computing1:before{content:"\ea34"}.met-social-cloud-computing-1:before{content:"\ea35"}.met-social-cogwheel1:before{content:"\ea36"}.met-social-coins:before{content:"\ea37"}.met-social-compass:before{content:"\ea38"}.met-social-contract:before{content:"\ea39"}.met-social-conversation:before{content:"\ea3a"}.met-social-crane:before{content:"\ea3b"}.met-social-crane-2:before{content:"\ea3c"}.met-social-credit-card:before{content:"\ea3d"}.met-social-credit-card1:before{content:"\ea3e"}.met-social-cursor:before{content:"\ea3f"}.met-social-customer-service:before{content:"\ea40"}.met-social-cutlery:before{content:"\ea41"}.met-social-dart-board:before{content:"\ea42"}.met-social-decision-making:before{content:"\ea43"}.met-social-desk-chair:before{content:"\ea44"}.met-social-desk-lamp:before{content:"\ea45"}.met-social-diamond2:before{content:"\ea46"}.met-social-direction:before{content:"\ea47"}.met-social-document:before{content:"\ea48"}.met-social-dollar-bill:before{content:"\ea49"}.met-social-download1:before{content:"\ea4a"}.met-social-edit1:before{content:"\ea4b"}.met-social-email11:before{content:"\ea4c"}.met-social-envelope2:before{content:"\ea4d"}.met-social-envelope3:before{content:"\ea4e"}.met-social-eraser:before{content:"\ea4f"}.met-social-eye2:before{content:"\ea50"}.met-social-factory:before{content:"\ea51"}.met-social-fast-forward:before{content:"\ea52"}.met-social-favorites1:before{content:"\ea53"}.met-social-file:before{content:"\ea54"}.met-social-file-1:before{content:"\ea55"}.met-social-file-2:before{content:"\ea56"}.met-social-file-3:before{content:"\ea57"}.met-social-filter:before{content:"\ea58"}.met-social-finance-book:before{content:"\ea59"}.met-social-flag1:before{content:"\ea5a"}.met-social-folder1:before{content:"\ea5b"}.met-social-folder-1:before{content:"\ea5c"}.met-social-folders:before{content:"\ea5d"}.met-social-folders1:before{content:"\ea5e"}.met-social-gamepad:before{content:"\ea5f"}.met-social-gift1:before{content:"\ea60"}.met-social-growth:before{content:"\ea61"}.met-social-heart1:before{content:"\ea62"}.met-social-home2:before{content:"\ea63"}.met-social-house:before{content:"\ea64"}.met-social-house-1:before{content:"\ea65"}.met-social-house-2:before{content:"\ea66"}.met-social-id-card:before{content:"\ea67"}.met-social-id-card1:before{content:"\ea68"}.met-social-id-card-1:before{content:"\ea69"}.met-social-idea:before{content:"\ea6a"}.met-social-image:before{content:"\ea6b"}.met-social-improvement:before{content:"\ea6c"}.met-social-inbox1:before{content:"\ea6d"}.met-social-information:before{content:"\ea6e"}.met-social-key:before{content:"\ea6f"}.met-social-key1:before{content:"\ea70"}.met-social-laptop1:before{content:"\ea71"}.met-social-layers1:before{content:"\ea72"}.met-social-light-bulb1:before{content:"\ea73"}.met-social-like1:before{content:"\ea74"}.met-social-line-chart:before{content:"\ea75"}.met-social-mail:before{content:"\ea76"}.met-social-manager:before{content:"\ea77"}.met-social-map1:before{content:"\ea78"}.met-social-medal1:before{content:"\ea79"}.met-social-megaphone:before{content:"\ea7a"}.met-social-megaphone1:before{content:"\ea7b"}.met-social-message:before{content:"\ea7c"}.met-social-message-1:before{content:"\ea7d"}.met-social-message-2:before{content:"\ea7e"}.met-social-microphone:before{content:"\ea7f"}.met-social-money:before{content:"\ea80"}.met-social-money-bag1:before{content:"\ea81"}.met-social-monitor1:before{content:"\ea82"}.met-social-music1:before{content:"\ea83"}.met-social-next:before{content:"\ea84"}.met-social-open-book:before{content:"\ea85"}.met-social-padlock:before{content:"\ea86"}.met-social-padlock-1:before{content:"\ea87"}.met-social-paint-brush:before{content:"\ea88"}.met-social-pause:before{content:"\ea89"}.met-social-pen:before{content:"\ea8a"}.met-social-pencil1:before{content:"\ea8b"}.met-social-percentage:before{content:"\ea8c"}.met-social-phone-call1:before{content:"\ea8d"}.met-social-phone-call2:before{content:"\ea8e"}.met-social-photo-camera1:before{content:"\ea8f"}.met-social-pie-chart3:before{content:"\ea90"}.met-social-pipe:before{content:"\ea91"}.met-social-placeholder1:before{content:"\ea92"}.met-social-placeholder2:before{content:"\ea93"}.met-social-planet-earth:before{content:"\ea94"}.met-social-play-button1:before{content:"\ea95"}.met-social-power-button:before{content:"\ea96"}.met-social-presentation:before{content:"\ea97"}.met-social-presentation1:before{content:"\ea98"}.met-social-printer1:before{content:"\ea99"}.met-social-push-pin:before{content:"\ea9a"}.met-social-push-pin1:before{content:"\ea9b"}.met-social-refresh:before{content:"\ea9c"}.met-social-reload:before{content:"\ea9d"}.met-social-return:before{content:"\ea9e"}.met-social-rocket-ship:before{content:"\ea9f"}.met-social-rss:before{content:"\eaa0"}.met-social-safebox:before{content:"\eaa1"}.met-social-safebox1:before{content:"\eaa2"}.met-social-settings1:before{content:"\eaa3"}.met-social-settings-2:before{content:"\eaa4"}.met-social-sewing-machine:before{content:"\eaa5"}.met-social-share:before{content:"\eaa6"}.met-social-shield:before{content:"\eaa7"}.met-social-shield1:before{content:"\eaa8"}.met-social-shopping:before{content:"\eaa9"}.met-social-shopping-bag:before{content:"\eaaa"}.met-social-shopping-bag-1:before{content:"\eaab"}.met-social-shopping-bag-2:before{content:"\eaac"}.met-social-shopping-cart1:before{content:"\eaad"}.met-social-shopping-cart2:before{content:"\eaae"}.met-social-check:before{content:"\eaaf"}.met-social-shopping-cart-1:before{content:"\eab0"}.met-social-shopping-cart-2:before{content:"\eab1"}.met-social-shopping-cart-3:before{content:"\eab2"}.met-social-smartphone2:before{content:"\eab3"}.met-social-speaker:before{content:"\eab4"}.met-social-speakers:before{content:"\eab5"}.met-social-stats:before{content:"\eab6"}.met-social-stats-1:before{content:"\eab7"}.met-social-stats-2:before{content:"\eab8"}.met-social-stats-3:before{content:"\eab9"}.met-social-stats-4:before{content:"\eaba"}.met-social-stats-5:before{content:"\eabb"}.met-social-stats-6:before{content:"\eabc"}.met-social-sticky-note:before{content:"\eabd"}.met-social-store1:before{content:"\eabe"}.met-social-store-1:before{content:"\eabf"}.met-social-suitcase:before{content:"\eac0"}.met-social-suitcase-1:before{content:"\eac1"}.met-social-tag2:before{content:"\eac2"}.met-social-target:before{content:"\eac3"}.met-social-team2:before{content:"\eac4"}.met-social-tie:before{content:"\eac5"}.met-social-trash1:before{content:"\eac6"}.met-social-trolley:before{content:"\eac7"}.met-social-trolley-1:before{content:"\eac8"}.met-social-trolley-2:before{content:"\eac9"}.met-social-trophy1:before{content:"\eaca"}.met-social-truck:before{content:"\eacb"}.met-social-truck-1:before{content:"\eacc"}.met-social-truck-2:before{content:"\eacd"}.met-social-umbrella:before{content:"\eace"}.met-social-upload1:before{content:"\eacf"}.met-social-user1:before{content:"\ead0"}.met-social-user-1:before{content:"\ead1"}.met-social-user-2:before{content:"\ead2"}.met-social-user-3:before{content:"\ead3"}.met-social-users2:before{content:"\ead4"}.met-social-video-camera:before{content:"\ead5"}.met-social-voucher:before{content:"\ead6"}.met-social-voucher-1:before{content:"\ead7"}.met-social-voucher-2:before{content:"\ead8"}.met-social-voucher-3:before{content:"\ead9"}.met-social-voucher-4:before{content:"\eada"}.met-social-wallet:before{content:"\eadb"}.met-social-wallet1:before{content:"\eadc"}.met-social-wifi:before{content:"\eadd"}.met-social-worker:before{content:"\eade"}.met-social-zoom-in:before{content:"\eadf"}.met-social-zoom-out:before{content:"\eae0"}.met-social-burger-menu:before{content:"\eae1"}.met-social-squares:before{content:"\eae2"}.met-social-options:before{content:"\eae3"}.met-social-apps:before{content:"\eae4"}.met-social-menu-1:before{content:"\eae5"}.met-social-menu1:before{content:"\eae6"}.met-social-back_up:before{content:"\eae7"}.met-social-cart1:before{content:"\eae8"}.met-social-checkmark:before{content:"\eae9"}.met-social-dollar:before{content:"\eaea"}.met-social-domian:before{content:"\eaeb"}.met-social-hosting:before{content:"\eaec"}.met-social-key2:before{content:"\eaed"}.met-social-migration:before{content:"\eaee"}.met-social-play1:before{content:"\eaef"}.met-social-quote2:before{content:"\eaf0"}.met-social-api_setup:before{content:"\eaf1"}.met-social-coin:before{content:"\eaf2"}.met-social-hand_shake:before{content:"\eaf3"}.met-social-idea_generate:before{content:"\eaf4"}.met-social-page_search:before{content:"\eaf5"}.met-social-pen_shape:before{content:"\eaf6"}.met-social-pencil_art:before{content:"\eaf7"}.met-social-review:before{content:"\eaf8"}.met-social-star:before{content:"\eaf9"}.met-social-timing:before{content:"\eafa"}.met-social-trophy:before{content:"\eafb"}.met-social-communication:before{content:"\eafc"}.met-social-money-bag:before{content:"\eafd"}.met-social-dentist:before{content:"\eafe"}.met-social-bill:before{content:"\eaff"}.met-social-label:before{content:"\eb00"}.met-social-money1:before{content:"\eb01"}.met-social-shield2:before{content:"\eb02"}.met-social-support1:before{content:"\eb03"}.met-social-one:before{content:"\eb04"}.met-social-clock3:before{content:"\eb05"}.met-social-cart2:before{content:"\eb06"}.met-social-globe:before{content:"\eb07"}.met-social-tooth:before{content:"\eb08"}.met-social-tooth-1:before{content:"\eb09"}.met-social-tooth-2:before{content:"\eb0a"}.met-social-brain:before{content:"\eb0b"}.met-social-view:before{content:"\eb0c"}.met-social-doctor:before{content:"\eb0d"}.met-social-heart2:before{content:"\eb0e"}.met-social-medicine:before{content:"\eb0f"}.met-social-stethoscope:before{content:"\eb10"}.met-social-hospital:before{content:"\eb11"}.met-social-clipboard2:before{content:"\eb12"}.met-social-medicine-1:before{content:"\eb13"}.met-social-hospital-1:before{content:"\eb14"}.met-social-customer-support:before{content:"\eb15"}.met-social-brickwall:before{content:"\eb16"}.met-social-crane1:before{content:"\eb17"}.met-social-valve:before{content:"\eb18"}.met-social-safety:before{content:"\eb19"}.met-social-energy-saving:before{content:"\eb1a"}.met-social-paint-roller:before{content:"\eb1b"}.met-social-paint-brushes:before{content:"\eb1c"}.met-social-construction-tool-vehicle-with-crane-lifting-materials:before{content:"\eb1d"}.met-social-trowel:before{content:"\eb1e"}.met-social-bucket:before{content:"\eb1f"}.met-social-smart:before{content:"\eb20"}.met-social-repair:before{content:"\eb21"}.met-social-saw:before{content:"\eb22"}.met-social-cutter:before{content:"\eb23"}.met-social-plier:before{content:"\eb24"}.met-social-drill:before{content:"\eb25"}.met-social-save-money:before{content:"\eb26"}.met-social-planting:before{content:"\eb27"}.met-social-line-chart1:before{content:"\eb28"}.met-social-open-book1:before{content:"\eb29"}.met-social-money-bag2:before{content:"\eb2a"}.met-social-server:before{content:"\eb2b"}.met-social-server-1:before{content:"\eb2c"}.met-social-server-2:before{content:"\eb2d"}.met-social-cloud-computing2:before{content:"\eb2e"}.met-social-cloud2:before{content:"\eb2f"}.met-social-database1:before{content:"\eb30"}.met-social-computer:before{content:"\eb31"}.met-social-server-3:before{content:"\eb32"}.met-social-server-4:before{content:"\eb33"}.met-social-server-5:before{content:"\eb34"}.met-social-server-6:before{content:"\eb35"}.met-social-server-7:before{content:"\eb36"}.met-social-cloud-1:before{content:"\eb37"}.met-social-server-8:before{content:"\eb38"}.met-social-business-and-finance:before{content:"\eb39"}.met-social-cloud-2:before{content:"\eb3a"}.met-social-server-9:before{content:"\eb3b"}.met-social-hosting1:before{content:"\eb3c"}.met-social-car2:before{content:"\eb3d"}.met-social-car-frontal-view:before{content:"\eb3e"}.met-social-car-1:before{content:"\eb3f"}.met-social-racing:before{content:"\eb40"}.met-social-car-wheel:before{content:"\eb41"}.met-social-steering-wheel:before{content:"\eb42"}.met-social-frontal-taxi-cab:before{content:"\eb43"}.met-social-taxi:before{content:"\eb44"}.met-social-cosmetics:before{content:"\eb45"}.met-social-flower:before{content:"\eb46"}.met-social-mirror:before{content:"\eb47"}.met-social-salon:before{content:"\eb48"}.met-social-hair-dryer:before{content:"\eb49"}.met-social-shampoo:before{content:"\eb4a"}.met-social-download-button:before{content:"\eb4b"}.met-social-list1:before{content:"\eb4c"}.met-social-loupe:before{content:"\eb4d"}.met-social-search2:before{content:"\eb4e"}.met-social-search-1:before{content:"\eb4f"}.met-social-shopping-cart3:before{content:"\eb50"}.met-social-menu2:before{content:"\eb51"}.met-social-menu-11:before{content:"\eb52"}.met-social-menu-button-of-three-horizontal-lines:before{content:"\eb53"}.met-social-menu-2:before{content:"\eb54"}.met-social-menu-3:before{content:"\eb55"}.met-social-menu-5:before{content:"\eb56"}.met-social-menu-button:before{content:"\eb57"}.met-social-list-1:before{content:"\eb58"}.met-social-menu-6:before{content:"\eb59"}.met-social-menu-7:before{content:"\eb5a"}.met-social-menu-8:before{content:"\eb5b"}.met-social-list-2:before{content:"\eb5c"}.met-social-dot:before{content:"\eb5d"}.met-social-menu-9:before{content:"\eb5e"}.met-social-search11:before{content:"\eb5f"}.met-social-search-minus:before{content:"\eb60"}.met-social-search-11:before{content:"\eb61"}.met-social-search-2:before{content:"\eb62"}.met-social-search-3:before{content:"\eb63"}.met-social-magnifying-glass-search:before{content:"\eb64"}.met-social-loupe1:before{content:"\eb65"}.met-social-speed:before{content:"\eb66"}.met-social-search21:before{content:"\eb67"}.met-social-search-4:before{content:"\eb68"}.met-social-search-5:before{content:"\eb69"}.met-social-detective:before{content:"\eb6a"}.met-social-itunes:before{content:"\eb6b"}.met-social-cart3:before{content:"\eb6c"}.met-social-buying-on-smartphone:before{content:"\eb6d"}.met-social-badge:before{content:"\eb6e"}.met-social-basket:before{content:"\eb6f"}.met-social-commerce-and-shopping:before{content:"\eb70"}.met-social-comment1:before{content:"\eb71"}.met-social-comment-1:before{content:"\eb72"}.met-social-share1:before{content:"\eb73"}.met-social-share-1:before{content:"\eb74"}.met-social-share-2:before{content:"\eb75"}.met-social-share-3:before{content:"\eb76"}.met-social-comment2:before{content:"\eb77"}.met-social-favorite1:before{content:"\eb78"}.met-social-retweet:before{content:"\eb79"}.met-social-share2:before{content:"\eb7a"}.met-social-facebook1:before{content:"\eb7b"}.met-social-twitter11:before{content:"\eb7c"}.met-social-linkedin1:before{content:"\eb7d"}.met-social-whatsapp-1:before{content:"\eb7e"}.met-social-dribbble1:before{content:"\eb7f"}.met-social-facebook-2:before{content:"\eb80"}.met-social-twitter111:before{content:"\eb81"}.met-social-vk:before{content:"\eb82"}.met-social-youtube-v:before{content:"\eb83"}.met-social-vimeo1:before{content:"\eb84"}.met-social-youtube1:before{content:"\eb85"}.met-social-snapchat-1:before{content:"\eb86"}.met-social-behance1:before{content:"\eb87"}.met-social-github1:before{content:"\eb88"}.met-social-pinterest1:before{content:"\eb89"}.met-social-spotify:before{content:"\eb8a"}.met-social-soundcloud-1:before{content:"\eb8b"}.met-social-skype-1:before{content:"\eb8c"}.met-social-rss1:before{content:"\eb8d"}.met-social-reddit-1:before{content:"\eb8e"}.met-social-dribbble-1:before{content:"\eb8f"}.met-social-wordpress-1:before{content:"\eb90"}.met-social-logo:before{content:"\eb91"}.met-social-dropbox-1:before{content:"\eb92"}.met-social-blogger-1:before{content:"\eb93"}.met-social-photo:before{content:"\eb94"}.met-social-hangouts:before{content:"\eb95"}.met-social-xing:before{content:"\eb96"}.met-social-myspace:before{content:"\eb97"}.met-social-flickr-1:before{content:"\eb98"}.met-social-envato:before{content:"\eb99"}.met-social-picasa-1:before{content:"\eb9a"}.met-social-wattpad:before{content:"\eb9b"}.met-social-emoji:before{content:"\eb9c"}.met-social-deviantart-1:before{content:"\eb9d"}.met-social-yahoo-1:before{content:"\eb9e"}.met-social-Anti-Lock:before{content:"\eb9f"}.met-social-apartment1:before{content:"\eba0"}.met-social-ek_stroke_icon:before{content:"\eba1"}.met-social-app:before{content:"\eba2"}.met-social-Aroma:before{content:"\eba3"}.met-social-vine-1:before{content:"\eba4"}.met-social-bambooLeaf:before{content:"\eba5"}.met-social-basket1:before{content:"\eba6"}.met-social-Battery:before{content:"\eba7"}.met-social-Bettery:before{content:"\eba8"}.met-social-building:before{content:"\eba9"}.met-social-car21:before{content:"\ebaa"}.met-social-Car:before{content:"\ebab"}.met-social-Child:before{content:"\ebac"}.met-social-cityscape:before{content:"\ebad"}.met-social-cleaner:before{content:"\ebae"}.met-social-Coffeecup:before{content:"\ebaf"}.met-social-coins1:before{content:"\ebb0"}.met-social-Computer:before{content:"\ebb1"}.met-social-Consultancy:before{content:"\ebb2"}.met-social-cottage:before{content:"\ebb3"}.met-social-crane2:before{content:"\ebb4"}.met-social-Customapi:before{content:"\ebb5"}.met-social-customersupport2:before{content:"\ebb6"}.met-social-Design2:before{content:"\ebb7"}.met-social-Design3:before{content:"\ebb8"}.met-social-design:before{content:"\ebb9"}.met-social-diamond3:before{content:"\ebba"}.met-social-diploma:before{content:"\ebbb"}.met-social-DocumentSearch:before{content:"\ebbc"}.met-social-Download:before{content:"\ebbd"}.met-social-drilling:before{content:"\ebbe"}.met-social-engine:before{content:"\ebbf"}.met-social-engineer:before{content:"\ebc0"}.met-social-envelope4:before{content:"\ebc1"}.met-social-Family:before{content:"\ebc2"}.met-social-friendship:before{content:"\ebc3"}.met-social-gift2:before{content:"\ebc4"}.met-social-graph2:before{content:"\ebc5"}.met-social-graph:before{content:"\ebc6"}.met-social-hamburger2:before{content:"\ebc7"}.met-social-handshake:before{content:"\ebc8"}.met-social-Helmet:before{content:"\ebc9"}.met-social-hotStone2:before{content:"\ebca"}.met-social-hotstone:before{content:"\ebcb"}.met-social-idea1:before{content:"\ebcc"}.met-social-Leaf:before{content:"\ebcd"}.met-social-management:before{content:"\ebce"}.met-social-Massagetable:before{content:"\ebcf"}.met-social-Mechanic:before{content:"\ebd0"}.met-social-delicious:before{content:"\ebd1"}.met-social-Money2:before{content:"\ebd2"}.met-social-money-bag3:before{content:"\ebd3"}.met-social-Money:before{content:"\ebd4"}.met-social-oilbottle:before{content:"\ebd5"}.met-social-Physiotherapy:before{content:"\ebd6"}.met-social-Profile:before{content:"\ebd7"}.met-social-Rating:before{content:"\ebd8"}.met-social-rightmark:before{content:"\ebd9"}.met-social-rings:before{content:"\ebda"}.met-social-Safehouse:before{content:"\ebdb"}.met-social-Scan:before{content:"\ebdc"}.met-social-social-care:before{content:"\ebdd"}.met-social-SpeedClock:before{content:"\ebde"}.met-social-stopwatch:before{content:"\ebdf"}.met-social-Support2:before{content:"\ebe0"}.met-social-target2:before{content:"\ebe1"}.met-social-Target:before{content:"\ebe2"}.met-social-tripod:before{content:"\ebe3"}.met-social-truck1:before{content:"\ebe4"}.met-social-university:before{content:"\ebe5"}.met-social-User:before{content:"\ebe6"}.met-social-WebPortals:before{content:"\ebe7"}.met-social-window:before{content:"\ebe8"}.met-social-ek_line_icon:before{content:"\ebe9"}.met-social-kickstarter-1:before{content:"\ebea"}.met-social-stumbleupon-1:before{content:"\ebeb"}.met-social-brands-and-logotypes:before{content:"\ebec"}.met-social-instagram-1:before{content:"\ebed"}.met-social-facebook-1:before{content:"\ebee"}.met-social-instagram-2:before{content:"\ebef"}.met-social-twitter-1:before{content:"\ebf0"}.met-social-whatsapp-2:before{content:"\ebf1"}.met-social-youtube-1:before{content:"\ebf2"}.met-social-linkedin-1:before{content:"\ebf3"}.met-social-telegram1:before{content:"\ebf4"}.met-social-github-1:before{content:"\ebf5"}.met-social-vk-1:before{content:"\ebf6"}.met-social-pinterest-1:before{content:"\ebf7"}.met-social-rss-1:before{content:"\ebf8"}.met-social-twitch:before{content:"\ebf9"}.met-social-snapchat-2:before{content:"\ebfa"}.met-social-skype-2:before{content:"\ebfb"}.met-social-behance-2:before{content:"\ebfc"}.met-social-spotify-1:before{content:"\ebfd"}.met-social-periscope:before{content:"\ebfe"}.met-social-dribbble-2:before{content:"\ebff"}.met-social-tumblr-1:before{content:"\ec00"}.met-social-soundcloud-2:before{content:"\ec01"}.met-social-google-drive-1:before{content:"\ec02"}.met-social-dropbox-2:before{content:"\ec03"}.met-social-reddit-2:before{content:"\ec04"}.met-social-html:before{content:"\ec05"}.met-social-vimeo-1:before{content:"\ec06"}.met-social-hangout:before{content:"\ec07"}.met-social-blogger-2:before{content:"\ec08"}.met-social-yahoo-2:before{content:"\ec09"}.met-social-path:before{content:"\ec0a"}.met-social-yelp-1:before{content:"\ec0b"}.met-social-slideshare:before{content:"\ec0c"}.met-social-picasa-2:before{content:"\ec0d"}.met-social-myspace-1:before{content:"\ec0e"}.met-social-flickr-2:before{content:"\ec0f"}.met-social-xing-1:before{content:"\ec10"}.met-social-envato-1:before{content:"\ec11"}.met-social-swarm:before{content:"\ec12"}.met-social-wattpad-1:before{content:"\ec13"}.met-social-foursquare:before{content:"\ec14"}.met-social-deviantart-2:before{content:"\ec15"}.met-social-kickstarter-2:before{content:"\ec16"}.met-social-delicious-1:before{content:"\ec17"}.met-social-vine-2:before{content:"\ec18"}.met-social-digg1:before{content:"\ec19"}.met-social-bebo:before{content:"\ec1a"}.met-social-stumbleupon-2:before{content:"\ec1b"}.met-social-forrst:before{content:"\ec1c"}.met-social-eye3:before{content:"\ec1d"}.met-social-microscope:before{content:"\ec1e"}.met-social-calendar-page-empty:before{content:"\ec1f"}.met-social-calendar3:before{content:"\ec20"}.met-social-folder2:before{content:"\ec21"}.met-social-user-registration:before{content:"\ec22"}.met-social-vertical-timeline:before{content:"\ec23"}.met-social-video-player:before{content:"\ec24"}.met-social-weather:before{content:"\ec25"}.met-social-twitter:before{content:"\e900"}#bwp_slider_price::before, #bwp_slider_price::after,.bwp_slider_price::before, #bwp_slider_price::after {
    background: #fff none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    width: 5px;
    z-index: 1;
}

#bwp_slider_price,.bwp_slider_price{
	background-color: #f03939;
    border-radius: 5px;
    height: 6px;
    margin: 10px;
    position: relative;
}
#bwp_slider_price	.ui-slider-handle,.bwp_slider_price	.ui-slider-handle {
	background: #fff none repeat scroll 0 0;
    border: 3px solid #f03939;
    color: #f03939;
    cursor: e-resize;
    display: block;
    height: 14px;
    position: absolute;
    text-align: center;
    top: -7px;
    width: 14px;
    z-index: 15;	
	margin-right: inherit;
    padding-left: inherit;
    padding-right: inherit;
}

.tongge-filter{
	position:fixed;
	border:1px solid #dfdfdf;
	overflow:scroll;
	padding:10px;
	background:white;
	z-index:999;
	top:100px;
	bottom:100px;
	right:-400px;
	width:400px;
	transition:all 0.35s ease;
}

.tongge-filter.active{
	right:0px;	
}
.bwp-woocommerce-filter-product .navbar-header{
	position:fixed;
	top:50%;
	right:0px;
	transition:all 0.35s ease;
}

.bwp-woocommerce-filter-product .navbar-header.active{
	right:400px;
}
#bwp_form_filter_product {
	float:left;
}
#bwp_form_filter_product .bwp-filter{
	float:left;
	width:100%;
}
#bwp_form_filter_product .bwp-filter li{
	float:left;
	padding:5px;
}
#bwp_form_filter_product .bwp-filter input{
	display:none;
}
#bwp_form_filter_product .bwp-filter span {
	border: 1px solid #ddd;
    display: block;
    height: 20px;
    margin: 5px 5px 5px 0;
    padding: 0;
    width: 20px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    box-sizing: content-box;
}
#bwp_form_filter_product .bwp-filter span.active{
	 border: 2px solid red;
}
#button-price-slider{
	margin:5px;
	float:right;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading:before{
	content:"";
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:9999;
	background-color:rgba(0,0,0,0.9);
}
.loading span {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
	position:fixed;
	left:50%;
	top:50%;
	z-index:10000;
}
.bwp-filter-homepage .clear_all{
	display : none;
}.buy-together-wrap * {
  box-sizing: border-box; }

.buy-together-hidden {
  display: none; }

.buy-together-wrap .item-products-wrap {
  display: inline-block;
  width: 100%; }
.buy-together-wrap .item-product {
  color: #0062bd; }
  .buy-together-wrap .item-product .item-product-title {
    margin-right: 7px; }
  .buy-together-wrap .item-product .buy-together-price {
    color: #eeab10; }
    .buy-together-wrap .item-product .buy-together-price del {
      color: #b2b3b3; }
  .buy-together-wrap .item-product label {
    cursor: pointer;
    color: inherit; }
  .buy-together-wrap .item-product.zanbt-main-item {
    color: #686c6f; }
.buy-together-wrap .item-products-wrap .item-product {
  position: relative;
  margin-bottom: 30px;
  overflow: visible; }
  .buy-together-wrap .item-products-wrap .item-product .thumbnail-wrap {
    border: 1px solid #e2e2e2;
    padding: 10px;
    overflow: visible;
    position: relative; }
    .buy-together-wrap .item-products-wrap .item-product .thumbnail-wrap:before {
      content: "+";
      position: absolute;
      font-size: 1.714em;
      line-height: 1.458em;
      height: 1.458em;
      width: 1.458em;
      border-radius: 50%;
      top: 50%;
      left: -.729em;
      margin-left: -16px;
      display: inline-block;
      text-align: center;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      z-index: 1000;
      color: #999; }
  .buy-together-wrap .item-products-wrap .item-product .item-product-title {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    min-height: 48px; }
  .buy-together-wrap .item-products-wrap .item-product img {
    max-width: 100%;
    width: auto;
    height: auto; }
  .buy-together-wrap .item-products-wrap .item-product .buy-together-price {
    color: #eeab10; }
    .buy-together-wrap .item-products-wrap .item-product .buy-together-price del {
      color: #b2b3b3; }
  .buy-together-wrap .item-products-wrap .item-product:first-child .thumbnail-wrap:before {
    display: none; }

/*# sourceMappingURL=frontend.css.map */
.cmplz-video.cmplz-iframe-styles{background-color:transparent}.cmplz-video.cmplz-hidden{visibility:hidden !important}.cmplz-blocked-content-notice{display:none}.cmplz-placeholder-parent{height:inherit}.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice,.cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice{display:block}.cmplz-blocked-content-container,.cmplz-wp-video{animation-name:cmplz-fadein;animation-duration:600ms;background:#FFF;border:0;border-radius:3px;box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;background-repeat:no-repeat !important;background-size:cover !important;height:inherit;position:relative}.cmplz-blocked-content-container.gmw-map-cover,.cmplz-wp-video.gmw-map-cover{max-height:100%;position:absolute}.cmplz-blocked-content-container.cmplz-video-placeholder,.cmplz-wp-video.cmplz-video-placeholder{padding-bottom:initial}.cmplz-blocked-content-container iframe,.cmplz-wp-video iframe{visibility:hidden;max-height:100%;border:0 !important}.cmplz-blocked-content-container .cmplz-custom-accept-btn,.cmplz-wp-video .cmplz-custom-accept-btn{white-space:normal;text-transform:initial;cursor:pointer;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:200px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus,.cmplz-wp-video .cmplz-custom-accept-btn:focus{border:1px dotted #cecece}.cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-wp-video .cmplz-blocked-content-notice{white-space:normal;text-transform:initial;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links{display:block;margin-bottom:10px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a{color:#fff}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body{display:block}.cmplz-blocked-content-container div div{display:none}.cmplz-wp-video .cmplz-placeholder-element{width:100%;height:inherit}@keyframes cmplz-fadein{from{opacity:0}to{opacity:1}}.footer-width-fixer {
    width: 100%;
}

/* Container fix for genesis themes */

.ehf-template-genesis.ehf-header .site-header .wrap,
.ehf-template-genesis.ehf-footer .site-footer .wrap,
.ehf-template-generatepress.ehf-header .site-header .inside-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
}

/* Container fix for generatepress theme */

.ehf-template-generatepress.ehf-header .site-header,
.ehf-template-generatepress.ehf-footer .site-footer {
    width: 100%;
    padding: 0;
    max-width: 100%;
    background-color: transparent !important; /* override generatepress default white color for header */
}

.bhf-hidden {
    display: none
}

/* Fix: Header hidden below the page content */
.ehf-header #masthead {
	z-index: 99;
    position: relative;
}
/*! elementor - v3.32.0 - 18-09-2025 */
:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{background:var(--e-a-bg-logo);border-radius:50%;display:inline-block;line-height:1;padding:.75em}.e-logo-wrapper i{color:var(--e-a-color-logo);font-size:1em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{height:100px;width:100px;fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3))}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-left:auto;margin-right:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-bottom:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap;margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;font-size:15px;line-height:1;padding:12px 24px;fill:#fff;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;padding:.5em;fill:#fff}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}.elementor-kit-8{--e-global-color-primary:#F1BA0A;--e-global-color-secondary:#FFDA47;--e-global-color-text:#212121;--e-global-color-accent:#A70B0B;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}}/*! elementor - v3.32.0 - 18-09-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}.elementor-30935 .elementor-element.elementor-element-1397471{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-30935 .elementor-element.elementor-element-d5e1bd9{text-align:center;}.elementor-30935 .elementor-element.elementor-element-d5e1bd9 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:45px;font-weight:600;}.elementor-24424 .elementor-element.elementor-element-7e26ce7{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:95px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:40px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-24424 .elementor-element.elementor-element-7e26ce7:not(.elementor-motion-effects-element-type-background), .elementor-24424 .elementor-element.elementor-element-7e26ce7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-24424 .elementor-element.elementor-element-87f1ba6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-24424 .elementor-element.elementor-element-711ba7c .elementor-heading-title{font-family:"Audiowide", Sans-serif;font-size:30px;font-weight:400;color:#FFFFFF;}.elementor-24424 .elementor-element.elementor-element-711ba7c .elementor-heading-title a{transition-duration:0s;}.elementor-24424 .elementor-element.elementor-element-c0b6dc3 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:14px;font-weight:400;color:#FFFFFF;}.elementor-24424 .elementor-element.elementor-element-e8490e5{--display:flex;}.elementor-24424 .elementor-element.elementor-element-908d9c3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-24424 .elementor-element.elementor-element-d1ebdc7{--display:grid;--e-con-grid-template-columns:repeat(4, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-24424 .elementor-element.elementor-element-1e39f95{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-24424 .elementor-element.elementor-element-7f0d2eb{--display:flex;}.elementor-24424 .elementor-element.elementor-element-44dd646 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:13px;font-weight:600;text-transform:uppercase;color:#000000;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-24424 .elementor-element.elementor-element-1b541c4{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-item > a{font-family:"Roboto", Sans-serif;font-size:14px;font-weight:400;text-transform:capitalize;}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-text{color:#636363;transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-1b541c4 .elementor-icon-list-item:hover .elementor-icon-list-text{color:#F03333;}.elementor-24424 .elementor-element.elementor-element-29df4d2{--display:flex;}.elementor-24424 .elementor-element.elementor-element-aa90a64 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:13px;font-weight:600;text-transform:uppercase;color:#000000;}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-24424 .elementor-element.elementor-element-f8e226f{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-item > .elementor-icon-list-text, .elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-item > a{font-family:"Roboto", Sans-serif;font-size:14px;font-weight:400;}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-text{color:#636363;transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-f8e226f .elementor-icon-list-item:hover .elementor-icon-list-text{color:#F03333;}.elementor-24424 .elementor-element.elementor-element-4149817{--display:flex;}.elementor-24424 .elementor-element.elementor-element-ef861f5 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:13px;font-weight:600;text-transform:uppercase;color:#000000;}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(5px/2);}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-5px/2);}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-24424 .elementor-element.elementor-element-0f4f334{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-item > a{font-family:"Roboto", Sans-serif;font-size:14px;font-weight:400;}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-text{color:#636363;transition:color 0.3s;}.elementor-24424 .elementor-element.elementor-element-0f4f334 .elementor-icon-list-item:hover .elementor-icon-list-text{color:#F03333;}.elementor-24424 .elementor-element.elementor-element-424b1d2{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;border-style:solid;--border-style:solid;border-width:1px 0px 1px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:1px;--border-left-width:0px;border-color:#E0E0E0;--border-color:#E0E0E0;}.elementor-widget-copyright .hfe-copyright-wrapper a, .elementor-widget-copyright .hfe-copyright-wrapper{color:var( --e-global-color-text );}.elementor-widget-copyright .hfe-copyright-wrapper, .elementor-widget-copyright .hfe-copyright-wrapper a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}@media(max-width:1024px){.elementor-24424 .elementor-element.elementor-element-7e26ce7{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-24424 .elementor-element.elementor-element-87f1ba6{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-24424 .elementor-element.elementor-element-d1ebdc7{--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(2, 1fr);--grid-auto-flow:row;}}@media(max-width:767px){.elementor-24424 .elementor-element.elementor-element-711ba7c{text-align:center;}.elementor-24424 .elementor-element.elementor-element-d1ebdc7{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-24424 .elementor-element.elementor-element-7f0d2eb{--justify-content:center;}.elementor-24424 .elementor-element.elementor-element-424b1d2{--justify-content:center;}.elementor-24424 .elementor-element.elementor-element-521480c .hfe-copyright-wrapper{text-align:center;}}@-webkit-keyframes wlwl_bang{to{box-shadow:43px -119.6666666667px #a200ff,-245px -267.6666666667px #ff0048,-23px -251.6666666667px #40f,104px -269.6666666667px #d000ff,-12px -3.6666666667px #ff8c00,160px -130.6666666667px #004dff,55px -347.6666666667px #0dff00,238px -7.6666666667px #f05,170px -135.6666666667px #c8ff00,-117px -239.6666666667px #7b00ff,-19px -146.6666666667px #c4ff00,-51px -409.6666666667px #01f,-175px -40.6666666667px #0073ff,-181px -340.6666666667px #26ff00,-213px -208.6666666667px #73ff00,231px -343.6666666667px #f10,30px -103.6666666667px #f90,-183px -233.6666666667px #ff00a2,237px -22.6666666667px #ff00b3,-68px -96.6666666667px #e0f,201px -185.6666666667px #ae00ff,247px -65.6666666667px #0900ff,-163px -343.6666666667px #ffae00,235px 73.3333333333px #00ffd5,10px -84.6666666667px #ff2b00,92px -80.6666666667px #aeff00,39px -327.6666666667px #ff00e1,61px -360.6666666667px #00ff7b,-222px -97.6666666667px #0f1,-168px -230.6666666667px #ff2b00,-213px 70.3333333333px #00a6ff,-155px -214.6666666667px #b700ff,-231px 2.3333333333px #2b00ff,-201px -326.6666666667px #f200ff,176px -55.6666666667px #ff007b,161px -259.6666666667px #e600ff,-193px -369.6666666667px #40f,139px -265.6666666667px #48ff00,-221px -29.6666666667px #ff00b7,-192px -263.6666666667px #ff006a,-134px -16.6666666667px #f80,-156px -320.6666666667px #006aff,36px -165.6666666667px #0026ff,-42px -117.6666666667px #d0f,-24px -382.6666666667px #00ff2f,221px -322.6666666667px #0dff00,83px -181.6666666667px #006fff,81px -286.6666666667px #1500ff,-225px -115.6666666667px #50f,119px -138.6666666667px #fa0,199px -311.6666666667px #0df}}@-moz-keyframes wlwl_bang{to{box-shadow:43px -119.6666666667px #a200ff,-245px -267.6666666667px #ff0048,-23px -251.6666666667px #40f,104px -269.6666666667px #d000ff,-12px -3.6666666667px #ff8c00,160px -130.6666666667px #004dff,55px -347.6666666667px #0dff00,238px -7.6666666667px #f05,170px -135.6666666667px #c8ff00,-117px -239.6666666667px #7b00ff,-19px -146.6666666667px #c4ff00,-51px -409.6666666667px #01f,-175px -40.6666666667px #0073ff,-181px -340.6666666667px #26ff00,-213px -208.6666666667px #73ff00,231px -343.6666666667px #f10,30px -103.6666666667px #f90,-183px -233.6666666667px #ff00a2,237px -22.6666666667px #ff00b3,-68px -96.6666666667px #e0f,201px -185.6666666667px #ae00ff,247px -65.6666666667px #0900ff,-163px -343.6666666667px #ffae00,235px 73.3333333333px #00ffd5,10px -84.6666666667px #ff2b00,92px -80.6666666667px #aeff00,39px -327.6666666667px #ff00e1,61px -360.6666666667px #00ff7b,-222px -97.6666666667px #0f1,-168px -230.6666666667px #ff2b00,-213px 70.3333333333px #00a6ff,-155px -214.6666666667px #b700ff,-231px 2.3333333333px #2b00ff,-201px -326.6666666667px #f200ff,176px -55.6666666667px #ff007b,161px -259.6666666667px #e600ff,-193px -369.6666666667px #40f,139px -265.6666666667px #48ff00,-221px -29.6666666667px #ff00b7,-192px -263.6666666667px #ff006a,-134px -16.6666666667px #f80,-156px -320.6666666667px #006aff,36px -165.6666666667px #0026ff,-42px -117.6666666667px #d0f,-24px -382.6666666667px #00ff2f,221px -322.6666666667px #0dff00,83px -181.6666666667px #006fff,81px -286.6666666667px #1500ff,-225px -115.6666666667px #50f,119px -138.6666666667px #fa0,199px -311.6666666667px #0df}}@-o-keyframes wlwl_bang{to{box-shadow:43px -119.6666666667px #a200ff,-245px -267.6666666667px #ff0048,-23px -251.6666666667px #40f,104px -269.6666666667px #d000ff,-12px -3.6666666667px #ff8c00,160px -130.6666666667px #004dff,55px -347.6666666667px #0dff00,238px -7.6666666667px #f05,170px -135.6666666667px #c8ff00,-117px -239.6666666667px #7b00ff,-19px -146.6666666667px #c4ff00,-51px -409.6666666667px #01f,-175px -40.6666666667px #0073ff,-181px -340.6666666667px #26ff00,-213px -208.6666666667px #73ff00,231px -343.6666666667px #f10,30px -103.6666666667px #f90,-183px -233.6666666667px #ff00a2,237px -22.6666666667px #ff00b3,-68px -96.6666666667px #e0f,201px -185.6666666667px #ae00ff,247px -65.6666666667px #0900ff,-163px -343.6666666667px #ffae00,235px 73.3333333333px #00ffd5,10px -84.6666666667px #ff2b00,92px -80.6666666667px #aeff00,39px -327.6666666667px #ff00e1,61px -360.6666666667px #00ff7b,-222px -97.6666666667px #0f1,-168px -230.6666666667px #ff2b00,-213px 70.3333333333px #00a6ff,-155px -214.6666666667px #b700ff,-231px 2.3333333333px #2b00ff,-201px -326.6666666667px #f200ff,176px -55.6666666667px #ff007b,161px -259.6666666667px #e600ff,-193px -369.6666666667px #40f,139px -265.6666666667px #48ff00,-221px -29.6666666667px #ff00b7,-192px -263.6666666667px #ff006a,-134px -16.6666666667px #f80,-156px -320.6666666667px #006aff,36px -165.6666666667px #0026ff,-42px -117.6666666667px #d0f,-24px -382.6666666667px #00ff2f,221px -322.6666666667px #0dff00,83px -181.6666666667px #006fff,81px -286.6666666667px #1500ff,-225px -115.6666666667px #50f,119px -138.6666666667px #fa0,199px -311.6666666667px #0df}}@-ms-keyframes wlwl_bang{to{box-shadow:43px -119.6666666667px #a200ff,-245px -267.6666666667px #ff0048,-23px -251.6666666667px #40f,104px -269.6666666667px #d000ff,-12px -3.6666666667px #ff8c00,160px -130.6666666667px #004dff,55px -347.6666666667px #0dff00,238px -7.6666666667px #f05,170px -135.6666666667px #c8ff00,-117px -239.6666666667px #7b00ff,-19px -146.6666666667px #c4ff00,-51px -409.6666666667px #01f,-175px -40.6666666667px #0073ff,-181px -340.6666666667px #26ff00,-213px -208.6666666667px #73ff00,231px -343.6666666667px #f10,30px -103.6666666667px #f90,-183px -233.6666666667px #ff00a2,237px -22.6666666667px #ff00b3,-68px -96.6666666667px #e0f,201px -185.6666666667px #ae00ff,247px -65.6666666667px #0900ff,-163px -343.6666666667px #ffae00,235px 73.3333333333px #00ffd5,10px -84.6666666667px #ff2b00,92px -80.6666666667px #aeff00,39px -327.6666666667px #ff00e1,61px -360.6666666667px #00ff7b,-222px -97.6666666667px #0f1,-168px -230.6666666667px #ff2b00,-213px 70.3333333333px #00a6ff,-155px -214.6666666667px #b700ff,-231px 2.3333333333px #2b00ff,-201px -326.6666666667px #f200ff,176px -55.6666666667px #ff007b,161px -259.6666666667px #e600ff,-193px -369.6666666667px #40f,139px -265.6666666667px #48ff00,-221px -29.6666666667px #ff00b7,-192px -263.6666666667px #ff006a,-134px -16.6666666667px #f80,-156px -320.6666666667px #006aff,36px -165.6666666667px #0026ff,-42px -117.6666666667px #d0f,-24px -382.6666666667px #00ff2f,221px -322.6666666667px #0dff00,83px -181.6666666667px #006fff,81px -286.6666666667px #1500ff,-225px -115.6666666667px #50f,119px -138.6666666667px #fa0,199px -311.6666666667px #0df}}@keyframes wlwl_bang{to{box-shadow:43px -119.6666666667px #a200ff,-245px -267.6666666667px #ff0048,-23px -251.6666666667px #40f,104px -269.6666666667px #d000ff,-12px -3.6666666667px #ff8c00,160px -130.6666666667px #004dff,55px -347.6666666667px #0dff00,238px -7.6666666667px #f05,170px -135.6666666667px #c8ff00,-117px -239.6666666667px #7b00ff,-19px -146.6666666667px #c4ff00,-51px -409.6666666667px #01f,-175px -40.6666666667px #0073ff,-181px -340.6666666667px #26ff00,-213px -208.6666666667px #73ff00,231px -343.6666666667px #f10,30px -103.6666666667px #f90,-183px -233.6666666667px #ff00a2,237px -22.6666666667px #ff00b3,-68px -96.6666666667px #e0f,201px -185.6666666667px #ae00ff,247px -65.6666666667px #0900ff,-163px -343.6666666667px #ffae00,235px 73.3333333333px #00ffd5,10px -84.6666666667px #ff2b00,92px -80.6666666667px #aeff00,39px -327.6666666667px #ff00e1,61px -360.6666666667px #00ff7b,-222px -97.6666666667px #0f1,-168px -230.6666666667px #ff2b00,-213px 70.3333333333px #00a6ff,-155px -214.6666666667px #b700ff,-231px 2.3333333333px #2b00ff,-201px -326.6666666667px #f200ff,176px -55.6666666667px #ff007b,161px -259.6666666667px #e600ff,-193px -369.6666666667px #40f,139px -265.6666666667px #48ff00,-221px -29.6666666667px #ff00b7,-192px -263.6666666667px #ff006a,-134px -16.6666666667px #f80,-156px -320.6666666667px #006aff,36px -165.6666666667px #0026ff,-42px -117.6666666667px #d0f,-24px -382.6666666667px #00ff2f,221px -322.6666666667px #0dff00,83px -181.6666666667px #006fff,81px -286.6666666667px #1500ff,-225px -115.6666666667px #50f,119px -138.6666666667px #fa0,199px -311.6666666667px #0df}}@-webkit-keyframes wlwl_gravity{to{transform:translateY(200px);-moz-transform:translateY(200px);-webkit-transform:translateY(200px);-o-transform:translateY(200px);-ms-transform:translateY(200px);opacity:0}}@-moz-keyframes wlwl_gravity{to{transform:translateY(200px);-moz-transform:translateY(200px);-webkit-transform:translateY(200px);-o-transform:translateY(200px);-ms-transform:translateY(200px);opacity:0}}@-o-keyframes wlwl_gravity{to{transform:translateY(200px);-moz-transform:translateY(200px);-webkit-transform:translateY(200px);-o-transform:translateY(200px);-ms-transform:translateY(200px);opacity:0}}@-ms-keyframes wlwl_gravity{to{transform:translateY(200px);-moz-transform:translateY(200px);-webkit-transform:translateY(200px);-o-transform:translateY(200px);-ms-transform:translateY(200px);opacity:0}}@keyframes wlwl_gravity{to{transform:translateY(200px);-moz-transform:translateY(200px);-webkit-transform:translateY(200px);-o-transform:translateY(200px);-ms-transform:translateY(200px);opacity:0}}@-webkit-keyframes position{0%,19.9%{margin-top:10%;margin-left:40%}20%,39.9%{margin-top:40%;margin-left:30%}40%,59.9%{margin-top:20%;margin-left:70%}60%,79.9%{margin-top:30%;margin-left:20%}80%,99.9%{margin-top:30%;margin-left:80%}}@-moz-keyframes position{0%,19.9%{margin-top:10%;margin-left:40%}20%,39.9%{margin-top:40%;margin-left:30%}40%,59.9%{margin-top:20%;margin-left:70%}60%,79.9%{margin-top:30%;margin-left:20%}80%,99.9%{margin-top:30%;margin-left:80%}}@-o-keyframes position{0%,19.9%{margin-top:10%;margin-left:40%}20%,39.9%{margin-top:40%;margin-left:30%}40%,59.9%{margin-top:20%;margin-left:70%}60%,79.9%{margin-top:30%;margin-left:20%}80%,99.9%{margin-top:30%;margin-left:80%}}@-ms-keyframes position{0%,19.9%{margin-top:10%;margin-left:40%}20%,39.9%{margin-top:40%;margin-left:30%}40%,59.9%{margin-top:20%;margin-left:70%}60%,79.9%{margin-top:30%;margin-left:20%}80%,99.9%{margin-top:30%;margin-left:80%}}@keyframes position{0%,19.9%{margin-top:10%;margin-left:40%}20%,39.9%{margin-top:40%;margin-left:30%}40%,59.9%{margin-top:20%;margin-left:70%}60%,79.9%{margin-top:30%;margin-left:20%}80%,99.9%{margin-top:30%;margin-left:80%}}.wlwl-congratulations-effect-firework{position:relative;z-index:1}.wlwl-congratulations-effect-firework>.wlwl-congratulations-effect-after,.wlwl-congratulations-effect-firework>.wlwl-congratulations-effect-before{position:absolute;width:5px;height:5px;border-radius:50%;box-shadow:0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff,0 0 #fff;-moz-animation:1s wlwl_bang ease-out infinite backwards,1s wlwl_gravity ease-in infinite backwards,5s position linear infinite backwards;-webkit-animation:1s wlwl_bang ease-out infinite backwards,1s wlwl_gravity ease-in infinite backwards,5s position linear infinite backwards;-o-animation:1s wlwl_bang ease-out infinite backwards,1s wlwl_gravity ease-in infinite backwards,5s position linear infinite backwards;-ms-animation:1s wlwl_bang ease-out infinite backwards,1s wlwl_gravity ease-in infinite backwards,5s position linear infinite backwards;animation:1s wlwl_bang ease-out infinite backwards,1s wlwl_gravity ease-in infinite backwards,5s position linear infinite backwards}.wlwl-congratulations-effect-firework>.after{-moz-animation-delay:1.25s,1.25s,1.25s;-webkit-animation-delay:1.25s,1.25s,1.25s;-o-animation-delay:1.25s,1.25s,1.25s;-ms-animation-delay:1.25s,1.25s,1.25s;animation-delay:1.25s,1.25s,1.25s;-moz-animation-duration:1.25s,1.25s,6.25s;-webkit-animation-duration:1.25s,1.25s,6.25s;-o-animation-duration:1.25s,1.25s,6.25s;-ms-animation-duration:1.25s,1.25s,6.25s;animation-duration:1.25s,1.25s,6.25s}@font-face{font-family:"wlwl_gift_icons";src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.eot);src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.woff) format("woff"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.ttf) format("truetype"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.svg#wlwl_gift_icons) format("svg");font-weight:400;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-family:"wlwl_gift_icons";src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/gift-icons/gift-icons.svg#wlwl_gift_icons) format("svg")}}[class*=" wlwl_gift_icons-"]:after,[class*=" wlwl_gift_icons-"]:before,[class^=wlwl_gift_icons-]:after,[class^=wlwl_gift_icons-]:before{font-family:wlwl_gift_icons!important;font-size:inherit!important;font-style:normal!important;margin:0!important}.wlwl_gift_icons-aniversary-giftbox:before{content:"\f100"}.wlwl_gift_icons-big-giftbox-and-gift-with-heart:before{content:"\f101"}.wlwl_gift_icons-big-giftbox-with-bun:before{content:"\f102"}.wlwl_gift_icons-big-giftbox-with-lateral-lace:before{content:"\f103"}.wlwl_gift_icons-big-giftbox-with-ribbon:before{content:"\f104"}.wlwl_gift_icons-cylindrical-giftbox-with-ribbon:before{content:"\f105"}.wlwl_gift_icons-gifbox-with-lace:before{content:"\f106"}.wlwl_gift_icons-gifbox-with-ribbon-in-the-middle:before{content:"\f107"}.wlwl_gift_icons-gifbox-with-ribbon-on-top:before{content:"\f108"}.wlwl_gift_icons-gifbox-wrapped-with-ribbon:before{content:"\f109"}.wlwl_gift_icons-gift-with-bow:before{content:"\f10a"}.wlwl_gift_icons-gift-with-ribbon:before{content:"\f10b"}.wlwl_gift_icons-giftbox-side:before{content:"\f10c"}.wlwl_gift_icons-giftbox-with-a-big-ribbon-on-cover:before{content:"\f10d"}.wlwl_gift_icons-giftbox-with-a-heart:before{content:"\f10e"}.wlwl_gift_icons-giftbox-with-a-heart-on-side:before{content:"\f10f"}.wlwl_gift_icons-giftbox-with-big-lace:before{content:"\f110"}.wlwl_gift_icons-giftbox-with-big-lace-1:before{content:"\f111"}.wlwl_gift_icons-giftbox-with-big-ribbon:before{content:"\f112"}.wlwl_gift_icons-giftbox-with-big-ribbon-1:before{content:"\f113"}.wlwl_gift_icons-giftbox-with-big-ribbon-2:before{content:"\f114"}.wlwl_gift_icons-giftbox-with-big-ribbon-3:before{content:"\f115"}.wlwl_gift_icons-giftbox-with-bun:before{content:"\f116"}.wlwl_gift_icons-giftbox-with-flower:before{content:"\f117"}.wlwl_gift_icons-giftbox-with-hearts:before{content:"\f118"}.wlwl_gift_icons-giftbox-with-lace-on-a-side:before{content:"\f119"}.wlwl_gift_icons-giftbox-with-long-ribbon:before{content:"\f11a"}.wlwl_gift_icons-giftbox-with-ribbon:before{content:"\f11b"}.wlwl_gift_icons-giftbox-with-ribbon-on-one-side:before{content:"\f11c"}.wlwl_gift_icons-giftbox-with-ribbon-on-top:before{content:"\f11d"}.wlwl_gift_icons-giftbox-with-ribbon-on-top-1:before{content:"\f11e"}.wlwl_gift_icons-giftbox-wrapped:before{content:"\f11f"}.wlwl_gift_icons-heart-shape-giftbox-with-lace:before{content:"\f120"}.wlwl_gift_icons-heart-shape-giftbox-with-ribbon:before{content:"\f121"}.wlwl_gift_icons-heart-shapped-gifbox-with-ribbon:before{content:"\f122"}.wlwl_gift_icons-open-box-with-two-hearts:before{content:"\f123"}.wlwl_gift_icons-open-gitfbox-with-two-hearts:before{content:"\f124"}.wlwl_gift_icons-polka-dots-giftbox-with-lace:before{content:"\f125"}.wlwl_gift_icons-rectangular-giftbox-with-flower:before{content:"\f126"}.wlwl_gift_icons-round-gift-box-with-lace:before{content:"\f127"}.wlwl_gift_icons-round-giftbox-with-flower:before{content:"\f128"}.wlwl_gift_icons-square-gifbox-wrapped:before{content:"\f129"}.wlwl_gift_icons-square-gifsoft-with-bun:before{content:"\f12a"}.wlwl_gift_icons-square-giftbox-with-big-lace:before{content:"\f12b"}.wlwl_gift_icons-square-giftbox-with-big-ribbon:before{content:"\f12c"}.wlwl_gift_icons-three-giftboxes-with-ribbon-and-heart:before{content:"\f12d"}.wlwl_gift_icons-two-gifboxes-tied-together:before{content:"\f12e"}.wlwl_gift_icons-two-gifboxes-wrapped:before{content:"\f12f"}.wlwl_gift_icons-two-giftboxes:before{content:"\f130"}.wlwl_gift_icons-valentines-giftbox:before{content:"\f131"}@keyframes button-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes wlwl_moveclouds{0%{bottom:-60px}to{bottom:110%}}@-webkit-keyframes wlwl_sideWays{0%{margin-left:0}to{margin-left:50px}}@-moz-keyframes wlwl_moveclouds{0%{bottom:-60px}to{bottom:110%}}@-moz-keyframes wlwl_sideWays{0%{margin-left:0}to{margin-left:50px}}@-o-keyframes wlwl_moveclouds{0%{bottom:-60px}to{bottom:110%}}@-o-keyframes wlwl_sideWays{0%{margin-left:0}to{margin-left:50px}}.wlwl_lucky_wheel_wrap:not(.wlwl_lucky_wheel_active){display:none!important}.wlwl_lucky_wheel_content,.wlwl_lucky_wheel_content *{box-sizing:border-box}@font-face{font-family:"woocommerce-lucky-wheel";src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.eot);src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.woff) format("woff"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.ttf) format("truetype"),url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.svg) format("svg");font-weight:400;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-family:"woocommerce-lucky-wheel";src:url(/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.svg) format("svg")}}[class*=" wlwl-"]:after,[class*=" wlwl-"]:before,[class^=wlwl-]:after,[class^=wlwl-]:before{font-family:"woocommerce-lucky-wheel";font-size:20px;font-style:normal;margin:0;padding:0}.wlwl-location:before{content:"\f100"}.wlwl-giftbox:before{content:"\f101"}.wlwl-cancel:before{content:"\f103";font-size:22px;cursor:pointer}.wlwl-wheel:before{content:"\f104"}.wlwl_lucky_wheel_content{opacity:0;position:fixed;left:0;top:0;z-index:99999;padding:30px 20px 20px;height:100%;margin-left:-110%;transition:1s;box-shadow:2px 0 11px #000;width:100%;justify-content:center;justify-items:center}.wlwl_lucky_wheel_content.lucky_wheel_content_show{margin-left:0!important;opacity:1!important}.piece_wheel{margin:0}.wlwl_wheel_spin,.wlwl_wheel_spin_container{border-radius:50%;align-items:center}.wlwl-close-wheel,.wlwl-hide-after-spin{position:absolute;top:5px;line-height:1;right:-28px;cursor:pointer;z-index:100;bottom:unset}.wlwl-hide-after-spin{display:none}.wlwl-overlay{position:fixed;top:0;left:0;bottom:0;right:0;display:none;z-index:9999;background:rgba(0,0,0,.7);cursor:pointer}.wheel_content_right .wlwl_user_lucky{padding:0 10px;font-size:16px;font-weight:600;margin:0 auto}.wlwl_lucky_wheel_content.wlwl-finish-spinning .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky{max-width:unset!important}.wheel_content_right ul,.wheel_content_right ul li{list-style:none}.wlwl-show-again-option{padding:10px 10px 10px 0;font-weight:600;display:flex;justify-content:left}.wlwl-show-again-option>div:last-child{padding-right:0}.wlwl-show-again-option>div{text-align:left;padding:0 20px 0 0}.wlwl-close span,.wlwl-never-again span,.wlwl-reminder-later span{font-weight:300;font-size:16px;cursor:pointer}.wlwl-close a:hover,.wlwl-never-again a:hover,.wlwl-reminder-later a:hover{color:rgba(0,0,0,.6);text-decoration:underline}.wlwl_user_lucky .wlwl_field_email_wrap,.wlwl_user_lucky .wlwl_field_mobile_wrap,.wlwl_user_lucky .wlwl_field_name_wrap,.wlwl_user_lucky .wlwl_recaptcha_wrap{width:100%;text-align:center;margin:10px 0;position:relative;display:inline-block}.wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code{display:flex}.wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code .wlwl_field_input{flex:auto;border-bottom-left-radius:0;border-top-left-radius:0;border-left:0}.wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code .wlwl_field_select{padding:5px 0 5px 10px;border:1px solid rgba(34,36,38,.15);border-right:0;border-bottom-left-radius:.28571429rem;border-top-left-radius:.28571429rem;background-color:#f2f2f2;font-weight:300}.wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code .wlwl_field_select:focus{border:0;outline:0}.wlwl_lucky_wheel_content .wlwl_field_input{margin:0;max-width:100%;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:transparent;text-align:left;line-height:1;padding:10px 20px;background:#fff;border:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;-webkit-transition:border-color .1s ease,-webkit-box-shadow .1s ease;transition:box-shadow .1s ease,border-color .1s ease;transition:box-shadow .1s ease,border-color .1s ease,-webkit-box-shadow .1s ease;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;width:100%;font-weight:300}.wlwl_lucky_wheel_content.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky{padding:0 10px;font-size:16px}.wlwl_lucky_wheel_content.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky .wlwl_field_input{line-height:1.5;padding:5px 10px}.wheel_content_right>.wlwl_user_lucky>.wlwl_spin_button{border-radius:3px;font-size:22px;cursor:pointer;margin:10px 0 0;display:inline-block;padding:10px 20px;font-weight:300;opacity:1;-webkit-box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;box-shadow:0 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) inset;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:opacity .2s ease,background-color .2s ease,color .2s ease,background .2s ease,-webkit-box-shadow .2s ease;transition:opacity .2s ease,background-color .2s ease,color .2s ease,box-shadow .2s ease,background .2s ease;transition:opacity .2s ease,background-color .2s ease,color .2s ease,box-shadow .2s ease,background .2s ease,-webkit-box-shadow .2s ease;will-change:'';-webkit-tap-highlight-color:transparent;width:100%;text-align:center;text-transform:uppercase;box-sizing:border-box;line-height:1}.wlwl_lucky_wheel_content.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky .wlwl_spin_button{padding:10px;font-size:16px;box-sizing:border-box}.wheel_content_right>.wlwl_user_lucky>.wlwl_spin_button:hover{opacity:.9}.wheel_description{padding:10px;font-size:16px;line-height:1.5;font-weight:300}.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h1,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h2,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h3,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h4,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h5,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description h6{font-size:18px;font-weight:300;line-height:1.5em;margin:0;padding:0}.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description ol,.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wheel_description ul,.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_description ol,.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_description ul{margin-bottom:5px}.lucky_wheel_content_tablet .wheel-content-wrapper .wheel_content_right .wlwl-show-again-option{padding-top:0}.wlwl-required-field{border:1px solid red!important}.wlwl_error_field{position:absolute;font-size:13px;left:0;border-radius:5px;color:inherit;bottom:-20px}.wlwl_mail_note{font-size:14px}.wlwl_wheel_icon{display:flex}.wlwl-box{align-self:flex-end;animation-duration:1.5s;animation-iteration-count:infinite;margin:0 auto;transform-origin:bottom}.wlwl_wheel_icon{position:fixed;z-index:99999;cursor:pointer;line-height:1;transition:all 2s ease;font-size:50px}#wlwl_popup_canvas.wlwl_wheel_icon{box-shadow:0 0 5px rgba(0,0,0,.4);border-radius:50%}.wlwl_wheel_icon.wlwl-wheel-position-top-left{top:15px;left:0;margin-left:-100%}.wlwl_wheel_icon.wlwl-wheel-position-top-right{top:15px;right:0;margin-right:-100%}.wlwl_wheel_icon.wlwl-wheel-position-bottom-left{bottom:5px;left:5px;margin-left:-100%}.wlwl_wheel_icon.wlwl-wheel-position-bottom-right{bottom:5px;right:5px;margin-right:-100%}.wlwl_wheel_icon.wlwl-wheel-position-middle-left{bottom:45%;left:0;margin-left:-100%}.wlwl_wheel_icon.wlwl-wheel-position-middle-right{bottom:45%;right:0;margin-right:-100%}#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-bottom-right.wlwl_show,#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-middle-right.wlwl_show,#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-top-right.wlwl_show{transform:rotate(-1801deg)}.wlwl_wheel_icon.wlwl-wheel-position-bottom-right.wlwl_show,.wlwl_wheel_icon.wlwl-wheel-position-middle-right.wlwl_show,.wlwl_wheel_icon.wlwl-wheel-position-top-right.wlwl_show{margin-right:0}#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-bottom-left.wlwl_show,#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-middle-left.wlwl_show,#wlwl_popup_canvas.wlwl_wheel_icon.wlwl-wheel-position-top-left.wlwl_show{transform:rotate(1801deg)}.rtl .wheel-content-wrapper .wheel_content_left,.wlwl_wheel_icon.wlwl-wheel-position-bottom-left.wlwl_show,.wlwl_wheel_icon.wlwl-wheel-position-middle-left.wlwl_show,.wlwl_wheel_icon.wlwl-wheel-position-top-left.wlwl_show{margin-left:0}.wheel-content-wrapper{display:flex;font-size:0;width:100%;align-items:center;height:100%}.wheel-content-wrapper .wheel_content_left{display:inline-block;margin-left:-30%;position:relative;width:48%}.wlwl_lucky_wheel_content.lucky_wheel_content_tablet.wlwl_spin_bottom .wheel-content-wrapper .wheel_content_left{margin-top:-20px;margin-bottom:20px}.wheel-content-wrapper .wlwl_wheel_spin_container{position:absolute;text-align:center;vertical-align:middle;width:100%;height:100%;top:0;left:0;padding:0 0 0 9%;display:flex}.wheel-content-wrapper .wlwl_pointer_content{display:flex;width:100%;height:100%;align-items:center;justify-content:center;vertical-align:middle;-moz-transform:rotate(270deg);-webkit-transform:rotate(270deg);-o-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.wheel-content-wrapper .wheel_content_right{z-index:99;position:relative;padding:10px;display:inline-block;vertical-align:top;min-height:70%}.wlwl_wheel_spin{position:relative;margin:0 auto}.wlwl_spin_top .wheel_content_left{-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.wlwl_wheel_spin_container .wlwl_pointer_content .wlwl_pointer.pointer_spin_top:before{text-shadow:4px 2px 0 rgba(0,0,0,.2)}.wlwl_wheel_spin .wlwl_wheel_spin_container .wlwl_pointer_content .wlwl_pointer.pointer_spin_top:after{box-shadow:1px 2px 0 rgba(0,0,0,.2)}.canvas_spin_top,.wlwl_margin_position .wheel-content-wrapper .wlwl_wheel_spin_container .wlwl_pointer_content,.wlwl_spin_bottom .wheel_content_left{-moz-transform:rotate(90deg);-webkit-transform:rotate(90deg);-o-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.canvas_spin_bottom{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.wlwl_wheel_spin_container .wlwl_pointer_content .wlwl_pointer.pointer_spin_bottom:before{text-shadow:-4px -2px 0 rgba(0,0,0,.2)}.wlwl_wheel_spin .wlwl_wheel_spin_container .wlwl_pointer_content .wlwl_pointer.pointer_spin_bottom:after{box-shadow:-1px -2px 0 rgba(0,0,0,.2)}.wlwl_margin_position .wheel-content-wrapper .wlwl_wheel_spin_container{padding:0 0 1% 97%!important}.wlwl_margin_position .wlwl_pointer:before{text-shadow:4px -2px 0 rgba(0,0,0,.2)}.wlwl_margin_position .wheel-content-wrapper .wlwl_wheel_spin_container .wlwl_pointer_content{line-height:1}.wlwl_pointer:before{text-shadow:-4px 2px 0 rgba(0,0,0,.2);font-size:55px}.wlwl_pointer{position:relative;-moz-transform:translateY(0);-webkit-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.wlwl_margin_position .wlwl_wheel_spin_container .wlwl_pointer_content .wlwl_pointer:after{content:"";position:absolute;background-color:#fff;width:20px;height:20px;bottom:20px;left:30%;box-shadow:1px -2px 3px rgba(0,0,0,.3);border-radius:50%}.wlwl-frontend-result{padding:10px;font-size:18px;font-weight:300}.wheel_content_right .wlwl_user_lucky .wlwl_chek_mail.wlwl-adding{position:relative;opacity:1;pointer-events:auto;-webkit-transition:all 0s linear,opacity .1s ease;transition:all 0s linear,opacity .1s ease;color:transparent!important}.wheel_content_right .wlwl_user_lucky .wlwl_chek_mail.wlwl-adding:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#fff transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.wheel_content_right .wlwl_user_lucky .wlwl_chek_mail.wlwl-adding:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}#wlwl_canvas{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;display:block;vertical-align:middle}#wlwl_canvas1{box-shadow:4px 8px 0 rgba(0,0,0,.3)}#wlwl_canvas1,#wlwl_canvas2{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;display:block;vertical-align:middle}.wlwl-html{overflow:hidden}.wlwl_user_lucky_spinning{max-height:0!important}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky{padding:0;margin:10px;font-size:16px;overflow:hidden;transition:max-height 1s;position:relative;z-index:99;max-height:500px}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky .wlwl_field_input{line-height:1.5;padding:5px 10px}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wlwl_user_lucky .wlwl_spin_button{padding:10px;font-size:16px}.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_description h1{font-size:18px;font-weight:300;line-height:1.5em}.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_description h2{font-size:17px;font-weight:300;line-height:1.5em}.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_description h3{font-size:16px;font-weight:300;line-height:1.5em}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper{flex-direction:column-reverse;justify-content:flex-end;gap:30px}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile{overflow:hidden auto;z-index:999999}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_content_left{width:100%;margin:20px 0 0}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right .wheel_content_left .wlwl_wheel_spin{margin:0 auto}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_right{padding:0;width:100%!important;min-height:auto}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel-content-wrapper .wheel_content_left{width:100%!important;margin-left:0}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wlwl-close span,.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wlwl-never-again span,.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wlwl-reminder-later span{font-size:14px;display:block;width:100%;margin:0;padding:5px 0}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel_content_left .wlwl-frontend-result{position:absolute;top:0;z-index:9999}.wlwl_lucky_wheel_content.wlwl_lucky_wheel_content_mobile .wheel_content_left .wlwl_wheel_spin{transition:opacity 2s}.wlwl-gdpr-checkbox-wrap{font-size:14px;margin-bottom:0;margin-top:15px}.wlwl-gdpr-checkbox-wrap input[type=checkbox]{margin:0 5px 0 0}.wlwl-hidden-item{display:none!important}.rtl #wlwl_error_mail,.rtl #wlwl_error_mobile,.rtl #wlwl_error_name{left:unset!important;right:0}.rtl .wlwl_lucky_wheel_content .wlwl_field_input{text-align:right!important}.rtl .wlwl_lucky_wheel_content{left:unset!important;right:0;height:100%;margin-left:unset!important;margin-right:-110%}.rtl .wlwl_lucky_wheel_content.lucky_wheel_content_show{margin-left:unset!important;margin-right:0!important}.rtl .wlwl_lucky_wheel_content:not(.wlwl_lucky_wheel_content_mobile) .wlwl-show-again-option>div{text-align:right!important;padding:0 0 0 20px!important}.rtl .wlwl_lucky_wheel_content:not(.wlwl_lucky_wheel_content_mobile) .wlwl-show-again-option{justify-content:right!important}.rtl .wlwl-close-wheel,.rtl .wlwl-hide-after-spin{right:unset!important;left:5px}.rtl .wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code .wlwl_field_input{flex:auto;border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:.28571429rem;border-top-left-radius:.28571429rem;border-right:0}.rtl .wlwl_user_lucky .wlwl_field_mobile_wrap.wlwl_field_mobile_wrap_country_code .wlwl_field_select{padding:5px 10px 5px 0;border:1px solid rgba(34,36,38,.15);border-left:0;border-bottom-right-radius:.28571429rem;border-top-right-radius:.28571429rem;border-bottom-left-radius:0;border-top-left-radius:0;background-color:#f2f2f2;font-weight:300}@media screen and (max-width:768px){.wlwl-close-wheel,.wlwl-hide-after-spin{right:5px}}form.wlwl-button-apply-coupon-form{margin:0!important;padding:10px 0!important}form.wlwl-button-apply-coupon-form .wlwl-button-apply-coupon{margin:0!important}.wlwl-leaf-scene,.wlwl-leaf-scene div{position:absolute;top:0;left:0;transform-style:preserve-3d}.wlwl-leaf-scene{bottom:0;width:100%}.wlwl-leaf-scene div{width:20px;height:20px;background-size:100%;backface-visibility:visible;background-repeat:round}.wlwl-background-effect-halloween-1 .wlwl-leaf-scene div:nth-child(2n+7),.wlwl-background-effect-halloween-2 .wlwl-leaf-scene div:nth-child(2n+7),.wlwl-background-effect-halloween-3 .wlwl-leaf-scene div:nth-child(2n+7){opacity:.7}.wlwl-background-effect-halloween-1 .wlwl-leaf-scene div:nth-child(2n+11),.wlwl-background-effect-halloween-2 .wlwl-leaf-scene div:nth-child(2n+11),.wlwl-background-effect-halloween-3 .wlwl-leaf-scene div:nth-child(2n+11){opacity:.9}.wlwl-background-effect-halloween-1 .wlwl-leaf-scene div:nth-child(2n+3),.wlwl-background-effect-halloween-2 .wlwl-leaf-scene div:nth-child(2n+3),.wlwl-background-effect-halloween-3 .wlwl-leaf-scene div:nth-child(2n+3){opacity:.4}.wlwl-background-effect-halloween-1 .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/bat.png)}.wlwl-background-effect-halloween-2 .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/halloween-ghost.png)}.wlwl-background-effect-halloween-3 .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/pumpkin.png)}.wlwl-background-effect-leaf-1 .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/leaf-1.png)}.wlwl-background-effect-leaf-2 .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/leaf-2.png)}.wlwl-background-effect-hearts .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/hearts.png)}.wlwl-background-effect-heart .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/heart.png)}.wlwl-background-effect-smile .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/smile.png)}.wlwl-background-effect-star .wlwl-leaf-scene div{background-image:url(/wp-content/plugins/woocommerce-lucky-wheel/images/falling-snow/star.png)}.wlwl-bubble{width:60px;height:60px;position:absolute}.wlwl-bubble-x1{left:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);transform:scale(.9);-webkit-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}.wlwl-bubble-x2{left:20%;-webkit-transform:scale(.6);-moz-transform:scale(.6);transform:scale(.6);-webkit-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate}.wlwl-bubble-x3{left:40%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}.wlwl-bubble-x4{left:60%;-webkit-transform:scale(.75);-moz-transform:scale(.75);transform:scale(.75);-webkit-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate}.wlwl-bubble-x5,.wlwl-bubble-x6{left:80%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate}.wlwl-bubble-x6{left:10%;-webkit-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}.wlwl-bubble-x7{left:30%;-webkit-transform:scale(.6);-moz-transform:scale(.6);transform:scale(.6);-webkit-animation:wlwl_moveclouds 23s linear infinite,wlwl_sideWays 7s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 23s linear infinite,wlwl_sideWays 7s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 23s linear infinite,wlwl_sideWays 7s ease-in-out infinite alternate}.wlwl-bubble-x8{left:50%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 29s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 29s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 29s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate}.wlwl-bubble-x9{left:70%;-webkit-transform:scale(.75);-moz-transform:scale(.75);transform:scale(.75);-webkit-animation:wlwl_moveclouds 13s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 13s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 13s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate}.wlwl-bubble-x10{left:90%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 11s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 11s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 11s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate}.wlwl-bubble-x11{left:100%;-webkit-transform:scale(.9);-moz-transform:scale(.9);transform:scale(.9);-webkit-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 15s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}.wlwl-bubble-x12{left:110%;-webkit-transform:scale(.6);-moz-transform:scale(.6);transform:scale(.6);-webkit-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 25s linear infinite,wlwl_sideWays 5s ease-in-out infinite alternate}.wlwl-bubble-x13{left:120%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 20s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}.wlwl-bubble-x14{left:130%;-webkit-transform:scale(.75);-moz-transform:scale(.75);transform:scale(.75);-webkit-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 18s linear infinite,wlwl_sideWays 2s ease-in-out infinite alternate}.wlwl-bubble-x15,.wlwl-bubble-x16{left:140%;-webkit-transform:scale(.8);-moz-transform:scale(.8);transform:scale(.8);-webkit-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 7s linear infinite,wlwl_sideWays 1s ease-in-out infinite alternate}.wlwl-bubble-x16{left:150%;-webkit-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-moz-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate;-o-animation:wlwl_moveclouds 8s linear infinite,wlwl_sideWays 4s ease-in-out infinite alternate}/*! Hint.css - v2.5.0 - 2017-04-23
* http://kushagragour.in/lab/hint/
* Copyright (c) 2017 Kushagra Gour */

[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:after,[class*=hint--]:before{position:absolute;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0);visibility:hidden;opacity:0;z-index:1000000;pointer-events:none;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=hint--]:hover:after,[class*=hint--]:hover:before{visibility:visible;opacity:1;-webkit-transition-delay:.1s;-moz-transition-delay:.1s;transition-delay:.1s}[class*=hint--]:before{content:'';position:absolute;background:0 0;border:6px solid transparent;z-index:1000001}[class*=hint--]:after{background:#383838;color:#fff;padding:8px 10px;font-size:12px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;line-height:12px;white-space:nowrap;text-shadow:0 -1px 0 #000;box-shadow:4px 4px 8px rgba(0,0,0,.3)}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label='']:after,[aria-label='']:before,[data-hint='']:after,[data-hint='']:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;left:50%}.hint--top:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--top:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{top:100%;left:50%}.hint--bottom:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom:after{-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.hint--bottom:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--right:before{border-right-color:#383838;margin-left:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{left:100%;bottom:50%}.hint--right:hover:after,.hint--right:hover:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--left:before{border-left-color:#383838;margin-right:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{right:100%;bottom:50%}.hint--left:hover:after,.hint--left:hover:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;left:50%}.hint--top-left:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--top-left:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--top-left:hover:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;left:50%}.hint--top-right:before{margin-bottom:-11px;left:calc(50% - 6px)}.hint--top-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--top-right:hover:after,.hint--top-right:hover:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{top:100%;left:50%}.hint--bottom-left:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-left:after{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);transform:translateX(-100%);margin-left:12px}.hint--bottom-left:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--bottom-left:hover:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{top:100%;left:50%}.hint--bottom-right:before{margin-top:-11px;left:calc(50% - 6px)}.hint--bottom-right:after{-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0);margin-left:-12px}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{white-space:normal;line-height:1.4em;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-left-color:#b34e4d}.hint--error.hint--right:before{border-right-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-left-color:#c09854}.hint--warning.hint--right:before{border-right-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-left-color:#3986ac}.hint--info.hint--right:before{border-right-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-left-color:#458746}.hint--success.hint--right:before{border-right-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top:after{-webkit-transform:translateX(-50%) translateY(-8px);-moz-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--top-left:after{-webkit-transform:translateX(-100%) translateY(-8px);-moz-transform:translateX(-100%) translateY(-8px);transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);transform:translateY(-8px)}.hint--always.hint--bottom:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom:after{-webkit-transform:translateX(-50%) translateY(8px);-moz-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--bottom-left:after{-webkit-transform:translateX(-100%) translateY(8px);-moz-transform:translateX(-100%) translateY(8px);transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{-webkit-transform:translateY(8px);-moz-transform:translateY(8px);transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{-webkit-transform:translateX(-8px);-moz-transform:translateX(-8px);transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{-webkit-transform:translateX(8px);-moz-transform:translateX(8px);transform:translateX(8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{-webkit-transition-duration:0s;-moz-transition-duration:0s;transition-duration:0s}.hint--bounce:after,.hint--bounce:before{-webkit-transition:opacity .3s ease,visibility .3s ease,-webkit-transform .3s cubic-bezier(.71,1.7,.77,1.24);-moz-transition:opacity .3s ease,visibility .3s ease,-moz-transform .3s cubic-bezier(.71,1.7,.77,1.24);transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}/* perfect-scrollbar v0.6.14 */
.ps-container{-ms-touch-action:auto;touch-action:auto;overflow:hidden !important;-ms-overflow-style:none}@supports (-ms-overflow-style: none){.ps-container{overflow:auto !important}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.ps-container{overflow:auto !important}}.ps-container.ps-active-x>.ps-scrollbar-x-rail,.ps-container.ps-active-y>.ps-scrollbar-y-rail{display:block;background-color:transparent}.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}.ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999;height:11px}.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}.ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999;width:11px}.ps-container>.ps-scrollbar-x-rail{display:none;position:absolute;opacity:0;-webkit-transition:background-color .2s linear, opacity .2s linear;-o-transition:background-color .2s linear, opacity .2s linear;-moz-transition:background-color .2s linear, opacity .2s linear;transition:background-color .2s linear, opacity .2s linear;bottom:0px;height:15px}.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x{position:absolute;background-color:#aaa;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;-o-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;-moz-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;bottom:2px;height:6px}.ps-container>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x,.ps-container>.ps-scrollbar-x-rail:active>.ps-scrollbar-x{height:11px}.ps-container>.ps-scrollbar-y-rail{display:none;position:absolute;opacity:0;-webkit-transition:background-color .2s linear, opacity .2s linear;-o-transition:background-color .2s linear, opacity .2s linear;-moz-transition:background-color .2s linear, opacity .2s linear;transition:background-color .2s linear, opacity .2s linear;right:0;width:15px}.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y{position:absolute;background-color:#aaa;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;-o-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;-moz-transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;transition:background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;right:2px;width:6px}.ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y,.ps-container>.ps-scrollbar-y-rail:active>.ps-scrollbar-y{width:11px}.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}.ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999;height:11px}.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}.ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999;width:11px}.ps-container:hover>.ps-scrollbar-x-rail,.ps-container:hover>.ps-scrollbar-y-rail{opacity:.6}.ps-container:hover>.ps-scrollbar-x-rail:hover{background-color:#eee;opacity:.9}.ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x{background-color:#999}.ps-container:hover>.ps-scrollbar-y-rail:hover{background-color:#eee;opacity:.9}.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y{background-color:#999}
.ps-theme-wpc {
    -ms-touch-action: none;
    touch-action: none;
    overflow: hidden !important;
    -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
    .ps-theme-wpc {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps-theme-wpc {
        overflow: auto !important;
    }
}

.ps-theme-wpc.ps-active-x > .ps-scrollbar-x-rail,
.ps-theme-wpc.ps-active-y > .ps-scrollbar-y-rail {
    display: block;
    background-color: transparent;
}

.ps-theme-wpc.ps-in-scrolling {
    pointer-events: none;
}

.ps-theme-wpc.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
    background-color: rgba(0, 0, 0, .1) !important;
}

.ps-theme-wpc.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 1);
}

.ps-theme-wpc.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: rgba(0, 0, 0, .1) !important;
}

.ps-theme-wpc.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 1);
    width: 2px;
    border-radius: 1px;
}

.ps-theme-wpc > .ps-scrollbar-x-rail {
    display: none;
    position: absolute;
    /* please don't change 'position' */
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    bottom: 0;
    /* there must be 'bottom' for ps-scrollbar-x-rail */
    height: 2px;
    border-radius: 1px;
}

.ps-theme-wpc > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    position: absolute;
    /* please don't change 'position' */
    background-color: rgba(0, 0, 0, 1);
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    bottom: 0;
    /* there must be 'bottom' for ps-scrollbar-x */
    height: 2px !important;
    border-radius: 1px !important;
}

.ps-theme-wpc > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x, .ps-theme-wpc > .ps-scrollbar-x-rail:active > .ps-scrollbar-x {
    height: 2px;
    border-radius: 1px;
}

.ps-theme-wpc > .ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    /* please don't change 'position' */
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    right: 0;
    /* there must be 'right' for ps-scrollbar-y-rail */
    width: 2px;
    border-radius: 1px;
}

.ps-theme-wpc > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    position: absolute;
    /* please don't change 'position' */
    background-color: rgba(0, 0, 0, 1);
    /* border-radius: 0; */
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    right: 0;
    /* there must be 'right' for ps-scrollbar-y */
    width: 2px !important;
    border-radius: 1px !important;
}

.ps-theme-wpc > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y, .ps-theme-wpc > .ps-scrollbar-y-rail:active > .ps-scrollbar-y {
    width: 2px;
    border-radius: 1px;
}

.ps-theme-wpc:hover.ps-in-scrolling {
    pointer-events: none;
}

.ps-theme-wpc:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
    background-color: rgba(0, 0, 0, 1);
}

.ps-theme-wpc:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 1);
    height: 2px;
    border-radius: 1px;
}

.ps-theme-wpc:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: rgba(0, 0, 0, 1);
}

.ps-theme-wpc:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 1);
    width: 2px;
    border-radius: 1px;
}

.ps-theme-wpc:hover > .ps-scrollbar-x-rail:hover {
    background-color: rgba(0, 0, 0, .1);
    opacity: 1;
}

.ps-theme-wpc:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
    background-color: rgba(0, 0, 0, 1);
}

.ps-theme-wpc:hover > .ps-scrollbar-y-rail:hover {
    background-color: rgba(0, 0, 0, .1);
    opacity: 1;
}

.ps-theme-wpc:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
    background-color: rgba(0, 0, 0, 1);
}
@keyframes wpc-spinner {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes wpc-spinner {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes woosc-spinner {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes woosc-spinner {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.woosc-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-popup.open {
  opacity: 1;
  visibility: visible;
}

.woosc-popup.open .woosc-popup-inner .woosc-popup-content {
  top: 50%;
}

.woosc-popup .woosc-popup-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content {
  position: absolute;
  padding: 15px;
  top: 60%;
  left: 50%;
  width: 360px;
  height: 360px;
  max-width: 90%;
  max-height: 90%;
  background-color: #fff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-popup.woosc-share .woosc-popup-inner .woosc-popup-content {
  height: auto;
  padding: 30px;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-popup-close {
  width: 32px;
  height: 32px;
  line-height: 32px;
  position: absolute;
  top: -32px;
  right: -32px;
  color: #fff;
  text-align: center;
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-input input {
  display: block;
  width: 100%;
  border: none;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  box-shadow: none;
  color: #222;
  background-color: #f2f2f2;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-appearance: none;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result {
  flex-grow: 1;
  margin-top: 15px;
  overflow-y: auto;
  position: relative;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li {
  display: block;
  padding: 10px 0;
  border: 1px solid #fafafa;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner {
  display: flex;
  align-items: center;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-image {
  width: 48px;
  flex: 0 0 48px;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-image img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: none;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-name {
  flex-grow: 1;
  padding: 0 10px;
  color: #222;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-add {
  width: 48px;
  text-align: center;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-add span {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #222;
  background-color: #f2f2f2;
  cursor: pointer;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result ul li .item-inner .item-add span:hover {
  color: #fff;
  background-color: #222;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result:after {
  width: 32px;
  height: 32px;
  display: block;
  margin-top: -16px;
  margin-left: -16px;
  content: "";
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/curve.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  -webkit-animation: woosc-spinner 1s linear infinite;
  -moz-animation: woosc-spinner 1s linear infinite;
  -ms-animation: woosc-spinner 1s linear infinite;
  -o-animation: woosc-spinner 1s linear infinite;
  animation: woosc-spinner 1s linear infinite;
  opacity: 0;
  visibility: hidden;
}

.woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result.woosc-loading:before, .woosc-popup .woosc-popup-inner .woosc-popup-content .woosc-popup-content-inner .woosc-search-result.woosc-loading:after {
  opacity: 1;
  visibility: visible;
}

.woosc-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999979;
  box-sizing: border-box;
  pointer-events: none;
}

.woosc-area .woosc-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.woosc-area .woosc-inner .woosc-table {
  padding: 15px 15px 78px 15px;
  margin: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #292a30;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99999997;
  pointer-events: none;
}

.woosc-area .woosc-inner .woosc-table * {
  box-sizing: border-box;
}

.woosc-area .woosc-inner .woosc-table.woosc-table-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner {
  background-color: #ffffff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 7;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner:after {
  width: 32px;
  height: 32px;
  display: block;
  margin-top: -16px;
  margin-left: -16px;
  content: "";
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/curve.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  -webkit-animation: woosc-spinner 1s linear infinite;
  -moz-animation: woosc-spinner 1s linear infinite;
  -ms-animation: woosc-spinner 1s linear infinite;
  -o-animation: woosc-spinner 1s linear infinite;
  animation: woosc-spinner 1s linear infinite;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner.woosc-loading:before, .woosc-area .woosc-inner .woosc-table .woosc-table-inner.woosc-loading:after {
  opacity: 1;
  visibility: visible;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close {
  z-index: 6;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close .woosc-table-close-icon {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 52px;
  min-height: 52px;
  background-color: #eeeeee;
  background-image: url(/wp-content/plugins/woo-smart-compare/assets/images/remove-dark.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items {
  z-index: 5;
  height: 100%;
  position: relative;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items .woosc-no-result, .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items .woosc-unauthenticated {
  display: block;
  padding: 15px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table {
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 6;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead {
  z-index: 8;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr {
  border: none;
  margin: 0;
  padding: 0;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th {
  position: relative;
  border-collapse: collapse;
  z-index: 8 !important;
  text-transform: uppercase;
  padding: 15px 15px 15px 0;
  margin: 0;
  width: auto;
  min-width: 200px;
  max-width: 300px;
  vertical-align: middle;
  color: #43454b;
  font-weight: 700;
  text-align: left;
  background-color: #f7f7f7;
  border: none;
  border-image-width: 0;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th .woosc-remove, .woosc-page .woosc-remove {
  text-transform: none;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th:first-child {
  padding-left: 15px;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th a {
  text-decoration: none;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody {
  z-index: 7;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr {
  border: none;
  margin: 0;
  padding: 0;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td {
  position: relative;
  border-collapse: collapse;
  background-color: #ffffff;
  padding: 15px 15px 15px 0;
  vertical-align: top;
  text-align: left;
  width: auto;
  min-width: 200px;
  max-width: 300px;
  color: #43454b;
  font-weight: 400;
  border: none;
  z-index: 6;
  border-image-width: 0;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td:first-child {
  z-index: 7;
  padding-left: 15px;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td.td-placeholder {
  text-align: center;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td.td-placeholder:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 8px;
  background-color: #eeeeee;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-image td.td-placeholder {
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/placeholder.png");
  background-repeat: no-repeat;
  background-position: center;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-image td.td-placeholder:before {
  display: none;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-image a {
  text-decoration: none;
  outline: none;
  display: block;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: none;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-add_to_cart td p, .woosc_table tbody tr.tr-add_to_cart td p, .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-add_to_cart td .add_to_cart_inline, .woosc_table tbody tr.tr-add_to_cart td .add_to_cart_inline {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-rating td .star-rating {
  float: left;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:nth-child(2n) td {
  background-color: #fbfbfb;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-highlight td {
  background-color: #fff8d9;
  border-bottom: 1px solid #dfd7af;
}

.woosc-page .woosc_table tr.tr-highlight td {
  background-color: #fff8d9;
  border-bottom: 1px solid #dfd7af;
}

.woosc-page .woosc-table-settings {
  display: none !important;
}

.woosc-page .woosc-remove-all {
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-hide {
  display: none;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-similar {
  display: none;
}

.woosc-page .woosc_table tr.tr-hide, .woosc-page .woosc_table tr.tr-similar {
  display: none;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:hover td {
  background-color: #f8f8f8;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table.has-1 thead tr th, .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table.has-2 thead tr th {
  width: 25%;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table.has-1 tbody tr td, .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table.has-2 tbody tr td {
  width: 25%;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items .ps-scrollbar-x-rail, .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items .ps-scrollbar-y-rail {
  z-index: 999999;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-settings {
  background-image: url(/wp-content/plugins/woo-smart-compare/assets/images/checkbox-dark.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 21px;
}

.woosc-area .woosc-inner .woosc-bar {
  width: 100%;
  height: 78px;
  position: fixed;
  left: 0;
  bottom: -80px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #292a30;
  color: #cfd2d4;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-wrap: nowrap;
  z-index: 99999998;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn {
  height: 48px;
  line-height: 48px;
  padding: 0 20px 0 68px;
  position: relative;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: #00a0d2;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  order: 1;
  margin-left: 15px;
  cursor: pointer;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner {
  width: 16px;
  height: 12px;
  margin-top: 18px;
  margin-left: 16px;
  position: relative;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(1) {
  top: 0px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(2) {
  top: 5px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(3) {
  top: 10px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn.woosc-bar-btn-open .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn.woosc-bar-btn-open .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn.woosc-bar-btn-open .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn.woosc-bar-btn-icon {
  font-size: 0;
  padding: 0;
  width: 48px;
  overflow: hidden;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-filter {
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  padding: 0 15px 0 40px;
  height: 48px;
  line-height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/filter.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 15px center;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-filter select {
  font-size: 14px;
  font-weight: 400;
  height: 48px;
  line-height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 2px;
  background: none;
  color: #ffffff;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-search {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/add.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-settings-tools {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}

.woosc-settings-fields {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  overflow-y: auto;
}

.woosc-settings-fields li span {
  cursor: move;
  margin-left: 5px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.woosc-bar-print, .woosc-bar-share, .woosc-bar-search, .woosc-bar-remove {
  width: 48px;
  flex: 0 0 48px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-print {
  width: 48px;
  height: 48px;
  display: none;
  position: relative;
  margin: 0 10px 0 0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/printer.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-area.woosc-area-open-table.woosc-area-open-bar .woosc-inner .woosc-bar .woosc-bar-print {
  display: inline-block;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-share {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/share.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-share-content {
  width: 100%;
  height: 100%;
  min-height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.woosc-share-content:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
}

.woosc-share-content:after {
  width: 32px;
  height: 32px;
  display: block;
  margin-top: -16px;
  margin-left: -16px;
  content: "";
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/curve.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  -webkit-animation: woosc-spinner 1s linear infinite;
  -moz-animation: woosc-spinner 1s linear infinite;
  -ms-animation: woosc-spinner 1s linear infinite;
  -o-animation: woosc-spinner 1s linear infinite;
  animation: woosc-spinner 1s linear infinite;
  opacity: 0;
  visibility: hidden;
}

.woosc-share-content.woosc-loading {
  pointer-events: none;
}

.woosc-share-content.woosc-loading:before, .woosc-share-content.woosc-loading:after {
  opacity: 1;
  visibility: visible;
}

.woosc-share-content input[type=url] {
  width: 100%;
  text-align: center;
}

.woosc-share-text, .woosc-share-link, .woosc-share-links {
  width: 100%;
}

.woosc-share-link, .woosc-share-links {
  margin-top: 10px;
}

.woosc-share-links a {
  margin-left: 5px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-remove {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  margin: 0 0 0 10px;
  cursor: pointer;
  background-color: #e32718;
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/trash.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items {
  height: 48px;
  flex-grow: 1;
  white-space: nowrap;
  width: auto;
  text-align: right;
  order: 0;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item.woosc-bar-item-hidden {
  pointer-events: none;
  opacity: 0.2;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item.woosc-bar-item-hidden img {
  filter: grayscale(1);
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item img {
  width: 48px;
  height: 48px;
  cursor: move;
  margin: 0;
  z-index: 6;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item .woosc-bar-item-remove {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  right: 2px;
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/remove.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #292a30;
  z-index: 7;
  border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item .woosc-bar-item-remove:hover {
  background-color: #ff2222;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item.removing {
  opacity: 0.5;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item:hover .woosc-bar-item-remove {
  opacity: 1;
  visibility: visible;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item:first-child {
  margin-left: 0px;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item:last-child {
  margin-right: 0px;
}

.woosc-area .woosc-inner .woosc-bar.woosc-bar-open {
  bottom: 0;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.woosc-area .woosc-inner .woosc-bar .woosc-bar-notice {
  position: fixed;
  bottom: 88px;
  width: auto;
  left: 50%;
  padding: 0 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 2px;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-area.woosc-area-open-bar.woosc-bar-click-outside-yes:not(.woosc-area-open-table) .woosc-inner .woosc-bar:hover .woosc-bar-notice,
.woosc-area.woosc-area-open-bar.woosc-bar-click-outside-yes-empty[data-count="0"]:not(.woosc-area-open-table) .woosc-inner .woosc-bar:hover .woosc-bar-notice {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.woosc-area .woosc-inner .woosc-bar[data-count="0"] .woosc-bar-search {
  margin-right: 0;
}

.woosc-area .woosc-inner .woosc-bar[data-count="0"] .woosc-bar-filter, .woosc-area .woosc-inner .woosc-bar[data-count="0"] .woosc-bar-remove, .woosc-area .woosc-inner .woosc-bar[data-count="1"] .woosc-bar-remove {
  display: none;
}

.woosc-area.woosc-bar-top .woosc-inner .woosc-table {
  padding: 78px 15px 15px 15px;
}

.woosc-area.woosc-bar-top .woosc-inner .woosc-bar {
  top: -80px;
  bottom: auto;
}

.woosc-area.woosc-bar-top .woosc-inner .woosc-bar.woosc-bar-open {
  top: 0;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar .woosc-bar-btn {
  order: 0;
  margin-left: 0;
  margin-right: 15px;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar .woosc-bar-remove {
  order: 1;
  margin: 0 10px 0 0;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar .woosc-bar-items {
  order: 2;
  text-align: left;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar .woosc-bar-search {
  order: 3;
  margin: 0 0 0 10px;
}

.woosc-area.woosc-bar-left .woosc-inner .woosc-bar .woosc-bar-share {
  order: 4;
  margin: 0 0 0 10px;
}

.woosc-btn {
  cursor: pointer;
}

.woosc-btn.woosc-btn-adding:after {
  content: "...";
}

.woosc-btn.woosc-btn-has-icon.woosc-btn-adding:after {
  display: none !important;
}

.woosc-btn.woosc-btn-added:before {
  content: "✓";
  margin-right: 5px;
}

.woosc-btn.woosc-btn-has-icon.woosc-btn-added:before {
  display: none !important;
}

.woosc-btn-has-icon {
  display: inline-flex;
  align-items: center;
}

.woosc-btn-has-icon .woosc-btn-icon {
  margin: 0;
}

.woosc-btn-icon-text .woosc-btn-text {
  margin-left: 5px;
}

.woosc-btn-text-icon .woosc-btn-text {
  margin-right: 5px;
}

.woosc-btn-has-icon.woosc-btn-adding .woosc-btn-icon {
  -webkit-animation: woosc-spinner 1s linear infinite;
  -moz-animation: woosc-spinner 1s linear infinite;
  -ms-animation: woosc-spinner 1s linear infinite;
  -o-animation: woosc-spinner 1s linear infinite;
  animation: woosc-spinner 1s linear infinite;
}

.woosc-link a {
  color: inherit;
}
.woosc-link .woosc-link-inner {
  position: relative;
}
.woosc-link .woosc-link-inner:after {
  content: attr(data-count);
  display: block;
  background-color: #e94b35;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.woosc-menu-item .woosc-menu-item-inner {
  position: relative;
}
.woosc-menu-item .woosc-menu-item-inner:after {
  content: attr(data-count);
  display: block;
  background-color: #e94b35;
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  position: absolute;
  top: -10px;
  right: -10px;
}

body.woocommerce-cart .woosc-hide-checkout, body.woocommerce-checkout .woosc-hide-checkout, .woosc-hide-empty[data-count="0"] {
  display: none;
}

.woosc_list {
  max-width: 100%;
  overflow-x: auto;
}

.woosc_table table tr th, .woosc_table table tr td {
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

@media screen and (max-width: 767px) {
  .woosc-bar .woosc-bar-btn {
    font-size: 0 !important;
    padding: 0 !important;
    width: 48px !important;
    flex: 0 0 48px !important;
    overflow: hidden;
  }
  .woosc-area .woosc-inner .woosc-bar .woosc-bar-items .woosc-bar-item .woosc-bar-item-remove {
    opacity: 1;
    visibility: visible;
  }
}
.woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble {
  background-color: transparent !important;
  background: none !important;
  pointer-events: none;
}
.woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble .woosc-bar-btn {
  pointer-events: auto;
  width: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px;
}
.woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble > a, .woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble .woosc-bar-items, .woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble .woosc-bar-remove, .woosc-area .woosc-inner .woosc-bar.woosc-bar-bubble .woosc-bar-filter {
  display: none !important;
}

/* Notiny */
.notiny-container {
  z-index: 999999;
}

.notiny-theme-woosc {
  padding: 10px;
  background-color: #ffffff;
  color: #222222;
  margin: 5px 0;
  min-height: 32px;
  max-width: 100vw;
  display: flex;
  align-items: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.03);
}

.notiny-theme-woosc .notiny-img {
  margin: 0;
  padding: 0;
  width: 48px;
  flex: 0 0 48px;
  margin-right: 10px;
}

.notiny-theme-woosc .notiny-img img {
  width: 100%;
  height: auto;
  margin: 0;
}

.notiny-theme-woosc .notiny-text {
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
}

.notiny-container-fluid-top .notiny-theme-woosc, .notiny-container-fluid-bottom .notiny-theme-woosc {
  width: 90%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.notiny-container-fluid-top {
  top: 10px !important;
}

.notiny-container-fluid-bottom {
  bottom: 10px !important;
}

/* Sidebar */
.woosc-area-open-sidebar {
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}

.woosc-sidebar {
  font-size: 14px;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  max-width: 460px;
  box-sizing: border-box;
  text-align: start;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}

.woosc-sidebar.woosc-sidebar-position-left {
  right: unset;
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.woosc-area-open-sidebar .woosc-sidebar {
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.woosc-sidebar .woosc-sidebar-items {
  flex-grow: 1;
  position: relative;
  padding: 10px 0;
  overflow-y: auto;
}

.woosc-sidebar .woosc-sidebar-items:before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  margin-top: -16px;
  margin-left: -16px;
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/curve.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  -webkit-animation: woosc-spinner 1s linear infinite;
  -moz-animation: woosc-spinner 1s linear infinite;
  -ms-animation: woosc-spinner 1s linear infinite;
  -o-animation: woosc-spinner 1s linear infinite;
  animation: woosc-spinner 1s linear infinite;
  opacity: 0;
  visibility: hidden;
}

.woosc-sidebar .woosc-sidebar-items:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
}

.woosc-sidebar.woosc-loading .woosc-sidebar-items:before, .woosc-sidebar.woosc-loading .woosc-sidebar-items:after {
  opacity: 1;
  visibility: visible;
}

.woosc-sidebar .woosc-sidebar-items .woosc-sidebar-no-items {
  padding: 20px;
  text-align: center;
}

.woosc-sidebar .woosc-sidebar-top {
  flex: 0 0 auto;
  height: 48px;
  line-height: 48px;
  padding: 0 60px 0 20px;
  margin: 0;
  position: relative;
  color: #222222;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.1);
}

.woosc-sidebar .woosc-sidebar-close {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 0;
  background-image: url("/wp-content/plugins/woo-smart-compare/assets/images/close-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.woosc-sidebar-item {
  padding: 0 20px;
}

.woosc-sidebar-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed #eeeeee;
}

.woosc-sidebar-items .woosc-sidebar-item:first-child .woosc-sidebar-item-inner {
  border-top: none;
}

.woosc-sidebar-item-inner > div {
  margin-right: 10px;
}

.woosc-sidebar-item-inner > div:last-child {
  margin-right: 0;
}

.woosc-sidebar-item .woosc-sidebar-item-remove {
  width: 14px;
  flex: 0 0 14px;
  font-size: 0;
}

.woosc-sidebar-item .woosc-sidebar-item-remove span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url(/wp-content/plugins/woo-smart-compare/assets/images/remove-dark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  cursor: pointer;
}

.woosc-sidebar-item .woosc-sidebar-item-thumb {
  width: 80px;
  flex: 0 0 80px;
}

.woosc-sidebar-item .woosc-sidebar-item-thumb img {
  width: 100%;
  height: auto;
  margin: 0;
}

.woosc-sidebar-item .woosc-sidebar-item-info {
  flex-grow: 1;
}

.woosc-sidebar-item .woosc-sidebar-item-info .woosc-sidebar-item-name, .woosc-sidebar-item .woosc-sidebar-item-info .woosc-sidebar-item-name a {
  font-weight: 700;
  text-decoration: none;
}

.woosc-sidebar-item-action p {
  margin: 0 !important;
}

.woosc-sidebar-bot {
  padding: 20px;
  text-align: center;
}

.woosc-sidebar-btn {
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 10px;
  cursor: pointer;
  box-sizing: border-box;
  background-color: #00a0d2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.woosc-sidebar-continue {
  display: block;
  margin-top: 10px;
}

.woosc-sidebar-continue span {
  color: #444;
  text-transform: uppercase;
  border-bottom: 1px solid #444;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/* Quick Table */
.woosc-quick-table .woosc-quick-table-products {
  width: 100%;
  overflow-x: auto;
}

.woosc-quick-table .woosc_table thead .woosc-remove, .woosc-quick-table .woosc_table thead .woosc-table-settings {
  display: none;
}

.woosc-quick-table .woosc_table th, .woosc-quick-table .woosc_table td {
  min-width: 300px;
  background-color: #ffffff;
}

.woosc-quick-table .woosc_table th.th-label, .woosc-quick-table .woosc_table td.td-label {
  min-width: 160px;
}

.woosc-quick-table .woosc_table th, .woosc-quick-table .woosc_table tr:nth-child(2n) td {
  background-color: #fbfbfb;
}

.woosc-quick-table.label-column-no .woosc_table .th-label, .woosc-quick-table.label-column-no .woosc_table .td-label {
  display: none;
}

.woosc-area.woosc-need-login .woosc-bar .woosc-bar-print, .woosc-area.woosc-need-login .woosc-bar .woosc-bar-share, .woosc-area.woosc-need-login .woosc-bar .woosc-bar-search, .woosc-area.woosc-need-login .woosc-bar .woosc-bar-items {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

/* Print */
.woosc-print, .woosc-area .table-print, .woosc-area .tr-print, .woosc-area .td-print, .woosc_table .tr-print, .woosc_table .td-print {
  display: none;
}

@media print {
  .woosc-print {
    display: block;
  }
  div.woosc-print {
    display: block;
  }
  span.woosc-print {
    display: inline-block;
  }
  .woosc-area .table-print {
    display: table;
  }
  .woosc-area .tr-print {
    display: table-row;
  }
  .woosc-area .td-print {
    display: table-cell;
  }
  .woosc-area {
    font-size: 14px !important;
  }
  .woosc-area .woosc-bar, .woosc_table thead, .woosc_table .woosc-table-close, .woosc_table .woosc-remove {
    display: none !important;
  }
  .woosc-area .woosc-inner .woosc-table {
    padding: 0;
  }
  .woosc-area {
    position: absolute;
    height: auto;
  }
  .woosc-area .woosc-inner {
    height: auto;
  }
  .woosc-area .woosc-inner .woosc-table {
    position: absolute;
    height: auto;
  }
  .woosc-area .woosc-inner .woosc-table .woosc-table-inner {
    height: auto;
    max-height: unset;
  }
  .woosc-area .tr-name td:not(.td-label), .woosc-area .tr-name td:not(.td-label) a {
    font-weight: 700;
    text-transform: uppercase;
    pointer-events: none;
    text-decoration: none;
  }
  .woosc_table .tr-add_to_cart {
    display: none;
  }
}

/*# sourceMappingURL=frontend.css.map */
@font-face {
    font-family: 'woosw';
    src: url('/wp-content/plugins/woo-smart-wishlist/assets/fonts/woosw.eot?vv2087');
    src: url('/wp-content/plugins/woo-smart-wishlist/assets/fonts/woosw.eot?vv2087#iefix') format('embedded-opentype'),
    url('/wp-content/plugins/woo-smart-wishlist/assets/fonts/woosw.ttf?vv2087') format('truetype'),
    url('/wp-content/plugins/woo-smart-wishlist/assets/fonts/woosw.woff?vv2087') format('woff'),
    url('/wp-content/plugins/woo-smart-wishlist/assets/fonts/woosw.svg?vv2087#woosw') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="woosw-icon-"], [class*=" woosw-icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'woosw' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.woosw-icon-20:before {
    content: "\e900";
}

.woosw-icon-21:before {
    content: "\e901";
}

.woosw-icon-22:before {
    content: "\e902";
}

.woosw-icon-16:before {
    content: "\e903";
}

.woosw-icon-17:before {
    content: "\e904";
}

.woosw-icon-18:before {
    content: "\e905";
}

.woosw-icon-19:before {
    content: "\e906";
}

.woosw-icon-23:before {
    content: "\e907";
}

.woosw-icon-24:before {
    content: "\e908";
}

.woosw-icon-25:before {
    content: "\f004";
}

.woosw-icon-26:before {
    content: "\f005";
}

.woosw-icon-27:before {
    content: "\f006";
}

.woosw-icon-28:before {
    content: "\f08a";
}

.woosw-icon-29:before {
    content: "\f110";
}

.woosw-icon-11:before {
    content: "\e909";
}

.woosw-icon-10:before {
    content: "\e90a";
}

.woosw-icon-9:before {
    content: "\e90b";
}

.woosw-icon-8:before {
    content: "\e90c";
}

.woosw-icon-5:before {
    content: "\e90d";
}

.woosw-icon-6:before {
    content: "\e90e";
}

.woosw-icon-12:before {
    content: "\e90f";
}

.woosw-icon-42:before {
    content: "\e919";
}

.woosw-icon-2:before {
    content: "\e910";
}

.woosw-icon-43:before {
    content: "\e91a";
}

.woosw-icon-15:before {
    content: "\e911";
}

.woosw-icon-44:before {
    content: "\e91b";
}

.woosw-icon-7:before {
    content: "\e912";
}

.woosw-icon-4:before {
    content: "\e913";
}

.woosw-icon-13:before {
    content: "\e914";
}

.woosw-icon-14:before {
    content: "\e915";
}

.woosw-icon-46:before {
    content: "\e91c";
}

.woosw-icon-3:before {
    content: "\e916";
}

.woosw-icon-45:before {
    content: "\e91d";
}

.woosw-icon-1:before {
    content: "\e918";
}

.woosw-icon-41:before {
    content: "\e917";
}

.woosw-icon-30:before {
    content: "\e97a";
}

.woosw-icon-31:before {
    content: "\e97b";
}

.woosw-icon-32:before {
    content: "\e97c";
}

.woosw-icon-33:before {
    content: "\e97f";
}

.woosw-icon-35:before {
    content: "\e981";
}

.woosw-icon-36:before {
    content: "\e982";
}

.woosw-icon-37:before {
    content: "\e983";
}

.woosw-icon-38:before {
    content: "\e9d7";
}

.woosw-icon-34:before {
    content: "\e9d9";
}

.woosw-icon-39:before {
    content: "\e9da";
}

.woosw-icon-40:before {
    content: "\ea2e";
}
@keyframes wpc-spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wpc-spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes woosw-spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes woosw-spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.woosw-btn.woosw-added:before {
    content: "✓";
    margin-right: 5px;
}

.woosw-btn.woosw-btn-has-icon.woosw-added:before {
    display: none;
}

.woosw-btn.woosw-adding:after {
    content: "..." !important;
    display: inline-block !important;
}

.woosw-btn.woosw-btn-has-icon.woosw-adding:after {
    display: none !important;
}

.woosw-btn-has-icon {
    display: inline-flex;
    align-items: center;
}

.woosw-btn-has-icon .woosw-btn-icon {
    margin: 0;
}

.woosw-btn-icon-text .woosw-btn-text {
    margin-left: 5px;
}

.woosw-btn-text-icon .woosw-btn-text {
    margin-right: 5px;
}

.woosw-btn-has-icon.woosw-adding .woosw-btn-icon {
    -webkit-animation: woosw-spinner 1s linear infinite;
    -moz-animation: woosw-spinner 1s linear infinite;
    -ms-animation: woosw-spinner 1s linear infinite;
    -o-animation: woosw-spinner 1s linear infinite;
    animation: woosw-spinner 1s linear infinite;
}

.woosw-view-wishlist {
    font-weight: 700;
    cursor: pointer;
}

.woosw-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999989;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    font-size: 14px;
    visibility: hidden;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    box-sizing: border-box;
}

.woosw-popup * {
    box-sizing: border-box;
}

.woosw-popup table {
    margin: 0;
}

.woosw-popup .woosw-popup-content-mid:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
}

.woosw-popup .woosw-popup-content-mid:after {
    width: 32px;
    height: 32px;
    display: block;
    margin-top: -16px;
    margin-left: -16px;
    content: "";
    background-image: url("/wp-content/plugins/woo-smart-wishlist/assets/images/curve.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 8;
    -webkit-animation: woosw-spinner 1s linear infinite;
    -moz-animation: woosw-spinner 1s linear infinite;
    -ms-animation: woosw-spinner 1s linear infinite;
    -o-animation: woosw-spinner 1s linear infinite;
    animation: woosw-spinner 1s linear infinite;
    opacity: 0;
    visibility: hidden;
}

.woosw-popup.woosw-loading .woosw-popup-content {
    pointer-events: none;
}

.woosw-popup.woosw-loading .woosw-popup-content-mid:before, .woosw-popup.woosw-loading .woosw-popup-content-mid:after {
    opacity: 1;
    visibility: visible;
}

.woosw-popup .woosw-popup-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content {
    width: 100%;
    max-width: 460px;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    padding: 0;
    display: flex;
    flex-direction: column;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    background-color: #ffffff;
}

.woosw-popup.woosw-show {
    opacity: 1;
    visibility: visible;
}

.woosw-popup.woosw-show .woosw-popup-inner .woosw-popup-content {
    top: 50%;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content > div {
    align-self: stretch;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    flex: 0 0 auto;
    height: 48px;
    line-height: 48px;
    padding: 0 60px 0 20px;
    margin: 0;
    position: relative;
    color: #fff;
    font-weight: 700;
    background-color: #222;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-count-wrapper:before {
    content: "(";
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-count-wrapper:after {
    content: ")";
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-manage, .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-empty {
    color: #fff;
    margin-left: 5px;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
}

#woosw_manage .woosw-popup-content-mid {
    padding: 10px 0;
}

.woosw-new-wishlist {
    display: flex;
    align-items: center;
}

#woosw_wishlist_name {
    flex-grow: 1;
}

.woosw-new-wishlist input {
    border-radius: 4px !important;
    height: 40px !important;
    line-height: 38px !important;
    padding: 0 10px !important;
    margin: 0;
}

.woosw-new-wishlist input[type=button] {
    margin-left: 10px;
}

.woosw-disable {
    opacity: 0.5;
    pointer-events: none;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    text-transform: none;
    color: #999999;
    font-weight: 400;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close:after {
    display: inline-block;
    float: right;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    content: "\e918";
    font-size: 20px;
    font-family: "woosw";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.rtl .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    padding: 0 20px 0 60px;
}

body.rtl .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close {
    right: auto;
    left: 0;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-mid {
    display: block;
    position: relative;
    min-height: 80px;
    flex: 1 1 auto;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-mid .woosw-popup-content-mid-message {
    display: block;
    padding: 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.woosw-popup .woosw-items {
    margin: 0;
    padding: 10px 0;
    overflow-y: auto;
    position: relative;
}

.woosw-popup .woosw-items .woosw-item {
    padding: 0 20px;
}

.woosw-popup .woosw-items .woosw-item .woosw-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px dashed #eeeeee;
}

.woosw-popup .woosw-items .woosw-item:first-child .woosw-item-inner {
    border-top: none;
}

.woosw-popup .woosw-items .woosw-item .woosw-item-inner > div {
    margin-right: 10px;
}

.woosw-popup .woosw-items .woosw-item .woosw-item-inner > div:last-child {
    margin-right: 0;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--info {
    flex-grow: 1;
}

.woosw-items .woosw-item .woosw-item--remove, .woosw-items .woosw-item .woosw-item--add {
    width: 14px;
    flex: 0 0 14px;
    font-size: 0;
}

.woosw-items .woosw-item .woosw-item--remove span, .woosw-items .woosw-item .woosw-item--add span {
    display: inline-block;
    width: 14px;
    text-align: center;
    cursor: pointer;
}

.woosw-items .woosw-item .woosw-item--remove span:before, .woosw-items .woosw-item .woosw-item--add span:before {
    display: inline-block;
    content: "\e918";
    font-size: 16px;
    font-family: "woosw";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.woosw-items .woosw-item .woosw-item--remove span:hover:before, .woosw-items .woosw-item .woosw-item--add span:hover:before {
    color: #cc6055;
}

.woosw-items .woosw-item .woosw-item--remove span.woosw-item--removing:before, .woosw-items .woosw-item .woosw-item--remove span.woosw-item--adding:before, .woosw-items .woosw-item .woosw-item--add span.woosw-item--removing:before, .woosw-items .woosw-item .woosw-item--add span.woosw-item--adding:before {
    content: "\e913";
    animation: woosw-spinner 1s linear infinite;
    -webkit-animation: woosw-spinner 1s linear infinite;
}

.woosw-items .woosw-item .woosw-item--add span {
    transform: rotate(45deg);
}

.woosw-popup .woosw-items .woosw-item .woosw-item--image {
    width: 80px;
    flex: 0 0 80px;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--image img {
    width: 100%;
    height: auto;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--stock p {
    margin: 0;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--name, .woosw-popup .woosw-items .woosw-item .woosw-item--name a {
    font-weight: 700;
    text-decoration: none;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--atc p, .woosw-popup .woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline {
    border: none;
    padding: 0;
    margin: 0;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--price-increase {
    color: #ff6600;
}

.woosw-popup .woosw-items .woosw-item .woosw-item--price-decrease {
    color: #5fbd74;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    flex: 0 0 auto;
    padding: 20px;
    position: relative;
    color: #fff;
    font-size: 14px;
    background-color: #ffffff;
    text-transform: uppercase;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a, .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner span {
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 1px solid #222222;
    outline: none;
    cursor: pointer;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-notice {
    display: block;
    text-align: center;
    width: 100%;
    height: 48px;
    line-height: 48px;
    padding: 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    background-color: #5fbd74;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-notice.woosw-notice-show {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.woosw-items .woosw-item .woosw-item--note {
    padding-left: 10px;
    border-left: 2px solid #222;
    font-style: italic;
    font-size: 14px;
    cursor: pointer;
}

.woosw-items .woosw-item .woosw-item--note-add {
    width: 100%;
    position: relative;
}

.woosw-items .woosw-item .woosw-item--note-add input {
    height: 40px !important;
    line-height: 38px !important;
    padding: 0 10px !important;
    border-radius: 4px !important;
}

.woosw-items .woosw-item .woosw-item--note-add input[type=text] {
    width: 100%;
}

.woosw-items .woosw-item .woosw-item--note-add input[type=button] {
    position: absolute;
    top: 0;
    right: 0;
}

body.rtl .woosw-items .woosw-item .woosw-item--note {
    border-left: none;
    border-right: 2px solid #222;
    padding-left: 0;
    padding-right: 10px;
}

.woosw-list table.woosw-items {
    margin: 0;
    padding: 0;
}

.woosw-list table.woosw-items tr td {
    vertical-align: middle;
    padding: 10px;
}

.woosw-list table.woosw-items tr:nth-child(2n) td {
    background-color: rgba(0, 0, 0, 0.03);
}

.woosw-list table.woosw-items tr:hover td {
    background-color: rgba(0, 0, 0, 0.05);
}

.woosw-list table.woosw-items .woosw-item .woosw-item--image {
    width: 100px;
}

.woosw-list table.woosw-items .woosw-item .woosw-item--image img {
    width: 80px;
    height: auto;
    border-radius: 2px;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.woosw-list table.woosw-items .woosw-item .woosw-item--name a {
    font-weight: 700;
}

.woosw-list table.woosw-items .woosw-item .woosw-item--atc p, .woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline {
    border: none;
    padding: 0;
    margin: 0;
}

.woosw-list .woosw-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.woosw-list .woosw-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.woosw-list .woosw-copy {
    display: flex;
    align-items: center;
}

.woosw-list .woosw-copy .woosw-copy-url {
    margin-left: 10px;
    margin-right: 0;
}

body.rtl .woosw-list .woosw-copy .woosw-copy-url {
    margin-left: 0;
    margin-right: 10px;
}

.woosw-list .woosw-share .woosw-share-label, .woosw-list .woosw-share a {
    display: inline-block;
    margin-left: 0;
    margin-right: 10px;
    text-decoration: none !important;
    font-style: normal !important;
}

body.rtl .woosw-list .woosw-share .woosw-share-label, body.rtl .woosw-list .woosw-share a {
    margin-right: 0;
    margin-left: 10px;
}

.woosw-link a {
    color: inherit;
}

.woosw-link .woosw-link-inner {
    position: relative;
}

.woosw-link .woosw-link-inner:after {
    content: attr(data-count);
    display: block;
    background-color: #e94b35;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.woosw-menu-item .woosw-menu-item-inner {
    position: relative;
}

.woosw-menu-item .woosw-menu-item-inner:after {
    content: attr(data-count);
    display: block;
    background-color: #e94b35;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.woosw-icon {
    font-family: "woosw";
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.woosw-share-facebook .woosw-icon:before {
    content: "\e919";
}

.woosw-share-twitter .woosw-icon:before {
    content: "\e91d";
}

.woosw-share-pinterest .woosw-icon:before {
    content: "\e91c";
}

.woosw-share-instagram .woosw-icon:before {
    content: "\e91a";
}

.woosw-share-mail .woosw-icon:before {
    content: "\e91b";
}

@media only screen and (max-width: 860px) {
    .woosw-list .woosw-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

.woosw-suggested {
    padding: 0 20px;
}

.woosw-suggested-heading {
    text-align: center;
    overflow: hidden;
}

.woosw-suggested-heading span {
    position: relative;
}

.woosw-suggested-heading span:before {
    content: "";
    width: 1000px;
    height: 1px;
    background-color: #dddddd;
    display: block;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateX(-100%);
}

.woosw-suggested-heading span:after {
    content: "";
    width: 1000px;
    height: 1px;
    background-color: #dddddd;
    display: block;
    position: absolute;
    top: 50%;
    left: auto;
    right: -10px;
    transform: translateX(100%);
}

/* Notiny */
.notiny-container {
    z-index: 999999;
}

.notiny-theme-woosw {
    padding: 10px;
    background-color: #ffffff;
    color: #222222;
    margin: 5px 0;
    min-height: 32px;
    max-width: 100vw;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.03);
}

.notiny-theme-woosw .notiny-img {
    margin: 0;
    padding: 0;
    width: 48px;
    flex: 0 0 48px;
    margin-right: 10px;
}

.notiny-theme-woosw .notiny-img img {
    width: 100%;
    height: auto;
    margin: 0;
}

.notiny-theme-woosw .notiny-text {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.notiny-container-fluid-top .notiny-theme-woosw, .notiny-container-fluid-bottom .notiny-theme-woosw {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.notiny-container-fluid-top {
    top: 10px !important;
}

.notiny-container-fluid-bottom {
    bottom: 10px !important;
}

/* Position Right */
.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content {
    left: unset;
    top: 0;
    right: 0;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
}

.woosw-popup.woosw-popup-right.woosw-show .woosw-popup-inner .woosw-popup-content {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    background-color: rgba(0, 0, 0, 0.1);
    color: #222222;
    text-transform: uppercase;
}

.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    background-color: #ffffff;
    color: #222222;
    text-transform: uppercase;
}

.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top a, .woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-empty, .woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-manage, .woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close, .woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot a, .woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue {
    color: #222222;
}

/* Position Left */
.woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content {
    left: 0;
    top: 0;
    right: unset;
    height: 100%;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
}

.woosw-popup.woosw-popup-left.woosw-show .woosw-popup-inner .woosw-popup-content {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    background-color: rgba(0, 0, 0, 0.1);
}

.woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    background-color: rgba(0, 0, 0, 0.1);
    color: #222222;
    text-transform: uppercase;
}

.woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    background-color: #ffffff;
    color: #222222;
    text-transform: uppercase;
}

.woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top a, .woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-empty, .woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-manage, .woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close, .woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot a, .woosw-popup.woosw-popup-left .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue {
    color: #222222;
}

/*# sourceMappingURL=frontend.css.map */
@font-face {
    font-family: 'feather';
    src: url('/wp-content/plugins/wpc-ajax-search/assets/feather/fonts/feather.eot');
    src: url('/wp-content/plugins/wpc-ajax-search/assets/feather/fonts/feather.eot#iefix') format('embedded-opentype'),
    url('/wp-content/plugins/wpc-ajax-search/assets/feather/fonts/feather.ttf') format('truetype'),
    url('/wp-content/plugins/wpc-ajax-search/assets/feather/fonts/feather.woff') format('woff'),
    url('/wp-content/plugins/wpc-ajax-search/assets/feather/fonts/feather.svg#feather') format('svg');
    font-weight: normal;
    font-style: normal;
}@keyframes wpc-spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wpc-spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes wpcas-spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wpcas-spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.wpcas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 99999948;
}

.wpcas-overlay.wpcas-overlay-hide {
    display: none !important;
}

.wpcas-area {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 99999949;
    max-width: 100%;
}

.wpcas-area:not(.wpcas-area-show-inline) {
    max-width: 460px;
}

.wpcas-area a, .wpcas-area input, .wpcas-area p {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.wpcas-area .wpcas-product-data dl, .wpcas-area .wpcas-product-data p {
    margin: 0;
}

.wpcas-area > div {
    align-self: stretch;
}

.wpcas-area * {
    box-sizing: border-box;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-qty .quantity {
    width: auto !important;
    margin: 0 !important;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-qty .quantity input {
    margin: 0 !important;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-qty .quantity .plus, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-qty .quantity .minus {
    display: none !important;
}

.wpcas-area {
    opacity: 0 !important;
    visibility: hidden !important;
}

.wpcas-area.wpcas-area-show {
    opacity: 1 !important;
    visibility: visible !important;
}

.wpcas-area.wpcas-area-show-inline {
    position: absolute !important;
    -webkit-transform: none !important;
    transform: none !important;
    border: 1px solid #dddddd;
    -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
    box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
}

.wpcas-area.wpcas-area-show-inline .wpcas-area-top, .wpcas-area.wpcas-area-show-inline .wpcas-search-input-icon, .wpcas-area.wpcas-area-show-inline #wpcas_search_keyword {
    display: none !important;
}

.wpcas-area.wpcas-area-show-inline .wpcas-area-mid .wpcas-search-input-inner select {
    max-width: 100%;
    width: 100%;
}

.wpcas-area.wpcas-slide-no {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* Effect 01 */

.wpcas-area.wpcas-position-01 {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    text-align: start;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.wpcas-area.wpcas-position-01.wpcas-area-show, .wpcas-area.wpcas-position-01.wpcas-slide-no {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

/* Effect 02 */

.wpcas-area.wpcas-position-02 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    text-align: start;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.wpcas-area.wpcas-position-02.wpcas-area-show, .wpcas-area.wpcas-position-02.wpcas-slide-no {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

/* Effect 03 */

.wpcas-area.wpcas-position-03 {
    position: fixed;
    top: -100%;
    left: 50%;
    width: 100%;
    max-height: 80%;
    box-sizing: border-box;
    text-align: start;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-area.wpcas-position-03.wpcas-area-show, .wpcas-area.wpcas-position-03.wpcas-slide-no {
    top: 0;
}

/* Effect 04 */

.wpcas-area.wpcas-position-04 {
    position: fixed;
    bottom: -100%;
    left: 50%;
    width: 100%;
    max-height: 80%;
    box-sizing: border-box;
    text-align: start;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-area.wpcas-position-04.wpcas-area-show, .wpcas-area.wpcas-position-04.wpcas-slide-no {
    bottom: 0;
}

/* Effect 05 */

.wpcas-area.wpcas-position-05 {
    position: fixed;
    top: -50%;
    left: 50%;
    width: 100%;
    max-height: 80%;
    box-sizing: border-box;
    text-align: start;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.wpcas-area.wpcas-position-05.wpcas-area-show, .wpcas-area.wpcas-position-05.wpcas-slide-no {
    top: 50%;
}

.wpcas-area {
    background-color: #ffffff;
    color: #222222;
}

.wpcas-area .wpcas-area-top {
    height: 48px;
    line-height: 48px;
    padding: 0 60px 0 20px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.1);
}

.wpcas-area .wpcas-area-top span {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wpcas-area .wpcas-area-top .wpcas-close {
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    color: #222222;
    font-size: 0;
    cursor: pointer;
}

.wpcas-area .wpcas-area-top .wpcas-close:before {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    content: '\e9ea';
    font-size: 20px;
    font-family: 'feather';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wpcas-area .wpcas-area-mid {
    flex-grow: 1;
    position: relative;
    margin: 20px 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.wpcas-area .wpcas-area-mid > div {
    padding-left: 20px;
    padding-right: 20px;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input-inner {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 2px;
    overflow: hidden;
    height: 48px;
    line-height: 48px;
    padding: 0;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input-inner .wpcas-search-input-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    flex: 0 0 48px;
    text-align: center;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input-inner .wpcas-search-input-icon:before {
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    content: '\e9ae';
    font-size: 16px;
    font-family: 'feather';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input-inner .wpcas-search-input-icon.wpcas-loading:before {
    content: '\e9a7';
    -webkit-animation: wpcas-spinner 1s linear infinite;
    -moz-animation: wpcas-spinner 1s linear infinite;
    -ms-animation: wpcas-spinner 1s linear infinite;
    -o-animation: wpcas-spinner 1s linear infinite;
    animation: wpcas-spinner 1s linear infinite;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input input {
    background-color: transparent;
    background: none;
    outline: none;
    border: none;
    box-shadow: none;
    height: 48px;
    line-height: 48px;
    padding: 0;
    flex-grow: 1;
}

.wpcas-area .wpcas-area-mid .wpcas-search-input-inner select {
    width: 100%;
    max-width: 150px;
    padding: 0 35px 0 15px;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
}

.wpcas-area .wpcas-area-mid .wpcas-popular-keywords {
    margin-top: 10px;
    font-size: 13px;
}

.wpcas-area .wpcas-area-mid .wpcas-popular-keywords a {
    outline: none;
    text-decoration: none;
}

.wpcas-area .wpcas-area-mid .wpcas-popular-keywords a:hover {
    text-decoration: underline;
}

.wpcas-area .wpcas-area-mid .wpcas-search-result {
    margin-top: 10px;
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.wpcas-area.wpcas-area-show-inline .wpcas-area-mid .wpcas-search-result.wpcas-loading {
    min-height: 20px;
}

.wpcas-area.wpcas-area-show-inline .wpcas-area-mid .wpcas-search-result.wpcas-loading:before {
    content: '\e9a7';
    font-family: 'feather';
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    line-height: 16px;
    color: #222222;
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    position: absolute;
    vertical-align: baseline;
    top: 50%;
    left: 50%;
    z-index: 97;
    -webkit-animation: wpcas-spinner 1s linear infinite;
    -moz-animation: wpcas-spinner 1s linear infinite;
    -ms-animation: wpcas-spinner 1s linear infinite;
    -o-animation: wpcas-spinner 1s linear infinite;
    animation: wpcas-spinner 1s linear infinite;
}

.wpcas-area.wpcas-area-show-inline .wpcas-area-mid .wpcas-search-result.wpcas-loading:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
}

.wpcas-area .wpcas-area-mid .wpcas-more-results .wpcas-more-results-inner {
    padding: 10px 0;
}

.wpcas-area .wpcas-area-mid .wpcas-product {
    display: block;
    border-bottom: 1px dashed #eee;
    background-color: #ffffff;
}

.wpcas-area .wpcas-area-mid .wpcas-product:hover {
    background-color: rgba(0, 0, 0, .025);
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 -5px;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner > div {
    margin: 0 5px;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-thumb {
    width: 80px;
    flex: 0 0 80px;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-thumb img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info {
    flex-grow: 1;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-name {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-name a {
    color: #222222;
    text-decoration: none;
    outline: none;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-price {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #999999;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-price del {
    color: #999;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-price ins {
    background: none;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-info .wpcas-product-price span {
    font-size: 12px !important;
    font-weight: 400 !important;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions {
    display: flex;
    align-items: center;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    font-size: 0;
    background-color: transparent;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    text-decoration: none;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn:before {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: 'feather';
    font-size: 16px;
    color: #999999;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn:hover:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn:hover:before {
    color: #222222;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn:before {
    content: '\e9a8';
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn:before {
    content: '\e966';
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn.woosc-adding:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn.woosw-adding:before {
    content: '\e9a7';
    -webkit-animation: wpcas-spinner 1s linear infinite;
    -moz-animation: wpcas-spinner 1s linear infinite;
    -ms-animation: wpcas-spinner 1s linear infinite;
    -o-animation: wpcas-spinner 1s linear infinite;
    animation: wpcas-spinner 1s linear infinite;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosc-btn.woosc-added:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .woosw-btn.woosw-added:before {
    color: #222222;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline {
    height: 40px;
    line-height: 40px;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 0 !important;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline del, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline ins, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .amount {
    display: none;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    background: none;
    outline: none;
    box-shadow: none;
    font-size: 0;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button:before {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    content: '\e9b4';
    font-family: 'feather';
    font-size: 16px;
    color: #999999;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.loading:before {
    content: '\e9a7';
    -webkit-animation: wpcas-spinner 1s linear infinite;
    -moz-animation: wpcas-spinner 1s linear infinite;
    -ms-animation: wpcas-spinner 1s linear infinite;
    -o-animation: wpcas-spinner 1s linear infinite;
    animation: wpcas-spinner 1s linear infinite;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.loading:after {
    display: none !important;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button:hover:before {
    color: #222222;
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.product_type_variable:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.product_type_grouped:before, .wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.product_type_composite:before {
    content: '\e9bb';
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.product_type_external:before {
    content: '\e952';
}

.wpcas-area .wpcas-area-mid .wpcas-product-inner .wpcas-product-actions .atc-btn .add_to_cart_inline .button.added:before {
    color: #222222;
}

.wpcas-area .wpcas-area-mid .wpcas-not-found, .wpcas-area .wpcas-area-mid .wpcas-error {
    color: #999999;
}

.wpcas-menu-item a:before {
    content: '\e9ae';
    font-family: 'feather';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block !important;
    margin-right: 5px;
}

body.wpcas-body-show:not(.wpcas-body-show-inline) .wpcas-overlay {
    opacity: 1;
    visibility: visible;
}

/* RTL */
body.rtl .wpcas-area .wpcas-area-top {
    padding: 0 20px 0 60px;
}

body.rtl .wpcas-area .wpcas-area-top .wpcas-close {
    left: 20px;
    right: auto;
}

body.rtl .wpcas-menu-item a:before {
    margin-left: 5px;
    margin-right: 0;
}

/* Shortcodes */

.wpcas-area .wpcas-shortcode-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpcas-area .wpcas-shortcode-categories ul ul {
    padding-left: 10px;
}

.wpcas-area .wpcas-shortcode-categories ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #dddddd;
}

.wpcas-area .wpcas-shortcode-categories ul li:last-child {
    border-bottom: none;
}

/* Posts */

.wpcas-post {
    display: block;
    border-bottom: 1px dashed #eee;
    background-color: #ffffff;
}

.wpcas-post:hover {
    background-color: rgba(0, 0, 0, .025);
}

.wpcas-post-inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 -5px;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-post-inner > div {
    margin: 0 5px;
}

.wpcas-post-inner .wpcas-post-thumb {
    width: 80px;
    flex: 0 0 80px;
}

.wpcas-post-inner .wpcas-post-thumb img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.wpcas-post-inner .wpcas-post-info {
    flex-grow: 1;
}

.wpcas-post-inner .wpcas-post-info .wpcas-post-name {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.wpcas-post-inner .wpcas-post-info .wpcas-post-name a {
    color: #222222;
    text-decoration: none;
    outline: none;
}

.wpcas-post-inner .wpcas-post-info .wpcas-post-date {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #999999;
}.tax-product_brand .brand-description{overflow:hidden;zoom:1}.tax-product_brand .brand-description img.brand-thumbnail{width:25%;float:right}.tax-product_brand .brand-description .text{width:72%;float:left}.widget_brand_description img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0 0 1em}ul.brand-thumbnails{margin-left:0;margin-bottom:0;clear:both;list-style:none}ul.brand-thumbnails:before{clear:both;content:"";display:table}ul.brand-thumbnails:after{clear:both;content:"";display:table}ul.brand-thumbnails li{float:left;margin:0 3.8% 1em 0;padding:0;position:relative;width:22.05%}ul.brand-thumbnails.fluid-columns li{width:auto}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:both}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:0}ul.brand-thumbnails.columns-1 li{width:100%;margin-right:0}ul.brand-thumbnails.columns-2 li{width:48%}ul.brand-thumbnails.columns-3 li{width:30.75%}ul.brand-thumbnails.columns-5 li{width:16.95%}ul.brand-thumbnails.columns-6 li{width:13.5%}.brand-thumbnails li img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0}@media screen and (max-width:768px){ul.brand-thumbnails:not(.fluid-columns) li{width:48%!important}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:none}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:3.8%}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd){clear:both}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even){margin-right:0}}.brand-thumbnails-description li{text-align:center}.brand-thumbnails-description li .term-thumbnail img{display:inline}.brand-thumbnails-description li .term-description{margin-top:1em;text-align:left}#brands_a_z h3:target{text-decoration:underline}ul.brands_index{list-style:none outside;overflow:hidden;zoom:1}ul.brands_index li{float:left;margin:0 2px 2px 0}ul.brands_index li a,ul.brands_index li span{border:1px solid #ccc;padding:6px;line-height:1em;float:left;text-decoration:none}ul.brands_index li span{border-color:#eee;color:#ddd}ul.brands_index li a:hover{border-width:2px;padding:5px;text-decoration:none}ul.brands_index li a.active{border-width:2px;padding:5px}div#brands_a_z a.top{border:1px solid #ccc;padding:4px;line-height:1em;float:right;text-decoration:none;font-size:.8em}/*
Theme Name: Vapier Child
Theme URI: http://wpbingosite.com/wordpress/vapier/
Template: vapier
Author: Wpbingo
Author URI: http://wpbingosite.com/
Description: Vapier is a modern, clean and professional WooCommerce WordPress theme. It is built to well suit for any online stores: electronics store, fashion store, jewelry store...
Tags: blog,two-columns,left-sidebar,accessibility-ready,custom-background,custom-colors,custom-header,custom-logo,custom-menu,editor-style,featured-images,microformats,post-formats,rtl-language-support,sticky-post,threaded-comments,translation-ready
Version: 1.1.5.1730728570
Updated: 2024-11-04 13:56:10

*/

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.rtl{
  direction:rtl; }
  @media (min-width: 1200px){
    .rtl .col-xl-2-4{
      width:20%; } }
  .rtl .widget.widget_categories ul li:hover a:before,.rtl .widget.widget_categories ul li:hover span:before{
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg); }
  .rtl .bwp-top-bar .display li:last-child{
    margin-right:15px; }
  .rtl .bwp-top-bar .display li:first-child{
    margin-right:0; }
  .rtl .btn-style-1 a:after,.rtl .bwp-widget-banner.layout-1 .button:after,.rtl .bwp-widget-banner.layout-2 .button:after,.rtl .bwp-widget-banner.layout-4 .button:after,.rtl .bwp-widget-banner.layout-9 .button:after,.rtl .bwp-widget-banner.layout-11 .button:after,.rtl .bwp-widget-banner.layout-12 .button:after,.rtl .bwp_product_list .slick-arrow{
    -webkit-transform:rotateY(180deg);
    transform:rotateY(180deg); }
  .rtl .bestseller-product .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-deal3 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-link1 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-link2 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-link3 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-link4 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.list-link6 .slick-arrow.fa-angle-left,.rtl .bwp_product_list.slider .slick-arrow.fa-angle-left,.rtl .featured-product .slick-arrow.fa-angle-left{
    right:auto;
    left:26px; }
  .rtl .bestseller-product .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-deal3 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-link1 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-link2 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-link3 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-link4 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.list-link6 .slick-arrow.fa-angle-right,.rtl .bwp_product_list.slider .slick-arrow.fa-angle-right,.rtl .featured-product .slick-arrow.fa-angle-right{
    right:auto;
    left:0; }
  .rtl .mini-cart .cart-popup{
    right:auto !important;
    left:-12px !important; }
  .rtl .bwp-top-bar .display li:first-child{
    margin-right:10px; }
  @media (max-width: 767px){
    .rtl .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu{
      left:0 !important;
      right:auto; } }
  @media (min-width: 1200px){
    .rtl .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper.fullwidthbanner-container{
      padding-right:270px !important;
      padding-left:0 !important; } }
  .rtl .wpb_single_image.vc_align_left{
    text-align:right; }
  .rtl .wpb_single_image.vc_align_right{
    text-align:left; }
  .rtl .bwp-filter-homepage .bwp-filter-heading ul{
    left:0;
    right:auto; }
    @media (max-width: 991px){
      .rtl .bwp-filter-homepage .bwp-filter-heading ul{
        right:-80px;
        left:auto; } }
  .rtl .slick-arrow{
    text-indent:-1px; }
    .rtl .slick-arrow.fa-angle-left{
      text-indent:1px; }
  .rtl .bwp-header .block-top-link>.widget .widget-custom-menu>div{
    left:auto;
    right:0; }
  .rtl #bwp-topbar .topbar-right .block-top-link>.widget .widget-custom-menu>div{
    right:auto;
    left:0; }
  .rtl .entry-meta>:not(.sticky-post):first-child{
    padding-left:14px;
    padding-right:0; }
  .rtl .entry-meta>:not(.sticky-post):last-child{
    padding-left:0;
    padding-right:14px; }
  .rtl .header-wpbingo-menu-left{
    text-align:right; }
    .rtl .header-wpbingo-menu-left .wpbingo-menu-left{
      display:inline-block; }
  .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle{
    margin-left:0;
    padding-left:0;
    margin-right:23px;
    padding-right:23px; }
    .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:before{
      right:-3px;
      left:auto; }
    @media (max-width: 991px){
      .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle{
        margin-right:0;
        padding-right:0;
        margin-left:23px;
        padding-left:23px; }
        .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:before{
          right:-3px;
          left:auto !important; } }
  @media (min-width: 768px){
    .rtl .bwp-filter-homepage.loadmore.style .bwp-filter-heading ul.filter-orderby li:last-child{
      padding-left:0;
      padding-right:22px; }
    .rtl .bwp-filter-homepage.loadmore.style .bwp-filter-heading ul.filter-orderby li:first-child{
      padding-right:0;
      padding-left:22px; } }
  .rtl .border-policy-2{
    margin:0 !important; }
    @media (min-width: 768px){
      .rtl .border-policy-2{
        display:flex; } }
    .rtl .border-policy-2>.wpb_column{
      border:1px solid hsla(0,0%,64%,.3);
      padding-top:100px;
      padding-bottom:93px; }
      @media (min-width: 768px){
        .rtl .border-policy-2>.wpb_column:not(:last-child){
          border-right:1px solid hsla(0,0%,64%,.3);
          border-left:0; } }
  .rtl .wpbingo-newsletter .content-newsletter input[type=email]::placeholder{
    text-align:right; }
  .rtl .bwp-top-bar .woocommerce-result-count{
    display:inline-block !important; }
    @media (max-width: 1199px){
      .rtl .bwp-top-bar .woocommerce-result-count{
        display:none !important; } }
  .rtl .about-top .social-link li{
    margin-right:0 !important; }
  .rtl .bwp-testimonial .slider-thumb .testimonial-image.slick-center img{
    -webkit-transform:scale(1) !important;
    transform:scale(1) !important;
    border:0 !important;
    box-shadow:unset !important; }
  .rtl .bwp-testimonial .slider-thumb .testimonial-image.slick-center .testimonial-customer-name{
    display:none !important; }
  .rtl .header-vertical-menu{
    float:right !important; }
  .rtl .bwp-filter-homepage.slider .bwp-filter-heading ul.filter-category li:first-child{
    padding-left:30px !important; }
  .rtl .bwp-filter-homepage.slider .bwp-filter-heading ul.filter-category li:last-child{
    padding-right:30px !important; }
  @media (max-width: 991px){
    .rtl .wpbingo-verticalmenu-mobile .navbar-header{
      float:right; } }
  .rtl .bwp-recent-post.slider2 .slick-arrow.fa-angle-left{
    left:15px !important;
    right:auto !important; }
  .rtl .bwp-recent-post.slider2 .slick-arrow{
    left:55px !important; }
  .rtl .bwp-widget-video .title-video h2:before{
    text-indent:-5px; }
  .rtl .wpbingo-newsletter-1 .content-newsletter .clearfix{
    border-top-left-radius:30px;
    border-bottom-left-radius:30px;
    border-top-right-radius:0;
    border-bottom-right-radius:0; }
  .rtl .bwp_list_default.slider .slick-arrow.fa-angle-left{
    left:0 !important;
    right:auto !important; }
  .rtl .bwp_list_default.slider .slick-arrow.fa-angle-right{
    left:45px !important;
    right:auto !important; }
  .rtl .bwp-testimonial.default .slick-arrow.fa-angle-left{
    left:15px !important;
    right:auto !important; }
  .rtl .bwp-testimonial.default .slick-arrow.fa-angle-right{
    left:55px !important;
    right:auto !important; }
  .rtl .bwp-brand.default .slick-arrow.fa-angle-left{
    left:15px !important;
    right:auto !important; }
  .rtl .bwp-brand.default .slick-arrow.fa-angle-right{
    left:55px !important;
    right:auto !important; }
  .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-left{
    left:15px !important;
    right:auto !important; }
  .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-right{
    left:55px !important;
    right:auto !important; }
  .rtl #bwp-footer.footer-1 .footer-main .footer-right{
    padding-left:0 !important; }
  .rtl .bwp-header.header-v1 .bwp-navigation ul>li.level-0:first-child{
    padding-left:20px !important; }
  .rtl .onsale:before{
    border-right-color:transparent;
    border-left-color:#ff4646; }
  .rtl .bwp-widget-video.default2 .bwp-video{
    text-indent:-3px; }

.rtl .bwp-countdown.slider5 .content-product-list .products-list.grid .item-product .item-product-content .item-countdown .product-countdown:before{
  content:"\7b"; }

.rtl .bwp-header .header-right .container>div:last-child,.rtl .bwp-header .header-right>div:last-child{
  padding-left:10px !important;
  padding-right:0 !important; }

.rtl .woo-slider-default .content-product-list .slick-arrow{
  left:0 !important;
  right:auto !important; }
  .rtl .woo-slider-default .content-product-list .slick-arrow.fa-angle-right{
    left:30px !important;
    right:auto !important; }

.rtl .categories-vertical-menu .bwp-vertical-navigation>div ul.menu li.level-0.menu-item-has-children>a:after{
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg); }

*,:after,:before{
  box-sizing:border-box; }

html{
  font-family:sans-serif;
  line-height:1.15;
  -webkit-text-size-adjust:100%;
  -ms-text-size-adjust:100%;
  -ms-overflow-style:scrollbar;
  -webkit-tap-highlight-color:transparent; }

@-ms-viewport{
  width:device-width; }

article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{
  display:block; }

body{
  margin:0;
  font-family:Montserrat,sans-serif;
  font-size:1rem;
  font-weight:400;
  line-height:1.7;
  color:#868686;
  text-align:left;
  background-color:transparent; }

[tabindex="-1"]:focus{
  outline:0 !important; }

hr{
  box-sizing:content-box;
  height:0;
  overflow:visible; }

h1,h2,h3,h4,h5,h6{
  margin-top:1.5em;
  margin-bottom:.5rem; }

p{
  margin-top:0;
  margin-bottom:1rem; }

abbr[data-original-title],abbr[title]{
  text-decoration:underline;
  text-decoration:underline dotted;
  cursor:help;
  border-bottom:0; }

address{
  font-style:normal;
  line-height:inherit; }

address,dl,ol,ul{
  margin-bottom:1rem; }

dl,ol,ul{
  margin-top:0; }

ol ol,ol ul,ul ol,ul ul{
  margin-bottom:0; }

dt{
  font-weight:700; }

dd{
  margin-bottom:.5rem;
  margin-left:0; }

blockquote{
  margin:0 0 1rem; }

dfn{
  font-style:italic; }

b,strong{
  font-weight:bolder; }

small{
  font-size:80%; }

sub,sup{
  position:relative;
  font-size:75%;
  line-height:0;
  vertical-align:baseline; }

sub{
  bottom:-.25em; }

sup{
  top:-.5em; }

a{
  color:#000;
  text-decoration:none;
  background-color:transparent;
  -webkit-text-decoration-skip:objects; }
  a:hover{
    color:#bd0028;
    text-decoration:underline; }
  a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{
    color:inherit;
    text-decoration:none; }
  a:not([href]):not([tabindex]):focus{
    outline:0; }

code,kbd,pre,samp{
  font-family:monospace,monospace;
  font-size:1em; }

pre{
  margin-top:0;
  margin-bottom:1rem;
  overflow:auto;
  -ms-overflow-style:scrollbar; }

figure{
  margin:0 0 1rem; }

img{
  vertical-align:middle;
  border-style:none; }

svg:not(:root){
  overflow:hidden; }

table{
  border-collapse:collapse; }

caption{
  padding-top:16px 30px;
  padding-bottom:16px 30px;
  color:#868686;
  text-align:left;
  caption-side:bottom; }

th{
  text-align:inherit; }

label{
  display:inline-block;
  margin-bottom:.5rem; }

button{
  border-radius:0; }

button:focus{
  outline:1px dotted;
  outline:5px auto -webkit-focus-ring-color; }

button,input,optgroup,select,textarea{
  margin:0;
  font-family:inherit;
  font-size:inherit;
  line-height:inherit; }

button,input{
  overflow:visible; }

button,select{
  text-transform:none; }

[type=reset],[type=submit],button,html [type=button]{
  -webkit-appearance:button; }

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{
  padding:0;
  border-style:none; }

input[type=checkbox],input[type=radio]{
  box-sizing:border-box;
  padding:0; }

input[type=date],input[type=datetime-local],input[type=month],input[type=time]{
  -webkit-appearance:listbox; }

textarea{
  overflow:auto;
  resize:vertical; }

fieldset{
  min-width:0;
  padding:0;
  margin:0;
  border:0; }

legend{
  display:block;
  width:100%;
  max-width:100%;
  padding:0;
  margin-bottom:.5rem;
  font-size:1.5rem;
  line-height:inherit;
  color:inherit;
  white-space:normal; }

progress{
  vertical-align:baseline; }

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
  height:auto; }

[type=search]{
  outline-offset:-2px;
  -webkit-appearance:none; }

[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{
  -webkit-appearance:none; }

::-webkit-file-upload-button{
  font:inherit;
  -webkit-appearance:button; }

output{
  display:inline-block; }

summary{
  display:list-item;
  cursor:pointer; }

template{
  display:none; }

[hidden]{
  display:none !important; }

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{
  margin-bottom:.5rem;
  font-family:Montserrat,sans-serif;
  font-weight:600;
  line-height:1.2;
  color:#000; }

.h1,h1{
  font-size:2.5rem; }

.h2,h2{
  font-size:2rem; }

.h3,h3{
  font-size:1.75rem; }

.h4,h4{
  font-size:1.5rem; }

.h5,h5{
  font-size:1.25rem; }

.h6,h6{
  font-size:1rem; }

.lead{
  font-size:1.25rem;
  font-weight:300; }

.display-1{
  font-size:6rem; }

.display-1,.display-2{
  font-weight:300;
  line-height:1.2; }

.display-2{
  font-size:5.5rem; }

.display-3{
  font-size:4.5rem; }

.display-3,.display-4{
  font-weight:300;
  line-height:1.2; }

.display-4{
  font-size:3.5rem; }

hr{
  margin-top:1rem;
  margin-bottom:1rem;
  border:0;
  border-top:1px solid rgba(0,0,0,.1); }

.small,small{
  font-size:80%;
  font-weight:400; }

.mark,mark{
  padding:.2em;
  background-color:#fcf8e3; }

.list-inline,.list-unstyled{
  padding-left:0;
  list-style:none; }

.list-inline-item{
  display:inline-block; }
  .list-inline-item:not(:last-child){
    margin-right:.5rem; }

.initialism{
  font-size:90%;
  text-transform:uppercase; }

.blockquote{
  margin-bottom:1rem;
  font-size:1.25rem; }

.blockquote-footer{
  display:block;
  font-size:80%;
  color:#d7d7d7; }
  .blockquote-footer:before{
    content:"\2014 \00A0"; }

.container{
  width:100%;
  padding-right:15px;
  padding-left:15px;
  margin-right:auto;
  margin-left:auto; }
  @media (min-width: 576px){
    .container{
      max-width:540px; } }
  @media (min-width: 768px){
    .container{
      max-width:720px; } }
  @media (min-width: 992px){
    .container{
      max-width:960px; } }
  @media (min-width: 1200px){
    .container{
      max-width:1140px; } }

.container-fluid{
  width:100%;
  padding-right:15px;
  padding-left:15px;
  margin-right:auto;
  margin-left:auto; }

.row{
  display:flex;
  flex-wrap:wrap;
  margin-right:-15px;
  margin-left:-15px; }

.no-gutters{
  margin-right:0;
  margin-left:0; }
  .no-gutters>.col,.no-gutters>[class*=col-]{
    padding-right:0;
    padding-left:0; }

.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{
  position:relative;
  width:100%;
  min-height:1px;
  padding-right:15px;
  padding-left:15px; }

.col{
  flex-basis:0;
  flex-grow:1;
  max-width:100%; }

.col-auto{
  flex:0 0 auto;
  width:auto;
  max-width:none; }

.col-1{
  flex:0 0 8.33333%;
  max-width:8.33333%; }

.col-2{
  flex:0 0 16.66667%;
  max-width:16.66667%; }

.col-3{
  flex:0 0 25%;
  max-width:25%; }

.col-4{
  flex:0 0 33.33333%;
  max-width:33.33333%; }

.col-5{
  flex:0 0 41.66667%;
  max-width:41.66667%; }

.col-6{
  flex:0 0 50%;
  max-width:50%; }

.col-7{
  flex:0 0 58.33333%;
  max-width:58.33333%; }

.col-8{
  flex:0 0 66.66667%;
  max-width:66.66667%; }

.col-9{
  flex:0 0 75%;
  max-width:75%; }

.col-10{
  flex:0 0 83.33333%;
  max-width:83.33333%; }

.col-11{
  flex:0 0 91.66667%;
  max-width:91.66667%; }

.col-12{
  flex:0 0 100%;
  max-width:100%; }

.order-first{
  order:-1; }

.order-last{
  order:13; }

.order-0{
  order:0; }

.order-1{
  order:1; }

.order-2{
  order:2; }

.order-3{
  order:3; }

.order-4{
  order:4; }

.order-5{
  order:5; }

.order-6{
  order:6; }

.order-7{
  order:7; }

.order-8{
  order:8; }

.order-9{
  order:9; }

.order-10{
  order:10; }

.order-11{
  order:11; }

.order-12{
  order:12; }

.offset-1{
  margin-left:8.33333%; }

.offset-2{
  margin-left:16.66667%; }

.offset-3{
  margin-left:25%; }

.offset-4{
  margin-left:33.33333%; }

.offset-5{
  margin-left:41.66667%; }

.offset-6{
  margin-left:50%; }

.offset-7{
  margin-left:58.33333%; }

.offset-8{
  margin-left:66.66667%; }

.offset-9{
  margin-left:75%; }

.offset-10{
  margin-left:83.33333%; }

.offset-11{
  margin-left:91.66667%; }

@media (min-width: 576px){
  .col-sm{
    flex-basis:0;
    flex-grow:1;
    max-width:100%; }
  .col-sm-auto{
    flex:0 0 auto;
    width:auto;
    max-width:none; }
  .col-sm-1{
    flex:0 0 8.33333%;
    max-width:8.33333%; }
  .col-sm-2{
    flex:0 0 16.66667%;
    max-width:16.66667%; }
  .col-sm-3{
    flex:0 0 25%;
    max-width:25%; }
  .col-sm-4{
    flex:0 0 33.33333%;
    max-width:33.33333%; }
  .col-sm-5{
    flex:0 0 41.66667%;
    max-width:41.66667%; }
  .col-sm-6{
    flex:0 0 50%;
    max-width:50%; }
  .col-sm-7{
    flex:0 0 58.33333%;
    max-width:58.33333%; }
  .col-sm-8{
    flex:0 0 66.66667%;
    max-width:66.66667%; }
  .col-sm-9{
    flex:0 0 75%;
    max-width:75%; }
  .col-sm-10{
    flex:0 0 83.33333%;
    max-width:83.33333%; }
  .col-sm-11{
    flex:0 0 91.66667%;
    max-width:91.66667%; }
  .col-sm-12{
    flex:0 0 100%;
    max-width:100%; }
  .order-sm-first{
    order:-1; }
  .order-sm-last{
    order:13; }
  .order-sm-0{
    order:0; }
  .order-sm-1{
    order:1; }
  .order-sm-2{
    order:2; }
  .order-sm-3{
    order:3; }
  .order-sm-4{
    order:4; }
  .order-sm-5{
    order:5; }
  .order-sm-6{
    order:6; }
  .order-sm-7{
    order:7; }
  .order-sm-8{
    order:8; }
  .order-sm-9{
    order:9; }
  .order-sm-10{
    order:10; }
  .order-sm-11{
    order:11; }
  .order-sm-12{
    order:12; }
  .offset-sm-0{
    margin-left:0; }
  .offset-sm-1{
    margin-left:8.33333%; }
  .offset-sm-2{
    margin-left:16.66667%; }
  .offset-sm-3{
    margin-left:25%; }
  .offset-sm-4{
    margin-left:33.33333%; }
  .offset-sm-5{
    margin-left:41.66667%; }
  .offset-sm-6{
    margin-left:50%; }
  .offset-sm-7{
    margin-left:58.33333%; }
  .offset-sm-8{
    margin-left:66.66667%; }
  .offset-sm-9{
    margin-left:75%; }
  .offset-sm-10{
    margin-left:83.33333%; }
  .offset-sm-11{
    margin-left:91.66667%; } }

@media (min-width: 768px){
  .col-md{
    flex-basis:0;
    flex-grow:1;
    max-width:100%; }
  .col-md-auto{
    flex:0 0 auto;
    width:auto;
    max-width:none; }
  .col-md-1{
    flex:0 0 8.33333%;
    max-width:8.33333%; }
  .col-md-2{
    flex:0 0 16.66667%;
    max-width:16.66667%; }
  .col-md-3{
    flex:0 0 25%;
    max-width:25%; }
  .col-md-4{
    flex:0 0 33.33333%;
    max-width:33.33333%; }
  .col-md-5{
    flex:0 0 41.66667%;
    max-width:41.66667%; }
  .col-md-6{
    flex:0 0 50%;
    max-width:50%; }
  .col-md-7{
    flex:0 0 58.33333%;
    max-width:58.33333%; }
  .col-md-8{
    flex:0 0 66.66667%;
    max-width:66.66667%; }
  .col-md-9{
    flex:0 0 75%;
    max-width:75%; }
  .col-md-10{
    flex:0 0 83.33333%;
    max-width:83.33333%; }
  .col-md-11{
    flex:0 0 91.66667%;
    max-width:91.66667%; }
  .col-md-12{
    flex:0 0 100%;
    max-width:100%; }
  .order-md-first{
    order:-1; }
  .order-md-last{
    order:13; }
  .order-md-0{
    order:0; }
  .order-md-1{
    order:1; }
  .order-md-2{
    order:2; }
  .order-md-3{
    order:3; }
  .order-md-4{
    order:4; }
  .order-md-5{
    order:5; }
  .order-md-6{
    order:6; }
  .order-md-7{
    order:7; }
  .order-md-8{
    order:8; }
  .order-md-9{
    order:9; }
  .order-md-10{
    order:10; }
  .order-md-11{
    order:11; }
  .order-md-12{
    order:12; }
  .offset-md-0{
    margin-left:0; }
  .offset-md-1{
    margin-left:8.33333%; }
  .offset-md-2{
    margin-left:16.66667%; }
  .offset-md-3{
    margin-left:25%; }
  .offset-md-4{
    margin-left:33.33333%; }
  .offset-md-5{
    margin-left:41.66667%; }
  .offset-md-6{
    margin-left:50%; }
  .offset-md-7{
    margin-left:58.33333%; }
  .offset-md-8{
    margin-left:66.66667%; }
  .offset-md-9{
    margin-left:75%; }
  .offset-md-10{
    margin-left:83.33333%; }
  .offset-md-11{
    margin-left:91.66667%; } }

@media (min-width: 992px){
  .col-lg{
    flex-basis:0;
    flex-grow:1;
    max-width:100%; }
  .col-lg-auto{
    flex:0 0 auto;
    width:auto;
    max-width:none; }
  .col-lg-1{
    flex:0 0 8.33333%;
    max-width:8.33333%; }
  .col-lg-2{
    flex:0 0 16.66667%;
    max-width:16.66667%; }
  .col-lg-3{
    flex:0 0 25%;
    max-width:25%; }
  .col-lg-4{
    flex:0 0 33.33333%;
    max-width:33.33333%; }
  .col-lg-5{
    flex:0 0 41.66667%;
    max-width:41.66667%; }
  .col-lg-6{
    flex:0 0 50%;
    max-width:50%; }
  .col-lg-7{
    flex:0 0 58.33333%;
    max-width:58.33333%; }
  .col-lg-8{
    flex:0 0 66.66667%;
    max-width:66.66667%; }
  .col-lg-9{
    flex:0 0 75%;
    max-width:75%; }
  .col-lg-10{
    flex:0 0 83.33333%;
    max-width:83.33333%; }
  .col-lg-11{
    flex:0 0 91.66667%;
    max-width:91.66667%; }
  .col-lg-12{
    flex:0 0 100%;
    max-width:100%; }
  .order-lg-first{
    order:-1; }
  .order-lg-last{
    order:13; }
  .order-lg-0{
    order:0; }
  .order-lg-1{
    order:1; }
  .order-lg-2{
    order:2; }
  .order-lg-3{
    order:3; }
  .order-lg-4{
    order:4; }
  .order-lg-5{
    order:5; }
  .order-lg-6{
    order:6; }
  .order-lg-7{
    order:7; }
  .order-lg-8{
    order:8; }
  .order-lg-9{
    order:9; }
  .order-lg-10{
    order:10; }
  .order-lg-11{
    order:11; }
  .order-lg-12{
    order:12; }
  .offset-lg-0{
    margin-left:0; }
  .offset-lg-1{
    margin-left:8.33333%; }
  .offset-lg-2{
    margin-left:16.66667%; }
  .offset-lg-3{
    margin-left:25%; }
  .offset-lg-4{
    margin-left:33.33333%; }
  .offset-lg-5{
    margin-left:41.66667%; }
  .offset-lg-6{
    margin-left:50%; }
  .offset-lg-7{
    margin-left:58.33333%; }
  .offset-lg-8{
    margin-left:66.66667%; }
  .offset-lg-9{
    margin-left:75%; }
  .offset-lg-10{
    margin-left:83.33333%; }
  .offset-lg-11{
    margin-left:91.66667%; } }

@media (min-width: 1200px){
  .col-xl{
    flex-basis:0;
    flex-grow:1;
    max-width:100%; }
  .col-xl-auto{
    flex:0 0 auto;
    width:auto;
    max-width:none; }
  .col-xl-1{
    flex:0 0 8.33333%;
    max-width:8.33333%; }
  .col-xl-2{
    flex:0 0 16.66667%;
    max-width:16.66667%; }
  .col-xl-3{
    flex:0 0 25%;
    max-width:25%; }
  .col-xl-4{
    flex:0 0 33.33333%;
    max-width:33.33333%; }
  .col-xl-5{
    flex:0 0 41.66667%;
    max-width:41.66667%; }
  .col-xl-6{
    flex:0 0 50%;
    max-width:50%; }
  .col-xl-7{
    flex:0 0 58.33333%;
    max-width:58.33333%; }
  .col-xl-8{
    flex:0 0 66.66667%;
    max-width:66.66667%; }
  .col-xl-9{
    flex:0 0 75%;
    max-width:75%; }
  .col-xl-10{
    flex:0 0 83.33333%;
    max-width:83.33333%; }
  .col-xl-11{
    flex:0 0 91.66667%;
    max-width:91.66667%; }
  .col-xl-12{
    flex:0 0 100%;
    max-width:100%; }
  .order-xl-first{
    order:-1; }
  .order-xl-last{
    order:13; }
  .order-xl-0{
    order:0; }
  .order-xl-1{
    order:1; }
  .order-xl-2{
    order:2; }
  .order-xl-3{
    order:3; }
  .order-xl-4{
    order:4; }
  .order-xl-5{
    order:5; }
  .order-xl-6{
    order:6; }
  .order-xl-7{
    order:7; }
  .order-xl-8{
    order:8; }
  .order-xl-9{
    order:9; }
  .order-xl-10{
    order:10; }
  .order-xl-11{
    order:11; }
  .order-xl-12{
    order:12; }
  .offset-xl-0{
    margin-left:0; }
  .offset-xl-1{
    margin-left:8.33333%; }
  .offset-xl-2{
    margin-left:16.66667%; }
  .offset-xl-3{
    margin-left:25%; }
  .offset-xl-4{
    margin-left:33.33333%; }
  .offset-xl-5{
    margin-left:41.66667%; }
  .offset-xl-6{
    margin-left:50%; }
  .offset-xl-7{
    margin-left:58.33333%; }
  .offset-xl-8{
    margin-left:66.66667%; }
  .offset-xl-9{
    margin-left:75%; }
  .offset-xl-10{
    margin-left:83.33333%; }
  .offset-xl-11{
    margin-left:91.66667%; } }

@media (min-width: 1200px){
  .col-xl-2-4{
    flex:0 0 20%;
    max-width:20%; } }

@media (min-width: 992px){
  .col-lg-2-4{
    flex:0 0 20%;
    max-width:20%; } }

@media (min-width: 768px){
  .col-md-2-4{
    flex:0 0 20%;
    max-width:20%; } }

@media (min-width: 480px){
  .col-sm-2-4{
    flex:0 0 20%;
    max-width:20%; } }

.table,table{
  width:100%;
  max-width:100%;
  margin-bottom:1rem;
  background-color:transparent; }
  .table td,.table th,table td,table th{
    padding:16px 30px;
    vertical-align:top;
    border-top:1px solid #e0e0e0; }
  .table thead th,table thead th{
    vertical-align:bottom;
    border-bottom:2px solid #e0e0e0; }
  .table tbody+tbody,table tbody+tbody{
    border-top:2px solid #e0e0e0; }
  .table .table,.table table,table .table,table table{
    background-color:transparent; }

.table-sm td,.table-sm th{
  padding:.3rem; }
  .table-bordered,.table-bordered td,.table-bordered th,table,table td,table th{
    border:1px solid #e0e0e0; }
  .table-bordered thead td,.table-bordered thead th,table thead td,table thead th{
    border-bottom-width:2px; }

.table-striped tbody tr:nth-of-type(odd){
  background-color:rgba(0,0,0,.05); }

.table-hover tbody tr:hover{
  background-color:rgba(0,0,0,.075); }

.table-primary,.table-primary>td,.table-primary>th{
  background-color:#c6e8ed; }
  .table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{
    background-color:#b3e0e7; }

.table-secondary,.table-secondary>td,.table-secondary>th{
  background-color:#d6d8db; }
  .table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{
    background-color:#c8cbcf; }

.table-success,.table-success>td,.table-success>th{
  background-color:#d0edd6; }
  .table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{
    background-color:#bee6c6; }

.table-info,.table-info>td,.table-info>th{
  background-color:#b8e5f3; }
  .table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{
    background-color:#a2ddef; }

.table-warning,.table-warning>td,.table-warning>th{
  background-color:#f9f0c5; }
  .table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{
    background-color:#f7eaae; }

.table-danger,.table-danger>td,.table-danger>th{
  background-color:#f7c1c6; }
  .table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{
    background-color:#f4aab1; }

.table-light,.table-light>td,.table-light>th{
  background-color:#fdfdfe; }
  .table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{
    background-color:#ececf6; }

.table-dark,.table-dark>td,.table-dark>th{
  background-color:#bdbfc0; }
  .table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{
    background-color:#b0b2b4; }
  .table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{
    background-color:rgba(0,0,0,.075); }

.table .thead-dark th{
  color:transparent;
  background-color:#212529;
  border-color:#32383e; }

.table .thead-light th{
  color:#495057;
  background-color:#e9ecef;
  border-color:#e0e0e0; }

.table-dark{
  color:transparent;
  background-color:#212529; }
  .table-dark td,.table-dark th,.table-dark thead th{
    border-color:#32383e; }
  .table-dark.table-bordered{
    border:0; }
  .table-dark.table-striped tbody tr:nth-of-type(odd){
    background-color:hsla(0,0%,100%,.05); }
  .table-dark.table-hover tbody tr:hover{
    background-color:hsla(0,0%,100%,.075); }

@media (max-width: 575.98px){
  .table-responsive-sm{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:-ms-autohiding-scrollbar; }
    .table-responsive-sm>.table-bordered{
      border:0; } }

@media (max-width: 767.98px){
  .table-responsive-md{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:-ms-autohiding-scrollbar; }
    .table-responsive-md>.table-bordered{
      border:0; } }

@media (max-width: 991.98px){
  .table-responsive-lg{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:-ms-autohiding-scrollbar; }
    .table-responsive-lg>.table-bordered{
      border:0; } }

@media (max-width: 1199.98px){
  .table-responsive-xl{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:-ms-autohiding-scrollbar; }
    .table-responsive-xl>.table-bordered{
      border:0; } }

.table-responsive{
  display:block;
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  -ms-overflow-style:-ms-autohiding-scrollbar; }
  .table-responsive>.table-bordered{
    border:0; }

.form-control{
  display:block;
  width:100%;
  padding:.375rem .75rem;
  font-size:1rem;
  line-height:1.7;
  color:#000;
  background-color:#fff;
  background-clip:padding-box;
  border:1px solid #ced4da;
  border-radius:0;
  box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
  .form-control::-ms-expand{
    background-color:transparent;
    border:0; }
  .form-control:focus{
    color:#000;
    background-color:#fff;
    border-color:#404040;
    outline:0;
    box-shadow:0 0 0 .2rem rgba(0,0,0,.25); }
  .form-control::placeholder{
    color:#6c757d;
    opacity:1; }
  .form-control:disabled,.form-control[readonly]{
    background-color:#e9ecef;
    opacity:1; }

select.form-control:not([size]):not([multiple]){
  height:calc(2.45rem + 2px); }

select.form-control:focus::-ms-value{
  color:#000;
  background-color:#fff; }

.form-control-file,.form-control-range{
  display:block;
  width:100%; }

.col-form-label{
  padding-top:calc(.375rem + 1px);
  padding-bottom:calc(.375rem + 1px);
  margin-bottom:0;
  font-size:inherit;
  line-height:1.7; }

.col-form-label-lg{
  padding-top:calc(.5rem + 1px);
  padding-bottom:calc(.5rem + 1px);
  font-size:2rem;
  line-height:1.33; }

.col-form-label-sm{
  padding-top:calc(.25rem + 1px);
  padding-bottom:calc(.25rem + 1px);
  font-size:1rem;
  line-height:1.5; }

.form-control-plaintext{
  display:block;
  width:100%;
  padding-top:.375rem;
  padding-bottom:.375rem;
  margin-bottom:0;
  line-height:1.7;
  background-color:transparent;
  border:solid transparent;
  border-width:1px 0; }
  .form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{
    padding-right:0;
    padding-left:0; }

.form-control-sm{
  padding:.25rem .5rem;
  font-size:1rem;
  line-height:1.5;
  border-radius:.2rem;
  -webkit-border-radius:.2rem;
  -moz-border-radius:.2rem;
  -ms-border-radius:.2rem;
  -o-border-radius:.2rem; }

select.form-control-sm:not([size]):not([multiple]){
  height:calc(2rem + 2px); }

.form-control-lg{
  padding:.5rem 1rem;
  font-size:2rem;
  line-height:1.33;
  border-radius:.3rem;
  -webkit-border-radius:.3rem;
  -moz-border-radius:.3rem;
  -ms-border-radius:.3rem;
  -o-border-radius:.3rem; }

select.form-control-lg:not([size]):not([multiple]){
  height:calc(3.66rem + 2px); }

.form-group{
  margin-bottom:1rem; }

.form-text{
  display:block;
  margin-top:.25rem; }

.form-row{
  display:flex;
  flex-wrap:wrap;
  margin-right:-5px;
  margin-left:-5px; }
  .form-row>.col,.form-row>[class*=col-]{
    padding-right:5px;
    padding-left:5px; }

.form-check{
  position:relative;
  display:block;
  padding-left:1.25rem; }

.form-check-input{
  position:absolute;
  margin-top:.3rem;
  margin-left:-1.25rem; }
  .form-check-input:disabled~.form-check-label{
    color:#868686; }

.form-check-label{
  margin-bottom:0; }

.form-check-inline{
  display:inline-flex;
  align-items:center;
  padding-left:0;
  margin-right:.75rem; }
  .form-check-inline .form-check-input{
    position:static;
    margin-top:0;
    margin-right:.3125rem;
    margin-left:0; }

.valid-feedback{
  display:none;
  width:100%;
  margin-top:.25rem;
  font-size:80%;
  color:#57bf6d; }

.valid-tooltip{
  position:absolute;
  top:100%;
  z-index:1;
  display:none;
  max-width:100%;
  padding:.5rem;
  margin-top:.1rem;
  font-size:.875rem;
  line-height:1;
  color:#fff;
  background-color:rgba(87,191,109,.8);
  border-radius:.2rem; }

.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{
  border-color:#57bf6d; }
  .custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{
    border-color:#57bf6d;
    box-shadow:0 0 0 .2rem rgba(87,191,109,.25); }
  .custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{
    display:block; }

.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{
  color:#57bf6d; }

.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{
  display:block; }

.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{
  color:#57bf6d; }
  .custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{
    background-color:#b3e2bd; }

.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{
  display:block; }

.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{
  background-color:#7ccd8d; }

.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{
  box-shadow:0 0 0 1px transparent,0 0 0 .2rem rgba(87,191,109,.25); }

.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{
  border-color:#57bf6d; }
  .custom-file-input.is-valid~.custom-file-label:before,.was-validated .custom-file-input:valid~.custom-file-label:before{
    border-color:inherit; }

.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{
  display:block; }

.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{
  box-shadow:0 0 0 .2rem rgba(87,191,109,.25); }

.invalid-feedback{
  display:none;
  width:100%;
  margin-top:.25rem;
  font-size:80%;
  color:#e42234; }

.invalid-tooltip{
  position:absolute;
  top:100%;
  z-index:1;
  display:none;
  max-width:100%;
  padding:.5rem;
  margin-top:.1rem;
  font-size:.875rem;
  line-height:1;
  color:#fff;
  background-color:rgba(228,34,52,.8);
  border-radius:.2rem; }

.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{
  border-color:#e42234; }
  .custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{
    border-color:#e42234;
    box-shadow:0 0 0 .2rem rgba(228,34,52,.25); }
  .custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{
    display:block; }

.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{
  color:#e42234; }

.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{
  display:block; }

.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{
  color:#e42234; }
  .custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{
    background-color:#f2949c; }

.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{
  display:block; }

.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{
  background-color:#ea4f5e; }

.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{
  box-shadow:0 0 0 1px transparent,0 0 0 .2rem rgba(228,34,52,.25); }

.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{
  border-color:#e42234; }
  .custom-file-input.is-invalid~.custom-file-label:before,.was-validated .custom-file-input:invalid~.custom-file-label:before{
    border-color:inherit; }

.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{
  display:block; }

.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{
  box-shadow:0 0 0 .2rem rgba(228,34,52,.25); }

.form-inline{
  display:flex;
  flex-flow:row wrap;
  align-items:center; }
  .form-inline .form-check{
    width:100%; }
  @media (min-width: 576px){
    .form-inline label{
      justify-content:center; }
    .form-inline .form-group,.form-inline label{
      display:flex;
      align-items:center;
      margin-bottom:0; }
    .form-inline .form-group{
      flex:0 0 auto;
      flex-flow:row wrap; }
    .form-inline .form-control{
      width:auto;
      vertical-align:middle; }
    .form-inline .form-control,.form-inline .form-control-plaintext{
      display:inline-block; }
    .form-inline .input-group{
      width:auto; }
    .form-inline .form-check{
      display:flex;
      align-items:center;
      justify-content:center;
      width:auto;
      padding-left:0; }
    .form-inline .form-check-input{
      position:relative;
      margin-top:0;
      margin-right:.25rem;
      margin-left:0; }
    .form-inline .custom-control{
      align-items:center;
      justify-content:center; }
    .form-inline .custom-control-label{
      margin-bottom:0; } }

.fade{
  opacity:0;
  -webkit-transition:opacity .15s linear;
  transition:opacity .15s linear; }
  .fade.show{
    opacity:1; }

.collapse{
  display:none; }
  .collapse.show{
    display:block; }

tr.collapse.show{
  display:table-row; }

tbody.collapse.show{
  display:table-row-group; }

.collapsing{
  height:0;
  overflow:hidden;
  -webkit-transition:height .35s ease;
  transition:height .35s ease; }

.collapsing,.dropdown,.dropup{
  position:relative; }

.dropdown-toggle:after{
  display:inline-block;
  width:0;
  height:0;
  margin-left:.255em;
  vertical-align:.255em;
  content:"";
  border-top:.3em solid;
  border-right:.3em solid transparent;
  border-bottom:0;
  border-left:.3em solid transparent; }

.dropdown-toggle:empty:after{
  margin-left:0; }

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  z-index:2;
  display:none;
  float:left;
  min-width:10rem;
  padding:.5rem 0;
  margin:.125rem 0 0;
  font-size:1rem;
  color:#212529;
  text-align:left;
  list-style:none;
  background-color:#fff;
  background-clip:padding-box;
  border:1px solid rgba(0,0,0,.15);
  border-radius:.25rem;
  -webkit-border-radius:.25rem;
  -moz-border-radius:.25rem;
  -ms-border-radius:.25rem;
  -o-border-radius:.25rem;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.175); }

.dropup .dropdown-menu{
  margin-top:0;
  margin-bottom:.125rem; }

.dropup .dropdown-toggle:after{
  display:inline-block;
  width:0;
  height:0;
  margin-left:.255em;
  vertical-align:.255em;
  content:"";
  border-top:0;
  border-right:.3em solid transparent;
  border-bottom:.3em solid;
  border-left:.3em solid transparent; }

.dropup .dropdown-toggle:empty:after{
  margin-left:0; }

.dropright .dropdown-menu{
  margin-top:0;
  margin-left:.125rem; }

.dropright .dropdown-toggle:after{
  display:inline-block;
  width:0;
  height:0;
  margin-left:.255em;
  vertical-align:.255em;
  content:"";
  border-top:.3em solid transparent;
  border-bottom:.3em solid transparent;
  border-left:.3em solid; }

.dropright .dropdown-toggle:empty:after{
  margin-left:0; }

.dropright .dropdown-toggle:after{
  vertical-align:0; }

.dropleft .dropdown-menu{
  margin-top:0;
  margin-right:.125rem; }

.dropleft .dropdown-toggle:after{
  display:inline-block;
  width:0;
  height:0;
  margin-left:.255em;
  vertical-align:.255em;
  content:"";
  display:none; }

.dropleft .dropdown-toggle:before{
  display:inline-block;
  width:0;
  height:0;
  margin-right:.255em;
  vertical-align:.255em;
  content:"";
  border-top:.3em solid transparent;
  border-right:.3em solid;
  border-bottom:.3em solid transparent; }

.dropleft .dropdown-toggle:empty:after{
  margin-left:0; }

.dropleft .dropdown-toggle:before{
  vertical-align:0; }

.dropdown-divider{
  height:1px;
  margin:-.335 0;
  overflow:hidden;
  background-color:#ddd; }

.dropdown-item{
  display:block;
  width:100%;
  padding:.25rem 1.5rem;
  clear:both;
  font-weight:400;
  color:#000;
  text-align:inherit;
  white-space:nowrap;
  background-color:transparent;
  border:0; }
  .dropdown-item:focus,.dropdown-item:hover{
    color:#000;
    text-decoration:none;
    background-color:#f5f5f5; }
  .dropdown-item.active,.dropdown-item:active{
    color:#fff;
    text-decoration:none;
    background-color:#000; }
  .dropdown-item.disabled,.dropdown-item:disabled{
    color:#d7d7d7;
    background-color:transparent; }

.dropdown-menu.show{
  display:block; }

.dropdown-header{
  display:block;
  padding:.5rem 1.5rem;
  margin-bottom:0;
  color:#d7d7d7; }

.btn,.dropdown-header{
  font-size:1rem;
  white-space:nowrap; }

.btn{
  display:inline-block;
  font-weight:500;
  text-align:center;
  vertical-align:middle;
  user-select:none;
  border:1px solid transparent;
  padding:.375rem .75rem;
  line-height:1.7;
  border-radius:.25rem;
  -webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; }
  .btn:focus,.btn:hover{
    text-decoration:none; }
  .btn.focus,.btn:focus{
    outline:0;
    box-shadow:0 0 0 .2rem rgba(0,0,0,.25); }
  .btn.disabled,.btn:disabled{
    opacity:.65;
    box-shadow:none; }
  .btn:not(:disabled):not(.disabled){
    cursor:pointer; }
  .btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{
    background-image:none;
    box-shadow:inset 0 3px 5px rgba(0,0,0,.125); }
    .btn:not(:disabled):not(.disabled).active:focus,.btn:not(:disabled):not(.disabled):active:focus{
      box-shadow:0 0 0 .2rem rgba(0,0,0,.25),inset 0 3px 5px rgba(0,0,0,.125); }

a.btn.disabled,fieldset:disabled a.btn{
  pointer-events:none; }

.btn-primary{
  color:#fff;
  background-color:#33aebd;
  border-color:#33aebd;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-primary:hover{
    color:#fff;
    background-color:#2b929f;
    border-color:#288995; }
  .btn-primary.focus,.btn-primary:focus{
    box-shadow:0 0 0 .2rem rgba(51,174,189,.5); }
  .btn-primary.disabled,.btn-primary:disabled{
    color:#fff;
    background-color:#33aebd;
    border-color:#33aebd; }
  .btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{
    color:#fff;
    background-color:#288995;
    border-color:#25808b; }
    .btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(51,174,189,.5); }

.btn-secondary{
  color:#fff;
  background-color:#6c757d;
  border-color:#6c757d;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-secondary:hover{
    color:#fff;
    background-color:#5a6268;
    border-color:#545b62; }
  .btn-secondary.focus,.btn-secondary:focus{
    box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5); }
  .btn-secondary.disabled,.btn-secondary:disabled{
    color:#fff;
    background-color:#6c757d;
    border-color:#6c757d; }
  .btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{
    color:#fff;
    background-color:#545b62;
    border-color:#4e555b; }
    .btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5); }

.btn-success{
  color:#212529;
  background-color:#57bf6d;
  border-color:#57bf6d;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-success:hover{
    color:#fff;
    background-color:#42ae59;
    border-color:#3fa454; }
  .btn-success.focus,.btn-success:focus{
    box-shadow:0 0 0 .2rem rgba(87,191,109,.5); }
  .btn-success.disabled,.btn-success:disabled{
    color:#212529;
    background-color:#57bf6d;
    border-color:#57bf6d; }
  .btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{
    color:#fff;
    background-color:#3fa454;
    border-color:#3b9b4f; }
    .btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(87,191,109,.5); }

.btn-info{
  color:#fff;
  background-color:#01a3d4;
  border-color:#01a3d4;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-info:hover{
    color:#fff;
    background-color:#0186ae;
    border-color:#017ca1; }
  .btn-info.focus,.btn-info:focus{
    box-shadow:0 0 0 .2rem rgba(1,163,212,.5); }
  .btn-info.disabled,.btn-info:disabled{
    color:#fff;
    background-color:#01a3d4;
    border-color:#01a3d4; }
  .btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{
    color:#fff;
    background-color:#017ca1;
    border-color:#017295; }
    .btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(1,163,212,.5); }

.btn-warning{
  color:#212529;
  background-color:#e9c931;
  border-color:#e9c931;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-warning:hover{
    color:#212529;
    background-color:#dcba18;
    border-color:#d1b016; }
  .btn-warning.focus,.btn-warning:focus{
    box-shadow:0 0 0 .2rem rgba(233,201,49,.5); }
  .btn-warning.disabled,.btn-warning:disabled{
    color:#212529;
    background-color:#e9c931;
    border-color:#e9c931; }
  .btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{
    color:#212529;
    background-color:#d1b016;
    border-color:#c5a715; }
    .btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(233,201,49,.5); }

.btn-danger{
  color:#fff;
  background-color:#e42234;
  border-color:#e42234;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-danger:hover{
    color:#fff;
    background-color:#c71829;
    border-color:#bc1726; }
  .btn-danger.focus,.btn-danger:focus{
    box-shadow:0 0 0 .2rem rgba(228,34,52,.5); }
  .btn-danger.disabled,.btn-danger:disabled{
    color:#fff;
    background-color:#e42234;
    border-color:#e42234; }
  .btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{
    color:#fff;
    background-color:#bc1726;
    border-color:#b11624; }
    .btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(228,34,52,.5); }

.btn-light{
  color:#212529;
  background-color:#f8f9fa;
  border-color:#f8f9fa;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-light:hover{
    color:#212529;
    background-color:#e2e6ea;
    border-color:#dae0e5; }
  .btn-light.focus,.btn-light:focus{
    box-shadow:0 0 0 .2rem rgba(248,249,250,.5); }
  .btn-light.disabled,.btn-light:disabled{
    color:#212529;
    background-color:#f8f9fa;
    border-color:#f8f9fa; }
  .btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{
    color:#212529;
    background-color:#dae0e5;
    border-color:#d3d9df; }
    .btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(248,249,250,.5); }

.btn-dark{
  color:#fff;
  background-color:#121b1f;
  border-color:#121b1f;
  box-shadow:inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075); }
  .btn-dark:hover{
    color:#fff;
    background-color:#040607;
    border-color:#000; }
  .btn-dark.focus,.btn-dark:focus{
    box-shadow:0 0 0 .2rem rgba(18,27,31,.5); }
  .btn-dark.disabled,.btn-dark:disabled{
    color:#fff;
    background-color:#121b1f;
    border-color:#121b1f; }
  .btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{
    color:#fff;
    background-color:#000;
    border-color:#000; }
    .btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(18,27,31,.5); }

.btn-outline-primary{
  color:#33aebd;
  background-color:transparent;
  background-image:none;
  border-color:#33aebd; }
  .btn-outline-primary:hover{
    color:#fff;
    background-color:#33aebd;
    border-color:#33aebd; }
  .btn-outline-primary.focus,.btn-outline-primary:focus{
    box-shadow:0 0 0 .2rem rgba(51,174,189,.5); }
  .btn-outline-primary.disabled,.btn-outline-primary:disabled{
    color:#33aebd;
    background-color:transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{
    color:#fff;
    background-color:#33aebd;
    border-color:#33aebd; }
    .btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(51,174,189,.5); }

.btn-outline-secondary{
  color:#6c757d;
  background-color:transparent;
  background-image:none;
  border-color:#6c757d; }
  .btn-outline-secondary:hover{
    color:#fff;
    background-color:#6c757d;
    border-color:#6c757d; }
  .btn-outline-secondary.focus,.btn-outline-secondary:focus{
    box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5); }
  .btn-outline-secondary.disabled,.btn-outline-secondary:disabled{
    color:#6c757d;
    background-color:transparent; }
  .btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{
    color:#fff;
    background-color:#6c757d;
    border-color:#6c757d; }
    .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem hsla(208,7%,46%,.5); }

.btn-outline-success{
  color:#57bf6d;
  background-color:transparent;
  background-image:none;
  border-color:#57bf6d; }
  .btn-outline-success:hover{
    color:#212529;
    background-color:#57bf6d;
    border-color:#57bf6d; }
  .btn-outline-success.focus,.btn-outline-success:focus{
    box-shadow:0 0 0 .2rem rgba(87,191,109,.5); }
  .btn-outline-success.disabled,.btn-outline-success:disabled{
    color:#57bf6d;
    background-color:transparent; }
  .btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{
    color:#212529;
    background-color:#57bf6d;
    border-color:#57bf6d; }
    .btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(87,191,109,.5); }

.btn-outline-info{
  color:#01a3d4;
  background-color:transparent;
  background-image:none;
  border-color:#01a3d4; }
  .btn-outline-info:hover{
    color:#fff;
    background-color:#01a3d4;
    border-color:#01a3d4; }
  .btn-outline-info.focus,.btn-outline-info:focus{
    box-shadow:0 0 0 .2rem rgba(1,163,212,.5); }
  .btn-outline-info.disabled,.btn-outline-info:disabled{
    color:#01a3d4;
    background-color:transparent; }
  .btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{
    color:#fff;
    background-color:#01a3d4;
    border-color:#01a3d4; }
    .btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(1,163,212,.5); }

.btn-outline-warning{
  color:#e9c931;
  background-color:transparent;
  background-image:none;
  border-color:#e9c931; }
  .btn-outline-warning:hover{
    color:#212529;
    background-color:#e9c931;
    border-color:#e9c931; }
  .btn-outline-warning.focus,.btn-outline-warning:focus{
    box-shadow:0 0 0 .2rem rgba(233,201,49,.5); }
  .btn-outline-warning.disabled,.btn-outline-warning:disabled{
    color:#e9c931;
    background-color:transparent; }
  .btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{
    color:#212529;
    background-color:#e9c931;
    border-color:#e9c931; }
    .btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(233,201,49,.5); }

.btn-outline-danger{
  color:#e42234;
  background-color:transparent;
  background-image:none;
  border-color:#e42234; }
  .btn-outline-danger:hover{
    color:#fff;
    background-color:#e42234;
    border-color:#e42234; }
  .btn-outline-danger.focus,.btn-outline-danger:focus{
    box-shadow:0 0 0 .2rem rgba(228,34,52,.5); }
  .btn-outline-danger.disabled,.btn-outline-danger:disabled{
    color:#e42234;
    background-color:transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{
    color:#fff;
    background-color:#e42234;
    border-color:#e42234; }
    .btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(228,34,52,.5); }

.btn-outline-light{
  color:#f8f9fa;
  background-color:transparent;
  background-image:none;
  border-color:#f8f9fa; }
  .btn-outline-light:hover{
    color:#212529;
    background-color:#f8f9fa;
    border-color:#f8f9fa; }
  .btn-outline-light.focus,.btn-outline-light:focus{
    box-shadow:0 0 0 .2rem rgba(248,249,250,.5); }
  .btn-outline-light.disabled,.btn-outline-light:disabled{
    color:#f8f9fa;
    background-color:transparent; }
  .btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{
    color:#212529;
    background-color:#f8f9fa;
    border-color:#f8f9fa; }
    .btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(248,249,250,.5); }

.btn-outline-dark{
  color:#121b1f;
  background-color:transparent;
  background-image:none;
  border-color:#121b1f; }
  .btn-outline-dark:hover{
    color:#fff;
    background-color:#121b1f;
    border-color:#121b1f; }
  .btn-outline-dark.focus,.btn-outline-dark:focus{
    box-shadow:0 0 0 .2rem rgba(18,27,31,.5); }
  .btn-outline-dark.disabled,.btn-outline-dark:disabled{
    color:#121b1f;
    background-color:transparent; }
  .btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{
    color:#fff;
    background-color:#121b1f;
    border-color:#121b1f; }
    .btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{
      box-shadow:0 0 0 .2rem rgba(18,27,31,.5); }

.btn-link{
  font-weight:400;
  color:#000;
  background-color:transparent; }
  .btn-link:hover{
    color:#bd0028;
    background-color:transparent; }
  .btn-link.focus,.btn-link:focus,.btn-link:hover{
    text-decoration:underline;
    border-color:transparent; }
  .btn-link.focus,.btn-link:focus{
    box-shadow:none; }
  .btn-link.disabled,.btn-link:disabled{
    color:#d7d7d7; }

.btn-lg{
  padding:.5rem 1rem;
  font-size:2rem;
  line-height:1.33;
  border-radius:.3rem; }

.btn-sm{
  padding:.25rem .5rem;
  font-size:1rem;
  line-height:1.5;
  border-radius:.2rem; }

.btn-block{
  display:block;
  width:100%; }
  .btn-block+.btn-block{
    margin-top:.5rem; }

input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{
  width:100%; }

.align-baseline{
  vertical-align:baseline !important; }

.align-top{
  vertical-align:top !important; }

.align-middle{
  vertical-align:middle !important; }

.align-bottom{
  vertical-align:bottom !important; }

.align-text-bottom{
  vertical-align:text-bottom !important; }

.align-text-top{
  vertical-align:text-top !important; }

.clearfix:after{
  display:block;
  clear:both;
  content:""; }

.flex-row{
  flex-direction:row !important; }

.flex-column{
  flex-direction:column !important; }

.flex-row-reverse{
  flex-direction:row-reverse !important; }

.flex-column-reverse{
  flex-direction:column-reverse !important; }

.flex-wrap{
  flex-wrap:wrap !important; }

.flex-nowrap{
  flex-wrap:nowrap !important; }

.flex-wrap-reverse{
  flex-wrap:wrap-reverse !important; }

.justify-content-start{
  justify-content:flex-start !important; }

.justify-content-end{
  justify-content:flex-end !important; }

.justify-content-center{
  justify-content:center !important; }

.justify-content-between{
  justify-content:space-between !important; }

.justify-content-around{
  justify-content:space-around !important; }

.align-items-start{
  align-items:flex-start !important; }

.align-items-end{
  align-items:flex-end !important; }

.align-items-center{
  align-items:center !important; }

.align-items-baseline{
  align-items:baseline !important; }

.align-items-stretch{
  align-items:stretch !important; }

.align-content-start{
  align-content:flex-start !important; }

.align-content-end{
  align-content:flex-end !important; }

.align-content-center{
  align-content:center !important; }

.align-content-between{
  align-content:space-between !important; }

.align-content-around{
  align-content:space-around !important; }

.align-content-stretch{
  align-content:stretch !important; }

.align-self-auto{
  align-self:auto !important; }

.align-self-start{
  align-self:flex-start !important; }

.align-self-end{
  align-self:flex-end !important; }

.align-self-center{
  align-self:center !important; }

.align-self-baseline{
  align-self:baseline !important; }

.align-self-stretch{
  align-self:stretch !important; }

@media (min-width: 576px){
  .flex-sm-row{
    flex-direction:row !important; }
  .flex-sm-column{
    flex-direction:column !important; }
  .flex-sm-row-reverse{
    flex-direction:row-reverse !important; }
  .flex-sm-column-reverse{
    flex-direction:column-reverse !important; }
  .flex-sm-wrap{
    flex-wrap:wrap !important; }
  .flex-sm-nowrap{
    flex-wrap:nowrap !important; }
  .flex-sm-wrap-reverse{
    flex-wrap:wrap-reverse !important; }
  .justify-content-sm-start{
    justify-content:flex-start !important; }
  .justify-content-sm-end{
    justify-content:flex-end !important; }
  .justify-content-sm-center{
    justify-content:center !important; }
  .justify-content-sm-between{
    justify-content:space-between !important; }
  .justify-content-sm-around{
    justify-content:space-around !important; }
  .align-items-sm-start{
    align-items:flex-start !important; }
  .align-items-sm-end{
    align-items:flex-end !important; }
  .align-items-sm-center{
    align-items:center !important; }
  .align-items-sm-baseline{
    align-items:baseline !important; }
  .align-items-sm-stretch{
    align-items:stretch !important; }
  .align-content-sm-start{
    align-content:flex-start !important; }
  .align-content-sm-end{
    align-content:flex-end !important; }
  .align-content-sm-center{
    align-content:center !important; }
  .align-content-sm-between{
    align-content:space-between !important; }
  .align-content-sm-around{
    align-content:space-around !important; }
  .align-content-sm-stretch{
    align-content:stretch !important; }
  .align-self-sm-auto{
    align-self:auto !important; }
  .align-self-sm-start{
    align-self:flex-start !important; }
  .align-self-sm-end{
    align-self:flex-end !important; }
  .align-self-sm-center{
    align-self:center !important; }
  .align-self-sm-baseline{
    align-self:baseline !important; }
  .align-self-sm-stretch{
    align-self:stretch !important; } }

@media (min-width: 768px){
  .flex-md-row{
    flex-direction:row !important; }
  .flex-md-column{
    flex-direction:column !important; }
  .flex-md-row-reverse{
    flex-direction:row-reverse !important; }
  .flex-md-column-reverse{
    flex-direction:column-reverse !important; }
  .flex-md-wrap{
    flex-wrap:wrap !important; }
  .flex-md-nowrap{
    flex-wrap:nowrap !important; }
  .flex-md-wrap-reverse{
    flex-wrap:wrap-reverse !important; }
  .justify-content-md-start{
    justify-content:flex-start !important; }
  .justify-content-md-end{
    justify-content:flex-end !important; }
  .justify-content-md-center{
    justify-content:center !important; }
  .justify-content-md-between{
    justify-content:space-between !important; }
  .justify-content-md-around{
    justify-content:space-around !important; }
  .align-items-md-start{
    align-items:flex-start !important; }
  .align-items-md-end{
    align-items:flex-end !important; }
  .align-items-md-center{
    align-items:center !important; }
  .align-items-md-baseline{
    align-items:baseline !important; }
  .align-items-md-stretch{
    align-items:stretch !important; }
  .align-content-md-start{
    align-content:flex-start !important; }
  .align-content-md-end{
    align-content:flex-end !important; }
  .align-content-md-center{
    align-content:center !important; }
  .align-content-md-between{
    align-content:space-between !important; }
  .align-content-md-around{
    align-content:space-around !important; }
  .align-content-md-stretch{
    align-content:stretch !important; }
  .align-self-md-auto{
    align-self:auto !important; }
  .align-self-md-start{
    align-self:flex-start !important; }
  .align-self-md-end{
    align-self:flex-end !important; }
  .align-self-md-center{
    align-self:center !important; }
  .align-self-md-baseline{
    align-self:baseline !important; }
  .align-self-md-stretch{
    align-self:stretch !important; } }

@media (min-width: 992px){
  .flex-lg-row{
    flex-direction:row !important; }
  .flex-lg-column{
    flex-direction:column !important; }
  .flex-lg-row-reverse{
    flex-direction:row-reverse !important; }
  .flex-lg-column-reverse{
    flex-direction:column-reverse !important; }
  .flex-lg-wrap{
    flex-wrap:wrap !important; }
  .flex-lg-nowrap{
    flex-wrap:nowrap !important; }
  .flex-lg-wrap-reverse{
    flex-wrap:wrap-reverse !important; }
  .justify-content-lg-start{
    justify-content:flex-start !important; }
  .justify-content-lg-end{
    justify-content:flex-end !important; }
  .justify-content-lg-center{
    justify-content:center !important; }
  .justify-content-lg-between{
    justify-content:space-between !important; }
  .justify-content-lg-around{
    justify-content:space-around !important; }
  .align-items-lg-start{
    align-items:flex-start !important; }
  .align-items-lg-end{
    align-items:flex-end !important; }
  .align-items-lg-center{
    align-items:center !important; }
  .align-items-lg-baseline{
    align-items:baseline !important; }
  .align-items-lg-stretch{
    align-items:stretch !important; }
  .align-content-lg-start{
    align-content:flex-start !important; }
  .align-content-lg-end{
    align-content:flex-end !important; }
  .align-content-lg-center{
    align-content:center !important; }
  .align-content-lg-between{
    align-content:space-between !important; }
  .align-content-lg-around{
    align-content:space-around !important; }
  .align-content-lg-stretch{
    align-content:stretch !important; }
  .align-self-lg-auto{
    align-self:auto !important; }
  .align-self-lg-start{
    align-self:flex-start !important; }
  .align-self-lg-end{
    align-self:flex-end !important; }
  .align-self-lg-center{
    align-self:center !important; }
  .align-self-lg-baseline{
    align-self:baseline !important; }
  .align-self-lg-stretch{
    align-self:stretch !important; } }

@media (min-width: 1200px){
  .flex-xl-row{
    flex-direction:row !important; }
  .flex-xl-column{
    flex-direction:column !important; }
  .flex-xl-row-reverse{
    flex-direction:row-reverse !important; }
  .flex-xl-column-reverse{
    flex-direction:column-reverse !important; }
  .flex-xl-wrap{
    flex-wrap:wrap !important; }
  .flex-xl-nowrap{
    flex-wrap:nowrap !important; }
  .flex-xl-wrap-reverse{
    flex-wrap:wrap-reverse !important; }
  .justify-content-xl-start{
    justify-content:flex-start !important; }
  .justify-content-xl-end{
    justify-content:flex-end !important; }
  .justify-content-xl-center{
    justify-content:center !important; }
  .justify-content-xl-between{
    justify-content:space-between !important; }
  .justify-content-xl-around{
    justify-content:space-around !important; }
  .align-items-xl-start{
    align-items:flex-start !important; }
  .align-items-xl-end{
    align-items:flex-end !important; }
  .align-items-xl-center{
    align-items:center !important; }
  .align-items-xl-baseline{
    align-items:baseline !important; }
  .align-items-xl-stretch{
    align-items:stretch !important; }
  .align-content-xl-start{
    align-content:flex-start !important; }
  .align-content-xl-end{
    align-content:flex-end !important; }
  .align-content-xl-center{
    align-content:center !important; }
  .align-content-xl-between{
    align-content:space-between !important; }
  .align-content-xl-around{
    align-content:space-around !important; }
  .align-content-xl-stretch{
    align-content:stretch !important; }
  .align-self-xl-auto{
    align-self:auto !important; }
  .align-self-xl-start{
    align-self:flex-start !important; }
  .align-self-xl-end{
    align-self:flex-end !important; }
  .align-self-xl-center{
    align-self:center !important; }
  .align-self-xl-baseline{
    align-self:baseline !important; }
  .align-self-xl-stretch{
    align-self:stretch !important; } }

.float-left{
  float:left !important; }

.float-right{
  float:right !important; }

.float-none{
  float:none !important; }

@media (min-width: 576px){
  .float-sm-left{
    float:left !important; }
  .float-sm-right{
    float:right !important; }
  .float-sm-none{
    float:none !important; } }

@media (min-width: 768px){
  .float-md-left{
    float:left !important; }
  .float-md-right{
    float:right !important; }
  .float-md-none{
    float:none !important; } }

@media (min-width: 992px){
  .float-lg-left{
    float:left !important; }
  .float-lg-right{
    float:right !important; }
  .float-lg-none{
    float:none !important; } }

@media (min-width: 1200px){
  .float-xl-left{
    float:left !important; }
  .float-xl-right{
    float:right !important; }
  .float-xl-none{
    float:none !important; } }

.text-justify{
  text-align:justify !important; }

.text-nowrap{
  white-space:nowrap !important; }

.text-truncate{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap; }

.text-left{
  text-align:left !important; }

.text-right{
  text-align:right !important; }

.text-center{
  text-align:center !important; }

@media (min-width: 576px){
  .text-sm-left{
    text-align:left !important; }
  .text-sm-right{
    text-align:right !important; }
  .text-sm-center{
    text-align:center !important; } }

@media (min-width: 768px){
  .text-md-left{
    text-align:left !important; }
  .text-md-right{
    text-align:right !important; }
  .text-md-center{
    text-align:center !important; } }

@media (min-width: 992px){
  .text-lg-left{
    text-align:left !important; }
  .text-lg-right{
    text-align:right !important; }
  .text-lg-center{
    text-align:center !important; } }

@media (min-width: 1200px){
  .text-xl-left{
    text-align:left !important; }
  .text-xl-right{
    text-align:right !important; }
  .text-xl-center{
    text-align:center !important; } }

.text-lowercase{
  text-transform:lowercase !important; }

.text-uppercase{
  text-transform:uppercase !important; }

.text-capitalize{
  text-transform:capitalize !important; }

.font-weight-light{
  font-weight:300 !important; }

.font-weight-normal{
  font-weight:400 !important; }

.font-weight-bold{
  font-weight:700 !important; }

.font-italic{
  font-style:italic !important; }

.text-white{
  color:#fff !important; }

.text-primary{
  color:#33aebd; }

a.text-primary:hover{
  color:#288995; }

.text-secondary{
  color:#6c757d; }

a.text-secondary:hover{
  color:#545b62; }

.text-success{
  color:#57bf6d; }

a.text-success:hover{
  color:#3fa454; }

.text-info{
  color:#01a3d4; }

a.text-info:hover{
  color:#017ca1; }

.text-warning{
  color:#e9c931; }

a.text-warning:hover{
  color:#d1b016; }

.text-danger{
  color:#e42234; }

a.text-danger:hover{
  color:#bc1726; }

.text-light{
  color:#f8f9fa; }

a.text-light:hover{
  color:#dae0e5; }

.text-dark{
  color:#121b1f; }

a.text-dark:hover{
  color:#000; }

.text-muted{
  color:#868686 !important; }

.text-hide{
  font:0/0 a;
  color:transparent;
  text-shadow:none;
  background-color:transparent;
  border:0; }
.time_circles{
    position:relative;
    width:100%;
    height:100%;
}
.time_circles>div{
    position:absolute;
    text-align:center;
}
.time_circles>div>h4{
    margin:0;
    padding:0;
    text-transform:uppercase;
}
.time_circles>div>h4,.time_circles>div>span{
    text-align:center;
    font-family:Roboto,Arial;
}
.time_circles>div>span{
    display:block;
    width:100%;
    font-size:300%;
    margin-top:.4em;
    font-weight:700;
}
.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{display:block;padding:0}.mm-menu,.mm-panels,.mm-panels>.mm-panel{box-sizing:border-box;background:inherit;margin:0;position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-panels,.mm-panels>.mm-panel{border-color:inherit}.mm-panels{overflow:hidden}.mm-panel{-webkit-transform:translate(100%);transform:translate(100%);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;-webkit-transform-origin:top left;transform-origin:top left}.mm-panel.mm-opened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-panel.mm-subopened{-webkit-transform:translate(-30%);transform:translate(-30%);-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-panel.mm-highest{z-index:1}.mm-panel.mm-noanimation{-webkit-transition:none!important;transition:none!important}.mm-panel.mm-noanimation.mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-panels>.mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;padding:0 20px}.mm-panels>.mm-panel.mm-hasnavbar{padding-top:40px}.mm-panels>.mm-panel:not(.mm-hidden){display:block}.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before{content:"";display:block;height:20px}.mm-vertical .mm-panel{-webkit-transform:none!important;transform:none!important}.mm-listview .mm-vertical .mm-panel,.mm-vertical .mm-listview .mm-panel{display:none;padding:10px 0 10px 10px}.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after{border-color:transparent}.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel{display:block}.mm-listview>li.mm-vertical>.mm-next,.mm-vertical .mm-listview>li>.mm-next{box-sizing:border-box;height:40px;bottom:auto}.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,.mm-vertical .mm-listview>li.mm-opened>.mm-next:after{-webkit-transform:rotate(225deg);transform:rotate(225deg);right:19px}.mm-btn{box-sizing:border-box;width:40px;height:40px;position:absolute;top:0;z-index:1}.mm-clear:after,.mm-clear:before,.mm-close:after,.mm-close:before{content:"";border:2px solid transparent;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-clear:before,.mm-close:before{border-right:none;border-bottom:none;right:18px}.mm-clear:after,.mm-close:after{border-left:none;border-top:none;right:25px}.mm-next:after,.mm-prev:before{content:"";border-top:2px solid transparent;border-left:2px solid transparent;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}.mm-prev:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-next:after{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}.mm-navbar{border-bottom:1px solid;border-color:inherit;text-align:center;line-height:20px;height:40px;padding:0 40px;margin:0;position:absolute;top:0;left:0;right:0}.mm-navbar>*{display:block;padding:10px 0}.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-navbar .mm-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-navbar .mm-btn:first-child{left:0}.mm-navbar .mm-btn:last-child{text-align:right;right:0}.mm-panel .mm-navbar{display:none}.mm-panel.mm-hasnavbar .mm-navbar{display:block}.mm-listview,.mm-listview>li{list-style:none;display:block;padding:0;margin:0}.mm-listview{font:inherit;font-size:14px;line-height:20px}.mm-listview a,.mm-listview a:hover{text-decoration:none}.mm-listview>li{position:relative}.mm-listview>li,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before,.mm-listview>li:after{border-color:inherit}.mm-listview>li>a,.mm-listview>li>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:inherit;display:block;padding:10px 10px 10px 20px;margin:0}.mm-listview>li:not(.mm-divider):after{content:"";border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:0;right:0;bottom:0;left:20px}.mm-listview .mm-next{background:rgba(3,2,1,0);width:50px;padding:0;position:absolute;right:0;top:0;bottom:0;z-index:2}.mm-listview .mm-next:before{content:"";border-left-width:1px;border-left-style:solid;display:block;position:absolute;top:0;bottom:0;left:0}.mm-listview .mm-next+a,.mm-listview .mm-next+span{margin-right:50px}.mm-listview .mm-next.mm-fullsubopen{width:100%}.mm-listview .mm-next.mm-fullsubopen:before{border-left:none}.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span{padding-right:50px;margin-right:0}.mm-panels>.mm-panel>.mm-listview{margin:20px -20px}.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}.mm-menu{background:#f3f3f3;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.75)}.mm-menu .mm-navbar>*,.mm-menu .mm-navbar a{color:rgba(0,0,0,.3)}.mm-menu .mm-btn:after,.mm-menu .mm-btn:before{border-color:rgba(0,0,0,.3)}.mm-menu .mm-listview{border-color:rgba(0,0,0,.1)}.mm-menu .mm-listview>li .mm-next:after{border-color:rgba(0,0,0,.3)}.mm-menu .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(255,255,255,.5);tap-highlight-color:hsla(0,0%,100%,.5)}.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span{background:hsla(0,0%,100%,.5)}.mm-menu .mm-divider,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:rgba(0,0,0,.05)}
.mm-page{box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}html.mm-opened{overflow-x:hidden;position:relative}html.mm-blocking,html.mm-blocking body{overflow:hidden}html.mm-background .mm-page{background:inherit}#mm-blocker{background:rgba(3,2,1,0);display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}html.mm-blocking #mm-blocker{display:block}.mm-menu.mm-offcanvas{z-index:0;display:none;position:fixed}.mm-menu.mm-offcanvas.mm-opened{display:block}.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened{z-index:10}.mm-menu.mm-offcanvas{width:80%;min-width:140px;max-width:440px}html.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:550px){html.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(440px);transform:translate(440px);-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}
.mm-menu.mm-border-none .mm-listview>li:after,.mm-menu .mm-listview.mm-border-none>li:after,.mm-menu .mm-listview>li.mm-border-none:after{content:none}.mm-menu.mm-border-full .mm-listview>li:after,.mm-menu .mm-listview.mm-border-full>li:after,.mm-menu .mm-listview>li.mm-border-full:after{left:0!important}.mm-menu.mm-border-offset .mm-listview>li:after,.mm-menu .mm-listview.mm-border-offset>li:after,.mm-menu .mm-listview>li.mm-border-offset:after{right:20px}
.mm-menu.mm-offcanvas.mm-fullscreen{width:100%;min-width:140px;max-width:10000px}html.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(100%);transform:translate(100%);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}@media all and (max-width:140px){html.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:10000px){html.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(10000px);transform:translate(10000px);-webkit-transform:translate3d(10000px,0,0);transform:translate3d(10000px,0,0)}}html.mm-right.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(-100%);transform:translate(-100%);-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}@media all and (max-width:140px){html.mm-right.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:10000px){html.mm-right.mm-opening .mm-menu.mm-fullscreen~.mm-slideout{-webkit-transform:translate(-10000px);transform:translate(-10000px);-webkit-transform:translate3d(-10000px,0,0);transform:translate3d(-10000px,0,0)}}.mm-menu.mm-offcanvas.mm-fullscreen.mm-bottom,.mm-menu.mm-offcanvas.mm-fullscreen.mm-top{height:100%;min-height:140px;max-height:10000px}
.mm-menu.mm-fx-menu-zoom{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}html.mm-opened .mm-menu.mm-fx-menu-zoom{-webkit-transform:scale(.7) translate3d(-30%,0,0);transform:scale(.7) translate3d(-30%,0,0);-webkit-transform-origin:left center;transform-origin:left center}html.mm-opening .mm-menu.mm-fx-menu-zoom{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}html.mm-right.mm-opened .mm-menu.mm-fx-menu-zoom{-webkit-transform:scale(.7) translate3d(30%,0,0);transform:scale(.7) translate3d(30%,0,0);-webkit-transform-origin:right center;transform-origin:right center}html.mm-right.mm-opening .mm-menu.mm-fx-menu-zoom{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}.mm-menu.mm-fx-menu-slide{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}html.mm-opened .mm-menu.mm-fx-menu-slide{-webkit-transform:translate(-30%);transform:translate(-30%);-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}html.mm-opening .mm-menu.mm-fx-menu-slide{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}html.mm-right.mm-opened .mm-menu.mm-fx-menu-slide{-webkit-transform:translate(30%);transform:translate(30%);-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}html.mm-right.mm-opening .mm-menu.mm-fx-menu-slide{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu.mm-fx-menu-fade{opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}html.mm-opening .mm-menu.mm-fx-menu-fade{opacity:1}.mm-menu .mm-fx-panels-none.mm-panel,.mm-menu.mm-fx-panels-none .mm-panel{-webkit-transition-property:none;transition-property:none}.mm-menu .mm-fx-panels-none.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-none .mm-panel.mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu .mm-fx-panels-zoom.mm-panel,.mm-menu.mm-fx-panels-zoom .mm-panel{-webkit-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1.5) translate3d(100%,0,0);transform:scale(1.5) translate3d(100%,0,0)}.mm-menu .mm-fx-panels-zoom.mm-panel.mm-opened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-opened{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}.mm-menu .mm-fx-panels-zoom.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-zoom .mm-panel.mm-subopened{-webkit-transform:scale(.7) translate3d(-30%,0,0);transform:scale(.7) translate3d(-30%,0,0)}.mm-menu.mm-fx-panels-slide-0 .mm-panel.mm-subopened,.mm-menu .mm-fx-panels-slide-0.mm-panel.mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu.mm-fx-panels-slide-100 .mm-panel.mm-subopened,.mm-menu .mm-fx-panels-slide-100.mm-panel.mm-subopened{-webkit-transform:translate(-100%);transform:translate(-100%);-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu .mm-fx-panels-slide-up.mm-panel,.mm-menu.mm-fx-panels-slide-up .mm-panel{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-opened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-opened,.mm-menu .mm-fx-panels-slide-up.mm-panel.mm-subopened,.mm-menu.mm-fx-panels-slide-up .mm-panel.mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li{-webkit-transition:none .4s ease;transition:none .4s ease}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:first-child{-webkit-transition-delay:50ms;transition-delay:50ms}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(2){-webkit-transition-delay:.1s;transition-delay:.1s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(3){-webkit-transition-delay:.15s;transition-delay:.15s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(4){-webkit-transition-delay:.2s;transition-delay:.2s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(5){-webkit-transition-delay:.25s;transition-delay:.25s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(6){-webkit-transition-delay:.3s;transition-delay:.3s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(7){-webkit-transition-delay:.35s;transition-delay:.35s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(8){-webkit-transition-delay:.4s;transition-delay:.4s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(9){-webkit-transition-delay:.45s;transition-delay:.45s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(10){-webkit-transition-delay:.5s;transition-delay:.5s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(11){-webkit-transition-delay:.55s;transition-delay:.55s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(12){-webkit-transition-delay:.6s;transition-delay:.6s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(13){-webkit-transition-delay:.65s;transition-delay:.65s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(14){-webkit-transition-delay:.7s;transition-delay:.7s}.mm-menu[class*=mm-fx-listitems-] .mm-listview>li:nth-child(15){-webkit-transition-delay:.75s;transition-delay:.75s}.mm-menu.mm-fx-listitems-slide .mm-listview>li{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:translate(50%);transform:translate(50%);-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0);opacity:0}html.mm-opening .mm-menu.mm-fx-listitems-slide .mm-panel.mm-opened .mm-listview>li{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.mm-menu.mm-fx-listitems-fade .mm-listview>li{-webkit-transition-property:opacity;transition-property:opacity;opacity:0}html.mm-opening .mm-menu.mm-fx-listitems-fade .mm-panel.mm-opened .mm-listview>li{opacity:1}.mm-menu.mm-fx-listitems-drop .mm-listview>li{-webkit-transition-property:opacity,top;transition-property:opacity,top;opacity:0;top:-25%}html.mm-opening .mm-menu.mm-fx-listitems-drop .mm-panel.mm-opened .mm-listview>li{opacity:1;top:0}
html.mm-iconbar body{overflow-x:hidden}html.mm-iconbar .mm-page{background:inherit;min-height:100vh}html.mm-iconbar .mm-slideout{box-sizing:border-box;padding-right:60px;-webkit-transform:translate(60px);transform:translate(60px);-webkit-transform:translate3d(60px,0,0);transform:translate3d(60px,0,0)}.mm-menu.mm-iconbar{display:block}
.mm-menu.mm-listview-justify .mm-panels>.mm-panel:after,.mm-menu.mm-listview-justify .mm-panels>.mm-panel:before,.mm-menu .mm-panels>.mm-panel.mm-listview-justify:after,.mm-menu .mm-panels>.mm-panel.mm-listview-justify:before{content:none;display:none}.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview,.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;margin-top:0;margin-bottom:0}.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li,.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:40px}.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider),.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li:not(.mm-divider){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>a:not(.mm-next),.mm-menu.mm-listview-justify .mm-panels>.mm-panel>.mm-listview>li>span,.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>a:not(.mm-next),.mm-menu .mm-panels>.mm-panel.mm-listview-justify>.mm-listview>li>span{box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mm-listview-small .mm-listview>li>a:not(.mm-next),.mm-listview-small .mm-listview>li>span{padding:7px 10px 7px 20px}.mm-listview-small .mm-listview>li.mm-vertical>.mm-next,.mm-listview-small .mm-vertical>.mm-listview>li>.mm-next{height:34px}.mm-listview-large .mm-listview>li>a:not(.mm-next),.mm-listview-large .mm-listview>li>span{padding:15px 10px 15px 20px}.mm-listview-large .mm-listview>li.mm-vertical>.mm-next,.mm-listview-large .mm-vertical>.mm-listview>li>.mm-next{height:50px}.mm-listview-huge .mm-listview>li>a:not(.mm-next),.mm-listview-huge .mm-listview>li>span{padding:20px 10px 20px 20px}.mm-listview-huge .mm-listview>li.mm-vertical>.mm-next,.mm-listview-huge .mm-vertical>.mm-listview>li>.mm-next{height:60px}.mm-listview .mm-divider{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:10px;text-transform:uppercase;text-indent:20px;line-height:25px}.mm-listview .mm-spacer{padding-top:40px}.mm-listview .mm-spacer>.mm-next{top:40px}.mm-listview .mm-spacer.mm-divider{padding-top:25px}.mm-listview .mm-inset{list-style:inside disc;padding:0 10px 15px 40px;margin:0}.mm-listview .mm-inset>li{padding:5px 0}
.mm-menu .mm-listview.mm-multiline>li>a,.mm-menu .mm-listview.mm-multiline>li>span,.mm-menu .mm-listview>li.mm-multiline>a,.mm-menu .mm-listview>li.mm-multiline>span,.mm-menu.mm-multiline .mm-listview>li>a,.mm-menu.mm-multiline .mm-listview>li>span{text-overflow:clip;white-space:normal}
.mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker{opacity:0}html.mm-opening .mm-menu.mm-opened[class*=mm-pagedim]~#mm-blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}.mm-menu.mm-opened.mm-pagedim~#mm-blocker{background:inherit}.mm-menu.mm-opened.mm-pagedim-white~#mm-blocker{background:#fff}.mm-menu.mm-opened.mm-pagedim-black~#mm-blocker{background:#000}
.mm-menu.mm-popup{-webkit-transition:opacity .4s ease;transition:opacity .4s ease;opacity:0;box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;min-height:140px;max-height:880px;top:50%;left:50%;bottom:auto;right:auto;z-index:2;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.mm-menu.mm-popup.mm-opened~.mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}.mm-menu.mm-popup.mm-opened~#mm-blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}html.mm-opening .mm-menu.mm-popup{opacity:1}
.mm-menu.mm-offcanvas.mm-right{left:auto}html.mm-right.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:550px){html.mm-right.mm-opening .mm-menu~.mm-slideout{-webkit-transform:translate(-440px);transform:translate(-440px);-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}html.mm-front .mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}html.mm-front #mm-blocker{z-index:1}html.mm-front .mm-menu.mm-offcanvas{z-index:2}.mm-menu.mm-offcanvas.mm-front,.mm-menu.mm-offcanvas.mm-next{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;-webkit-transform:translate(-100%);transform:translate(-100%);-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu.mm-offcanvas.mm-front.mm-right,.mm-menu.mm-offcanvas.mm-next.mm-right{-webkit-transform:translate(100%);transform:translate(100%);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu.mm-offcanvas.mm-top{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.mm-menu.mm-offcanvas.mm-bottom{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top{width:100%;min-width:100%;max-width:100%}.mm-menu.mm-offcanvas.mm-bottom{top:auto}html.mm-opening .mm-menu.mm-offcanvas.mm-front,html.mm-opening .mm-menu.mm-offcanvas.mm-next{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top{height:80%;min-height:140px;max-height:880px}
.mm-menu.mm-shadow-page:after{content:"";display:block;width:20px;height:120%;position:absolute;left:100%;top:-10%;z-index:100}.mm-menu.mm-shadow-page.mm-right:after{left:auto;right:100%}.mm-menu.mm-shadow-page.mm-front:after,.mm-menu.mm-shadow-page.mm-next:after{content:none;display:none}.mm-menu.mm-shadow-page:after,.mm-menu.mm-shadow-panels .mm-panel.mm-opened:nth-child(n+2){box-shadow:0 0 10px rgba(0,0,0,.3)}
.mm-menu.mm-theme-dark{background:#333;border-color:rgba(0,0,0,.15);color:hsla(0,0%,100%,.8)}.mm-menu.mm-theme-dark .mm-navbar>*,.mm-menu.mm-theme-dark .mm-navbar a{color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-dark .mm-btn:after,.mm-menu.mm-theme-dark .mm-btn:before{border-color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-dark .mm-listview{border-color:rgba(0,0,0,.15)}.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after{border-color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-dark .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(0,0,0,.1);tap-highlight-color:rgba(0,0,0,.1)}.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span{background:rgba(0,0,0,.1)}.mm-menu.mm-theme-dark .mm-divider,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:hsla(0,0%,100%,.05)}.mm-menu.mm-theme-dark label.mm-check:before{border-color:hsla(0,0%,100%,.8)}.mm-menu.mm-theme-dark em.mm-counter{color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-dark .mm-fixeddivider span{background:hsla(0,0%,100%,.05)}.mm-menu.mm-keyboardfocus a:focus{background:rgba(0,0,0,.1)}.mm-menu.mm-shadow-page.mm-theme-dark:after,.mm-menu.mm-shadow-panels.mm-theme-dark .mm-panel.mm-opened:nth-child(n+2){box-shadow:0 0 20px rgba(0,0,0,.5)}.mm-menu.mm-theme-dark .mm-search input{background:hsla(0,0%,100%,.3);color:hsla(0,0%,100%,.8)}.mm-menu.mm-theme-dark .mm-indexer a,.mm-menu.mm-theme-dark .mm-noresultsmsg{color:hsla(0,0%,100%,.4)}.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected:not(.mm-fullsubopen){background:rgba(0,0,0,.1)}.mm-menu.mm-theme-dark label.mm-toggle{background:rgba(0,0,0,.15)}.mm-menu.mm-theme-dark label.mm-toggle:before{background:#333}.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle{background:#4bd963}.mm-menu.mm-theme-white{background:#fff;border-color:rgba(0,0,0,.1);color:rgba(0,0,0,.6)}.mm-menu.mm-theme-white .mm-navbar>*,.mm-menu.mm-theme-white .mm-navbar a{color:rgba(0,0,0,.3)}.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before{border-color:rgba(0,0,0,.3)}.mm-menu.mm-theme-white .mm-listview{border-color:rgba(0,0,0,.1)}.mm-menu.mm-theme-white .mm-listview>li .mm-next:after{border-color:rgba(0,0,0,.3)}.mm-menu.mm-theme-white .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(0,0,0,.05);tap-highlight-color:rgba(0,0,0,.05)}.mm-menu.mm-theme-white .mm-divider,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:rgba(0,0,0,.05)}.mm-menu.mm-theme-white label.mm-check:before{border-color:rgba(0,0,0,.6)}.mm-menu.mm-theme-white em.mm-counter{color:rgba(0,0,0,.3)}.mm-menu.mm-keyboardfocus a:focus,.mm-menu.mm-theme-white .mm-fixeddivider span{background:rgba(0,0,0,.05)}.mm-menu.mm-shadow-page.mm-theme-white:after,.mm-menu.mm-shadow-panels.mm-theme-white .mm-panel.mm-opened:nth-child(n+2){box-shadow:0 0 10px rgba(0,0,0,.2)}.mm-menu.mm-theme-white .mm-search input{background:rgba(0,0,0,.05);color:rgba(0,0,0,.6)}.mm-menu.mm-theme-white .mm-indexer a,.mm-menu.mm-theme-white .mm-noresultsmsg{color:rgba(0,0,0,.3)}.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected:not(.mm-fullsubopen){background:rgba(0,0,0,.05)}.mm-menu.mm-theme-white label.mm-toggle{background:rgba(0,0,0,.1)}.mm-menu.mm-theme-white label.mm-toggle:before{background:#fff}.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle{background:#4bd963}.mm-menu.mm-theme-black{background:#000;border-color:hsla(0,0%,100%,.2);color:hsla(0,0%,100%,.6)}.mm-menu.mm-theme-black .mm-navbar>*,.mm-menu.mm-theme-black .mm-navbar a{color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-black .mm-btn:after,.mm-menu.mm-theme-black .mm-btn:before{border-color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-black .mm-listview{border-color:hsla(0,0%,100%,.2)}.mm-menu.mm-theme-black .mm-listview>li .mm-next:after{border-color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-black .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(255,255,255,.3);tap-highlight-color:hsla(0,0%,100%,.3)}.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span{background:hsla(0,0%,100%,.3)}.mm-menu.mm-theme-black .mm-divider,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:hsla(0,0%,100%,.2)}.mm-menu.mm-theme-black label.mm-check:before{border-color:hsla(0,0%,100%,.6)}.mm-menu.mm-theme-black em.mm-counter{color:hsla(0,0%,100%,.4)}.mm-menu.mm-theme-black .mm-fixeddivider span{background:hsla(0,0%,100%,.2)}.mm-menu.mm-keyboardfocus a:focus{background:hsla(0,0%,100%,.3)}.mm-menu.mm-shadow-page.mm-theme-black:after{content:none;display:none}.mm-menu.mm-shadow-panels.mm-theme-black .mm-panel.mm-opened:nth-child(n+2){box-shadow:false}.mm-menu.mm-theme-black .mm-search input{background:hsla(0,0%,100%,.3);color:hsla(0,0%,100%,.6)}.mm-menu.mm-theme-black .mm-indexer a,.mm-menu.mm-theme-black .mm-noresultsmsg{color:hsla(0,0%,100%,.4)}.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected:not(.mm-fullsubopen){background:hsla(0,0%,100%,.3)}.mm-menu.mm-theme-black label.mm-toggle{background:hsla(0,0%,100%,.2)}.mm-menu.mm-theme-black label.mm-toggle:before{background:#000}.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle{background:#4bd963}
.mm-menu .mm-tileview.mm-listview:after,.mm-menu.mm-tileview .mm-listview:after{content:"";display:block;clear:both}.mm-menu .mm-tileview.mm-listview>li,.mm-menu.mm-tileview .mm-listview>li{width:50%;height:0;padding:50% 0 0;float:left;position:relative}.mm-menu .mm-tileview.mm-listview>li:after,.mm-menu.mm-tileview .mm-listview>li:after{left:0;top:0;border-right-width:1px;border-right-style:solid;z-index:-1}.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs{width:12.5%;padding-top:12.5%}.mm-menu .mm-tileview.mm-listview>li.mm-tile-s,.mm-menu.mm-tileview .mm-listview>li.mm-tile-s{width:25%;padding-top:25%}.mm-menu .mm-tileview.mm-listview>li.mm-tile-l,.mm-menu.mm-tileview .mm-listview>li.mm-tile-l{width:75%;padding-top:75%}.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl{width:100%;padding-top:100%}.mm-menu .mm-tileview.mm-listview>li>a,.mm-menu.mm-tileview .mm-listview>li>a,.mm-menu .mm-tileview.mm-listview>li>span,.mm-menu.mm-tileview .mm-listview>li>span{line-height:1px;text-align:center;padding:50% 10px 0;margin:0;position:absolute;top:0;right:1px;bottom:1px;left:0}.mm-menu .mm-tileview.mm-listview>li>.mm-next,.mm-menu.mm-tileview .mm-listview>li>.mm-next{width:auto}.mm-menu .mm-tileview.mm-listview>li>.mm-next:after,.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-listview>li>.mm-next:before{content:none;display:none}.mm-menu.mm-tileview .mm-panel{padding-left:0;padding-right:0}.mm-menu.mm-tileview .mm-panel:after{content:none;display:none}.mm-menu.mm-tileview .mm-listview{margin:0}
html.mm-widescreen body{position:relative}html.mm-widescreen #mm-blocker{display:none!important}html.mm-widescreen .mm-slideout{-webkit-transform:none!important;transform:none!important;width:70%!important;margin-left:30%!important}html.mm-widescreen .mm-page{background:inherit;box-sizing:border-box}html.mm-widescreen.mm-blocking,html.mm-widescreen.mm-blocking body{overflow:auto}.mm-menu.mm-widescreen{border-right-width:1px;border-right-style:solid;display:block!important;width:30%!important;min-width:0!important;max-width:none!important;top:0!important;right:auto!important;bottom:0!important;left:0!important;z-index:100!important;-webkit-transform:none!important;transform:none!important}.mm-menu.mm-widescreen.mm-pageshadow:after{content:none;display:none}
.mm-menu.mm-autoheight{-webkit-transition:none .4s ease;transition:none .4s ease;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.mm-menu.mm-autoheight:not(.mm-offcanvas){position:relative}.mm-menu.mm-measureheight .mm-panel{display:block!important}.mm-menu.mm-measureheight .mm-panels>.mm-panel{bottom:auto!important;height:auto!important}
.mm-columns{-webkit-transition-property:width;transition-property:width}.mm-columns .mm-panels>.mm-panel{right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-columns .mm-panels>.mm-panel.mm-opened,.mm-columns .mm-panels>.mm-panel.mm-subopened{border-left:1px solid;border-color:inherit;display:block!important}.mm-columns .mm-panels>.mm-columns-0{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-columns-0 .mm-panels>.mm-panel{z-index:0}.mm-columns-0 .mm-panels>.mm-panel else{width:100%}.mm-columns-0 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened){-webkit-transform:translate(100%);transform:translate(100%);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu.mm-offcanvas.mm-columns-0{width:80%;min-width:140px;max-width:0}html.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:0px){html.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}}html.mm-right.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:0px){html.mm-right.mm-opening .mm-menu.mm-columns-0~.mm-slideout{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}}.mm-columns .mm-panels>.mm-columns-1{-webkit-transform:translate(100%);transform:translate(100%);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-columns-1 .mm-panels>.mm-panel{z-index:1;width:100%}.mm-columns-1 .mm-panels>.mm-panel else{width:100%}.mm-columns-1 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened){-webkit-transform:translate(200%);transform:translate(200%);-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-menu.mm-offcanvas.mm-columns-1{width:80%;min-width:140px;max-width:440px}html.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:550px){html.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(440px);transform:translate(440px);-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}html.mm-right.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:550px){html.mm-right.mm-opening .mm-menu.mm-columns-1~.mm-slideout{-webkit-transform:translate(-440px);transform:translate(-440px);-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-columns .mm-panels>.mm-columns-2{-webkit-transform:translate(200%);transform:translate(200%);-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-columns-2 .mm-panels>.mm-panel{z-index:2;width:50%}.mm-columns-2 .mm-panels>.mm-panel else{width:100%}.mm-columns-2 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened){-webkit-transform:translate(300%);transform:translate(300%);-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-menu.mm-offcanvas.mm-columns-2{width:80%;min-width:140px;max-width:880px}html.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:1100px){html.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(880px);transform:translate(880px);-webkit-transform:translate3d(880px,0,0);transform:translate3d(880px,0,0)}}html.mm-right.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:1100px){html.mm-right.mm-opening .mm-menu.mm-columns-2~.mm-slideout{-webkit-transform:translate(-880px);transform:translate(-880px);-webkit-transform:translate3d(-880px,0,0);transform:translate3d(-880px,0,0)}}.mm-columns .mm-panels>.mm-columns-3{-webkit-transform:translate(300%);transform:translate(300%);-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-columns-3 .mm-panels>.mm-panel{z-index:3;width:33.34%}.mm-columns-3 .mm-panels>.mm-panel else{width:100%}.mm-columns-3 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened){-webkit-transform:translate(400%);transform:translate(400%);-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-menu.mm-offcanvas.mm-columns-3{width:80%;min-width:140px;max-width:1320px}html.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:1650px){html.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(1320px);transform:translate(1320px);-webkit-transform:translate3d(1320px,0,0);transform:translate3d(1320px,0,0)}}html.mm-right.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:1650px){html.mm-right.mm-opening .mm-menu.mm-columns-3~.mm-slideout{-webkit-transform:translate(-1320px);transform:translate(-1320px);-webkit-transform:translate3d(-1320px,0,0);transform:translate3d(-1320px,0,0)}}.mm-columns .mm-panels>.mm-columns-4{-webkit-transform:translate(400%);transform:translate(400%);-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-columns-4 .mm-panels>.mm-panel{z-index:4;width:25%}.mm-columns-4 .mm-panels>.mm-panel else{width:100%}.mm-columns-4 .mm-panels>.mm-panel:not(.mm-opened):not(.mm-subopened){-webkit-transform:translate(500%);transform:translate(500%);-webkit-transform:translate3d(500%,0,0);transform:translate3d(500%,0,0)}.mm-menu.mm-offcanvas.mm-columns-4{width:80%;min-width:140px;max-width:1760px}html.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(80%);transform:translate(80%);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(140px);transform:translate(140px);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:2200px){html.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(1760px);transform:translate(1760px);-webkit-transform:translate3d(1760px,0,0);transform:translate3d(1760px,0,0)}}html.mm-right.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(-80%);transform:translate(-80%);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(-140px);transform:translate(-140px);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:2200px){html.mm-right.mm-opening .mm-menu.mm-columns-4~.mm-slideout{-webkit-transform:translate(-1760px);transform:translate(-1760px);-webkit-transform:translate3d(-1760px,0,0);transform:translate3d(-1760px,0,0)}}.mm-columns.mm-offcanvas.mm-bottom,.mm-columns.mm-offcanvas.mm-top{width:100%;max-width:100%;min-width:100%}html.mm-opening .mm-columns.mm-offcanvas.mm-front,html.mm-opening .mm-columns.mm-offcanvas.mm-next{-webkit-transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform,-webkit-transform}
em.mm-counter{font:inherit;font-size:14px;font-style:normal;text-indent:0;line-height:20px;display:block;margin-top:-10px;position:absolute;right:45px;top:50%}em.mm-counter+a.mm-next{width:90px}em.mm-counter+a.mm-next+a,em.mm-counter+a.mm-next+span{margin-right:90px}em.mm-counter+a.mm-fullsubopen{padding-left:0}.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span,em.mm-counter+a.mm-fullsubopen+a,em.mm-counter+a.mm-fullsubopen+span{padding-right:90px}.mm-vertical>.mm-counter{top:12px;margin-top:0}.mm-vertical.mm-spacer>.mm-counter{margin-top:40px}.mm-nosubresults>.mm-counter{display:none}.mm-menu em.mm-counter{color:rgba(0,0,0,.3)}
.mm-divider>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0;line-height:25px}.mm-divider.mm-opened a.mm-next:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mm-collapsed:not(.mm-uncollapsed){display:none}.mm-fixeddivider{background:inherit;display:none;position:absolute;top:0;left:0;right:0;z-index:10;-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-fixeddivider:after{content:none!important;display:none!important}.mm-hasdividers .mm-fixeddivider{display:block}.mm-menu .mm-fixeddivider span{background:rgba(0,0,0,.05)}
html.mm-opened.mm-dragging .mm-menu,html.mm-opened.mm-dragging .mm-slideout{-webkit-transition-duration:0s;transition-duration:0s}
.mm-menu.mm-dropdown{box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%}html.mm-dropdown .mm-slideout{-webkit-transform:none!important;transform:none!important;z-index:0}html.mm-dropdown #mm-blocker{-webkit-transition-delay:0s!important;transition-delay:0s!important;z-index:1}html.mm-dropdown .mm-menu{z-index:2}html.mm-dropdown.mm-opened:not(.mm-opening) .mm-menu{display:none}.mm-menu.mm-tip:before{content:"";background:inherit;box-shadow:0 2px 10px rgba(0,0,0,.3);display:block;width:15px;height:15px;position:absolute;z-index:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mm-menu.mm-tipleft:before{left:22px}.mm-menu.mm-tipright:before{right:22px}.mm-menu.mm-tiptop:before{top:-8px}.mm-menu.mm-tipbottom:before{bottom:-8px}
.mm-iconpanel .mm-panels>.mm-panel{-webkit-transition-property:left,-webkit-transform;transition-property:left,-webkit-transform;transition-property:transform,left;transition-property:transform,left,-webkit-transform}.mm-iconpanel .mm-panels>.mm-panel.mm-opened,.mm-iconpanel .mm-panels>.mm-panel.mm-subopened{border-left:1px solid;border-color:inherit;display:block!important}.mm-iconpanel .mm-panels>.mm-panel.mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-iconpanel .mm-panel.mm-iconpanel-0{left:0}.mm-iconpanel .mm-panel.mm-iconpanel-1{left:40px}.mm-iconpanel .mm-panel.mm-iconpanel-2{left:80px}.mm-iconpanel .mm-panel.mm-iconpanel-3{left:120px}.mm-iconpanel .mm-panel.mm-iconpanel-4{left:160px}.mm-iconpanel .mm-panel.mm-iconpanel-5{left:200px}.mm-iconpanel .mm-panel.mm-iconpanel-6{left:240px}.mm-subblocker{background:inherit;opacity:0;display:block;max-height:100%;position:absolute;top:0;right:0;left:0;z-index:3;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}.mm-subopened .mm-subblocker{opacity:.6;bottom:-100000px}
.mm-keyboardfocus a:focus{outline:0}.mm-menu.mm-keyboardfocus a:focus{background:hsla(0,0%,100%,.5)}
.mm-navbars-bottom,.mm-navbars-top{background:inherit;border-color:inherit;border-width:0;overflow:hidden;position:absolute;left:0;right:0;z-index:3}.mm-navbars-bottom>.mm-navbar,.mm-navbars-top>.mm-navbar{border:none;padding:0;position:relative;-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-navbars-top{border-bottom-style:solid;border-bottom-width:1px;top:0}.mm-navbars-bottom{border-top-style:solid;border-top-width:1px;bottom:0}.mm-navbar.mm-hasbtns{padding:0 40px}.mm-navbar[class*=mm-navbar-content-]>*{box-sizing:border-box;display:block;float:left}.mm-navbar .mm-breadcrumbs{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;padding:0 0 0 17px}.mm-navbar .mm-breadcrumbs>*{display:inline-block;padding:10px 3px}.mm-navbar .mm-breadcrumbs>a{text-decoration:underline}.mm-navbar.mm-hasbtns .mm-breadcrumbs{margin-left:-40px}.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs{margin-left:0;padding-left:0}.mm-hasnavbar-top-1 .mm-panels{top:40px}.mm-hasnavbar-top-2 .mm-panels{top:80px}.mm-hasnavbar-top-3 .mm-panels{top:120px}.mm-hasnavbar-top-4 .mm-panels{top:160px}.mm-hasnavbar-bottom-1 .mm-panels{bottom:40px}.mm-hasnavbar-bottom-2 .mm-panels{bottom:80px}.mm-hasnavbar-bottom-3 .mm-panels{bottom:120px}.mm-hasnavbar-bottom-4 .mm-panels{bottom:160px}.mm-navbar-size-2{height:80px}.mm-navbar-size-3{height:120px}.mm-navbar-size-4{height:160px}.mm-navbar-content-2>*{width:50%}.mm-navbar-content-3>*{width:33.33%}.mm-navbar-content-4>*{width:25%}.mm-navbar-content-5>*{width:20%}.mm-navbar-content-6>*{width:16.67%}
.mm-menu.mm-rtl{direction:rtl}.mm-menu.mm-rtl.mm-offcanvas{right:auto}.mm-menu.mm-rtl .mm-panel:not(.mm-opened){-webkit-transform:translate(-100%);transform:translate(-100%);-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu.mm-rtl .mm-panel.mm-subopened{-webkit-transform:translate(30%);transform:translate(30%);-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-menu.mm-rtl .mm-navbar .mm-btn:first-child{left:auto;right:0}.mm-menu.mm-rtl .mm-navbar .mm-btn:last-child{right:auto;left:0}.mm-menu.mm-rtl .mm-navbar .mm-next:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-menu.mm-rtl .mm-navbar .mm-prev:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}.mm-menu.mm-rtl .mm-listview>li:not(.mm-divider):after{left:0;right:20px}.mm-menu.mm-rtl .mm-listview>li>a:not(.mm-next),.mm-menu.mm-rtl .mm-listview>li>span:not(.mm-next){padding-left:10px;padding-right:20px!important;margin-right:0!important}.mm-menu.mm-rtl .mm-listview .mm-next{right:auto;left:0}.mm-menu.mm-rtl .mm-listview .mm-next:before{left:auto;right:0}.mm-menu.mm-rtl .mm-listview .mm-next:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-menu.mm-rtl .mm-listview .mm-next+a,.mm-menu.mm-rtl .mm-listview .mm-next+span{margin-left:50px}.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview .mm-next.mm-fullsubopen+span{padding-left:50px}.mm-menu.mm-rtl em.mm-counter{left:45px;right:auto}.mm-menu.mm-rtl em.mm-counter+a.mm-next+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+span{margin-left:90px}.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+a,.mm-menu.mm-rtl .mm-listview em.mm-counter+.mm-fullsubopen+span{padding-left:90px}.mm-menu.mm-rtl label.mm-check,.mm-menu.mm-rtl label.mm-toggle{left:20px;right:auto!important}.mm-menu.mm-rtl label.mm-toggle+a,.mm-menu.mm-rtl label.mm-toggle+span{padding-left:80px}.mm-menu.mm-rtl label.mm-check+a,.mm-menu.mm-rtl label.mm-check+span{padding-left:60px}.mm-menu.mm-rtl a.mm-next+label.mm-check,.mm-menu.mm-rtl a.mm-next+label.mm-toggle{left:60px}.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span{margin-left:50px}.mm-menu.mm-rtl a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl a.mm-next+label.mm-toggle+span{padding-left:70px}.mm-menu.mm-rtl a.mm-next+label.mm-check+a,.mm-menu.mm-rtl a.mm-next+label.mm-check+span{padding-left:50px}.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle{left:100px}.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-check+span,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+a,.mm-menu.mm-rtl em.mm-counter+a.mm-next+label.mm-toggle+span{margin-left:90px}.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-]{left:0}.mm-menu.mm-rtl .mm-panel[class*=mm-iconpanel-].mm-subopened{-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-menu.mm-rtl.mm-iconpanel .mm-panel{-webkit-transition-property:right,-webkit-transform;transition-property:right,-webkit-transform;transition-property:transform,right;transition-property:transform,right,-webkit-transform}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-0{right:0}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-1{right:40px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-2{right:80px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-3{right:120px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-4{right:160px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-5{right:200px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-iconpanel-6{right:240px}.mm-menu.mm-rtl.mm-iconpanel .mm-panel.mm-opened{border-left:none;border-right:1px solid;border-color:inherit}
.mm-search,.mm-search input{box-sizing:border-box}.mm-search{height:40px;padding:7px 10px 0;position:relative}.mm-search input{border:none!important;outline:0!important;box-shadow:none!important;border-radius:4px;font:inherit;font-size:14px;line-height:26px;display:block;box-sizing:border-box;width:100%;height:26px;min-height:26px;max-height:26px;margin:0;padding:0 10px}.mm-search input::-ms-clear{display:none}.mm-search .mm-clear,.mm-search .mm-next{right:0}.mm-panel>.mm-search{width:100%;position:absolute;top:0;left:0}.mm-panel.mm-hassearch{padding-top:40px}.mm-panel.mm-hassearch.mm-hasnavbar{padding-top:80px}.mm-panel.mm-hassearch.mm-hasnavbar>.mm-search{top:40px}.mm-noresultsmsg{text-align:center;font-size:21px;padding:40px 0}.mm-noresults .mm-indexer{display:none!important}li.mm-nosubresults>a.mm-next{display:none}li.mm-nosubresults>a.mm-next+a,li.mm-nosubresults>a.mm-next+span{padding-right:10px}.mm-menu .mm-search input{background:rgba(0,0,0,.05);color:rgba(0,0,0,.75)}.mm-menu .mm-noresultsmsg{color:rgba(0,0,0,.3)}
.mm-indexer{background:inherit;text-align:center;font-size:12px;box-sizing:border-box;width:20px;position:absolute;top:0;bottom:0;right:-100px;z-index:15;-webkit-transition:right .4s ease;transition:right .4s ease;-webkit-transform:translate(0);transform:translate(0);-webkit-transform:translateZ(0);transform:translateZ(0)}.mm-indexer a{text-decoration:none;display:block;height:3.85%}.mm-indexer~.mm-panel.mm-hasindexer{padding-right:40px}.mm-hasindexer .mm-indexer{right:0}.mm-hasindexer .mm-fixeddivider{right:20px}.mm-menu .mm-indexer a{color:rgba(0,0,0,.3)}
.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen),.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a:not(.mm-fullsubopen){-webkit-transition:background .4s ease;transition:background .4s ease}.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected:not(.mm-fullsubopen){background:hsla(0,0%,100%,.5)}
input.mm-check,input.mm-toggle{position:absolute;left:-10000px}label.mm-check,label.mm-toggle{margin:0;position:absolute;top:50%;z-index:2}label.mm-check:before,label.mm-toggle:before{content:"";display:block}label.mm-toggle{border-radius:30px;width:50px;height:30px;margin-top:-15px}label.mm-toggle:before{border-radius:30px;width:28px;height:28px;margin:1px}input.mm-toggle:checked~label.mm-toggle:before{float:right}label.mm-check{width:30px;height:30px;margin-top:-15px}label.mm-check:before{border-left:3px solid;border-bottom:3px solid;width:40%;height:20%;margin:25% 0 0 20%;opacity:.1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}input.mm-check:checked~label.mm-check:before{opacity:1}li.mm-vertical label.mm-check,li.mm-vertical label.mm-toggle{bottom:auto;margin-top:0;top:5px}label.mm-check,label.mm-toggle{right:20px}label.mm-toggle+a,label.mm-toggle+span{padding-right:80px}label.mm-check+a,label.mm-check+span{padding-right:60px}a.mm-next+label.mm-check,a.mm-next+label.mm-toggle{right:60px}a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span,a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span{margin-right:50px}a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span{padding-right:70px}a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span{padding-right:50px}em.mm-counter+a.mm-next+label.mm-check,em.mm-counter+a.mm-next+label.mm-toggle{right:100px}em.mm-counter+a.mm-next+label.mm-check+a,em.mm-counter+a.mm-next+label.mm-check+span,em.mm-counter+a.mm-next+label.mm-toggle+a,em.mm-counter+a.mm-next+label.mm-toggle+span{margin-right:90px}.mm-menu label.mm-toggle{background:rgba(0,0,0,.1)}.mm-menu label.mm-toggle:before{background:#f3f3f3}.mm-menu input.mm-toggle:checked~label.mm-toggle{background:#4bd963}.mm-menu label.mm-check:before{border-color:rgba(0,0,0,.75)}.slick-slider{ box-sizing:border-box; -moz-box-sizing:border-box; -webkit-touch-callout:none; -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; -ms-touch-action:pan-y; touch-action:pan-y; -webkit-tap-highlight-color:transparent; }

.slick-list,.slick-slider{ position:relative; display:block; }

.slick-list{ overflow:hidden; margin:0; padding:0; }
.slick-list:focus{ outline:none; }
.slick-loading .slick-list{ background:#fff url(/wp-content/themes/vapier/css/slick/ajax-loader.gif) 50% no-repeat; }
.slick-list.dragging{ cursor:pointer; cursor:hand; }

.slick-slide,.slick-slide img,.slick-slider .slick-list,.slick-track{ -webkit-transform:translateZ(0); transform:translateZ(0); }

.slick-track{ position:relative; left:0; top:0; display:block; zoom:1; }
.slick-track:after,.slick-track:before{ content:""; display:table; }
.slick-track:after{ clear:both; }
.slick-loading .slick-track{ visibility:hidden; }

.slick-slide{ float:left; height:100%; min-height:1px; display:none; }
.slick-slide img{ display:block; }
.slick-slide.slick-loading img{ display:none; }
.slick-slide.dragging img{ pointer-events:none; }
.slick-initialized .slick-slide{ display:block; }
.slick-loading .slick-slide{ visibility:hidden; }
.slick-vertical .slick-slide{ display:block; height:auto; border:1px solid transparent; }
.slick-next,.slick-prev{ position:absolute; display:block; height:20px; width:20px; line-height:0; font-size:0; cursor:pointer; top:50%; margin-top:-10px; padding:0; border:none; }
.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover{ background:transparent; color:transparent; outline:none; }
.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{ opacity:1; }
.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{ opacity:.25; }

.slick-next:before,.slick-prev:before{ font-family:slick; font-size:20px; line-height:1; color:#fff; opacity:.75; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

.slick-prev{ left:-25px; }
.slick-prev:before{ content:"\2190"; }

.slick-next{ right:-25px; }
.slick-next:before{ content:"\2192"; }

.slick-dots{ position:absolute; bottom:-45px; list-style:none; display:block; text-align:center; padding:0; width:100%; }
.slick-dots li{ position:relative; display:inline-block; margin:0 5px; padding:0; }
.slick-dots li,.slick-dots li button{ height:20px; width:20px; cursor:pointer; }
.slick-dots li button{ border:0; background:transparent; display:block; outline:none; line-height:0; font-size:0; color:transparent; padding:5px; }
.slick-dots li button:focus,.slick-dots li button:hover{ outline:none; }
.slick-dots li button:focus:before,.slick-dots li button:hover:before{ opacity:1; }
.slick-dots li button:before{ position:absolute; top:0; left:0; content:"\2022"; width:20px; height:20px; font-family:slick; font-size:6px; line-height:20px; text-align:center; color:#000; opacity:.25; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
.slick-dots li.slick-active button:before{ color:#000; opacity:.75; }

[dir=rtl] .slick-next{right:auto;left:-25px;}
[dir=rtl] .slick-next:before{content:"\2190";}
[dir=rtl] .slick-prev{right:-25px;left:auto;}
[dir=rtl] .slick-prev:before{content:"\2192";}
[dir=rtl] .slick-slide{float:right;}.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}button.pswp__button{box-shadow:none!important;background-image:url(/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png)!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:0 -44px}button.pswp__button--zoom:hover{background-position:-88px 0}/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp{display:none;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;-ms-touch-action:none;touch-action:none;z-index:1500;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.admin-bar .pswp{height:calc(100% - 32px);top:32px}@media screen and (max-width:782px){.admin-bar .pswp{height:calc(100% - 46px);top:46px}}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--open{display:block}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__bg{position:absolute;left:0;top:0;width:100%;height:100%;background:#000;opacity:0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;will-change:opacity}.pswp__scroll-wrap{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;position:absolute;left:0;right:0;top:0;bottom:0}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4,0,.22,1);transition:transform 333ms cubic-bezier(.4,0,.22,1)}.pswp__bg{will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp__item{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.pswp__img{position:absolute;width:auto;height:auto;top:0;left:0}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{position:absolute;left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#ccc}.pswp__error-msg a{color:#ccc;text-decoration:underline}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*!
 *  Material Design Iconic Font by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/
 *  License - http://zavoloklom.github.io/material-design-iconic-font/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face{
  font-family:Material;
  src:url(/wp-content/themes/vapier/fonts/Material-Design-Iconic-Font.woff2?v=2.2.0) format("woff2"),url(/wp-content/themes/vapier/fonts/Material-Design-Iconic-Font.woff?v=2.2.0) format("woff"),url(/wp-content/themes/vapier/fonts/Material-Design-Iconic-Font.ttf?v=2.2.0) format("truetype");
  font-weight:400;
  font-style:normal;
}
.zmdi{
  display:inline-block;
  font:normal normal normal 14px/1 Material;
  font-size:inherit;
  text-rendering:auto;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.zmdi-hc-lg{
  font-size:1.33333333em;
  line-height:.75em;
  vertical-align:-15%;
}
.zmdi-hc-2x{
  font-size:2em;
}
.zmdi-hc-3x{
  font-size:3em;
}
.zmdi-hc-4x{
  font-size:4em;
}
.zmdi-hc-5x{
  font-size:5em;
}
.zmdi-hc-fw{
  width:1.28571429em;
  text-align:center;
}
.zmdi-hc-ul{
  padding-left:0;
  margin-left:2.14285714em;
  list-style-type:none;
}
.zmdi-hc-ul>li{
  position:relative;
}
.zmdi-hc-li{
  position:absolute;
  left:-2.14285714em;
  width:2.14285714em;
  top:.14285714em;
  text-align:center;
}
.zmdi-hc-li.zmdi-hc-lg{
  left:-1.85714286em;
}
.zmdi-hc-border{
  padding:.1em .25em;
  border:.1em solid #9e9e9e;
  border-radius:2px;
}
.zmdi-hc-border-circle{
  padding:.1em .25em;
  border:.1em solid #9e9e9e;
  border-radius:50%;
}
.zmdi.pull-left{
  float:left;
  margin-right:.15em;
}
.zmdi.pull-right{
  float:right;
  margin-left:.15em;
}
.zmdi-hc-spin{
  -webkit-animation:a 1.5s infinite linear;
          animation:a 1.5s infinite linear;
}
.zmdi-hc-spin-reverse{
  -webkit-animation:b 1.5s infinite linear;
          animation:b 1.5s infinite linear;
}
@-webkit-keyframes a{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
  }
  to{
    -webkit-transform:rotate(359deg);
            transform:rotate(359deg);
  }
}
@keyframes a{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
  }
  to{
    -webkit-transform:rotate(359deg);
            transform:rotate(359deg);
  }
}
@-webkit-keyframes b{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
  }
  to{
    -webkit-transform:rotate(-359deg);
            transform:rotate(-359deg);
  }
}
@keyframes b{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
  }
  to{
    -webkit-transform:rotate(-359deg);
            transform:rotate(-359deg);
  }
}
.zmdi-hc-rotate-90{
  -webkit-transform:rotate(90deg);
          transform:rotate(90deg);
}
.zmdi-hc-rotate-180{
  -webkit-transform:rotate(180deg);
          transform:rotate(180deg);
}
.zmdi-hc-rotate-270{
  -webkit-transform:rotate(270deg);
          transform:rotate(270deg);
}
.zmdi-hc-flip-horizontal{
  -webkit-transform:scaleX(-1);
          transform:scaleX(-1);
}
.zmdi-hc-flip-vertical{
  -webkit-transform:scaleY(-1);
          transform:scaleY(-1);
}
.zmdi-hc-stack{
  position:relative;
  display:inline-block;
  width:2em;
  height:2em;
  line-height:2em;
  vertical-align:middle;
}
.zmdi-hc-stack-1x,.zmdi-hc-stack-2x{
  position:absolute;
  left:0;
  width:100%;
  text-align:center;
}
.zmdi-hc-stack-1x{
  line-height:inherit;
}
.zmdi-hc-stack-2x{
  font-size:2em;
}
.zmdi-hc-inverse{
  color:#fff;
}
.zmdi-3d-rotation:before{
  content:"\f101";
}
.zmdi-airplane-off:before{
  content:"\f102";
}
.zmdi-airplane:before{
  content:"\f103";
}
.zmdi-album:before{
  content:"\f104";
}
.zmdi-archive:before{
  content:"\f105";
}
.zmdi-assignment-account:before{
  content:"\f106";
}
.zmdi-assignment-alert:before{
  content:"\f107";
}
.zmdi-assignment-check:before{
  content:"\f108";
}
.zmdi-assignment-o:before{
  content:"\f109";
}
.zmdi-assignment-return:before{
  content:"\f10a";
}
.zmdi-assignment-returned:before{
  content:"\f10b";
}
.zmdi-assignment:before{
  content:"\f10c";
}
.zmdi-attachment-alt:before{
  content:"\f10d";
}
.zmdi-attachment:before{
  content:"\f10e";
}
.zmdi-audio:before{
  content:"\f10f";
}
.zmdi-badge-check:before{
  content:"\f110";
}
.zmdi-balance-wallet:before{
  content:"\f111";
}
.zmdi-balance:before{
  content:"\f112";
}
.zmdi-battery-alert:before{
  content:"\f113";
}
.zmdi-battery-flash:before{
  content:"\f114";
}
.zmdi-battery-unknown:before{
  content:"\f115";
}
.zmdi-battery:before{
  content:"\f116";
}
.zmdi-bike:before{
  content:"\f117";
}
.zmdi-block-alt:before{
  content:"\f118";
}
.zmdi-block:before{
  content:"\f119";
}
.zmdi-boat:before{
  content:"\f11a";
}
.zmdi-book-image:before{
  content:"\f11b";
}
.zmdi-book:before{
  content:"\f11c";
}
.zmdi-bookmark-outline:before{
  content:"\f11d";
}
.zmdi-bookmark:before{
  content:"\f11e";
}
.zmdi-brush:before{
  content:"\f11f";
}
.zmdi-bug:before{
  content:"\f120";
}
.zmdi-bus:before{
  content:"\f121";
}
.zmdi-cake:before{
  content:"\f122";
}
.zmdi-car-taxi:before{
  content:"\f123";
}
.zmdi-car-wash:before{
  content:"\f124";
}
.zmdi-car:before{
  content:"\f125";
}
.zmdi-card-giftcard:before{
  content:"\f126";
}
.zmdi-card-membership:before{
  content:"\f127";
}
.zmdi-card-travel:before{
  content:"\f128";
}
.zmdi-card:before{
  content:"\f129";
}
.zmdi-case-check:before{
  content:"\f12a";
}
.zmdi-case-download:before{
  content:"\f12b";
}
.zmdi-case-play:before{
  content:"\f12c";
}
.zmdi-case:before{
  content:"\f12d";
}
.zmdi-cast-connected:before{
  content:"\f12e";
}
.zmdi-cast:before{
  content:"\f12f";
}
.zmdi-chart-donut:before{
  content:"\f130";
}
.zmdi-chart:before{
  content:"\f131";
}
.zmdi-city-alt:before{
  content:"\f132";
}
.zmdi-city:before{
  content:"\f133";
}
.zmdi-close-circle-o:before{
  content:"\f134";
}
.zmdi-close-circle:before{
  content:"\f135";
}
.zmdi-close:before{
  content:"\f136";
}
.zmdi-cocktail:before{
  content:"\f137";
}
.zmdi-code-setting:before{
  content:"\f138";
}
.zmdi-code-smartphone:before{
  content:"\f139";
}
.zmdi-code:before{
  content:"\f13a";
}
.zmdi-coffee:before{
  content:"\f13b";
}
.zmdi-collection-bookmark:before{
  content:"\f13c";
}
.zmdi-collection-case-play:before{
  content:"\f13d";
}
.zmdi-collection-folder-image:before{
  content:"\f13e";
}
.zmdi-collection-image-o:before{
  content:"\f13f";
}
.zmdi-collection-image:before{
  content:"\f140";
}
.zmdi-collection-item-1:before{
  content:"\f141";
}
.zmdi-collection-item-2:before{
  content:"\f142";
}
.zmdi-collection-item-3:before{
  content:"\f143";
}
.zmdi-collection-item-4:before{
  content:"\f144";
}
.zmdi-collection-item-5:before{
  content:"\f145";
}
.zmdi-collection-item-6:before{
  content:"\f146";
}
.zmdi-collection-item-7:before{
  content:"\f147";
}
.zmdi-collection-item-8:before{
  content:"\f148";
}
.zmdi-collection-item-9-plus:before{
  content:"\f149";
}
.zmdi-collection-item-9:before{
  content:"\f14a";
}
.zmdi-collection-item:before{
  content:"\f14b";
}
.zmdi-collection-music:before{
  content:"\f14c";
}
.zmdi-collection-pdf:before{
  content:"\f14d";
}
.zmdi-collection-plus:before{
  content:"\f14e";
}
.zmdi-collection-speaker:before{
  content:"\f14f";
}
.zmdi-collection-text:before{
  content:"\f150";
}
.zmdi-collection-video:before{
  content:"\f151";
}
.zmdi-compass:before{
  content:"\f152";
}
.zmdi-cutlery:before{
  content:"\f153";
}
.zmdi-delete:before{
  content:"\f154";
}
.zmdi-dialpad:before{
  content:"\f155";
}
.zmdi-dns:before{
  content:"\f156";
}
.zmdi-drink:before{
  content:"\f157";
}
.zmdi-edit:before{
  content:"\f158";
}
.zmdi-email-open:before{
  content:"\f159";
}
.zmdi-email:before{
  content:"\f15a";
}
.zmdi-eye-off:before{
  content:"\f15b";
}
.zmdi-eye:before{
  content:"\f15c";
}
.zmdi-eyedropper:before{
  content:"\f15d";
}
.zmdi-favorite-outline:before{
  content:"\f15e";
}
.zmdi-favorite:before{
  content:"\f15f";
}
.zmdi-filter-list:before{
  content:"\f160";
}
.zmdi-fire:before{
  content:"\f161";
}
.zmdi-flag:before{
  content:"\f162";
}
.zmdi-flare:before{
  content:"\f163";
}
.zmdi-flash-auto:before{
  content:"\f164";
}
.zmdi-flash-off:before{
  content:"\f165";
}
.zmdi-flash:before{
  content:"\f166";
}
.zmdi-flip:before{
  content:"\f167";
}
.zmdi-flower-alt:before{
  content:"\f168";
}
.zmdi-flower:before{
  content:"\f169";
}
.zmdi-font:before{
  content:"\f16a";
}
.zmdi-fullscreen-alt:before{
  content:"\f16b";
}
.zmdi-fullscreen-exit:before{
  content:"\f16c";
}
.zmdi-fullscreen:before{
  content:"\f16d";
}
.zmdi-functions:before{
  content:"\f16e";
}
.zmdi-gas-station:before{
  content:"\f16f";
}
.zmdi-gesture:before{
  content:"\f170";
}
.zmdi-globe-alt:before{
  content:"\f171";
}
.zmdi-globe-lock:before{
  content:"\f172";
}
.zmdi-globe:before{
  content:"\f173";
}
.zmdi-graduation-cap:before{
  content:"\f174";
}
.zmdi-home:before{
  content:"\f175";
}
.zmdi-hospital-alt:before{
  content:"\f176";
}
.zmdi-hospital:before{
  content:"\f177";
}
.zmdi-hotel:before{
  content:"\f178";
}
.zmdi-hourglass-alt:before{
  content:"\f179";
}
.zmdi-hourglass-outline:before{
  content:"\f17a";
}
.zmdi-hourglass:before{
  content:"\f17b";
}
.zmdi-http:before{
  content:"\f17c";
}
.zmdi-image-alt:before{
  content:"\f17d";
}
.zmdi-image-o:before{
  content:"\f17e";
}
.zmdi-image:before{
  content:"\f17f";
}
.zmdi-inbox:before{
  content:"\f180";
}
.zmdi-invert-colors-off:before{
  content:"\f181";
}
.zmdi-invert-colors:before{
  content:"\f182";
}
.zmdi-key:before{
  content:"\f183";
}
.zmdi-label-alt-outline:before{
  content:"\f184";
}
.zmdi-label-alt:before{
  content:"\f185";
}
.zmdi-label-heart:before{
  content:"\f186";
}
.zmdi-label:before{
  content:"\f187";
}
.zmdi-labels:before{
  content:"\f188";
}
.zmdi-lamp:before{
  content:"\f189";
}
.zmdi-landscape:before{
  content:"\f18a";
}
.zmdi-layers-off:before{
  content:"\f18b";
}
.zmdi-layers:before{
  content:"\f18c";
}
.zmdi-library:before{
  content:"\f18d";
}
.zmdi-link:before{
  content:"\f18e";
}
.zmdi-lock-open:before{
  content:"\f18f";
}
.zmdi-lock-outline:before{
  content:"\f190";
}
.zmdi-lock:before{
  content:"\f191";
}
.zmdi-mail-reply-all:before{
  content:"\f192";
}
.zmdi-mail-reply:before{
  content:"\f193";
}
.zmdi-mail-send:before{
  content:"\f194";
}
.zmdi-mall:before{
  content:"\f195";
}
.zmdi-map:before{
  content:"\f196";
}
.zmdi-menu:before{
  content:"\f197";
}
.zmdi-money-box:before{
  content:"\f198";
}
.zmdi-money-off:before{
  content:"\f199";
}
.zmdi-money:before{
  content:"\f19a";
}
.zmdi-more-vert:before{
  content:"\f19b";
}
.zmdi-more:before{
  content:"\f19c";
}
.zmdi-movie-alt:before{
  content:"\f19d";
}
.zmdi-movie:before{
  content:"\f19e";
}
.zmdi-nature-people:before{
  content:"\f19f";
}
.zmdi-nature:before{
  content:"\f1a0";
}
.zmdi-navigation:before{
  content:"\f1a1";
}
.zmdi-open-in-browser:before{
  content:"\f1a2";
}
.zmdi-open-in-new:before{
  content:"\f1a3";
}
.zmdi-palette:before{
  content:"\f1a4";
}
.zmdi-parking:before{
  content:"\f1a5";
}
.zmdi-pin-account:before{
  content:"\f1a6";
}
.zmdi-pin-assistant:before{
  content:"\f1a7";
}
.zmdi-pin-drop:before{
  content:"\f1a8";
}
.zmdi-pin-help:before{
  content:"\f1a9";
}
.zmdi-pin-off:before{
  content:"\f1aa";
}
.zmdi-pin:before{
  content:"\f1ab";
}
.zmdi-pizza:before{
  content:"\f1ac";
}
.zmdi-plaster:before{
  content:"\f1ad";
}
.zmdi-power-setting:before{
  content:"\f1ae";
}
.zmdi-power:before{
  content:"\f1af";
}
.zmdi-print:before{
  content:"\f1b0";
}
.zmdi-puzzle-piece:before{
  content:"\f1b1";
}
.zmdi-quote:before{
  content:"\f1b2";
}
.zmdi-railway:before{
  content:"\f1b3";
}
.zmdi-receipt:before{
  content:"\f1b4";
}
.zmdi-refresh-alt:before{
  content:"\f1b5";
}
.zmdi-refresh-sync-alert:before{
  content:"\f1b6";
}
.zmdi-refresh-sync-off:before{
  content:"\f1b7";
}
.zmdi-refresh-sync:before{
  content:"\f1b8";
}
.zmdi-refresh:before{
  content:"\f1b9";
}
.zmdi-roller:before{
  content:"\f1ba";
}
.zmdi-ruler:before{
  content:"\f1bb";
}
.zmdi-scissors:before{
  content:"\f1bc";
}
.zmdi-screen-rotation-lock:before{
  content:"\f1bd";
}
.zmdi-screen-rotation:before{
  content:"\f1be";
}
.zmdi-search-for:before{
  content:"\f1bf";
}
.zmdi-search-in-file:before{
  content:"\f1c0";
}
.zmdi-search-in-page:before{
  content:"\f1c1";
}
.zmdi-search-replace:before{
  content:"\f1c2";
}
.zmdi-search:before{
  content:"\f1c3";
}
.zmdi-seat:before{
  content:"\f1c4";
}
.zmdi-settings-square:before{
  content:"\f1c5";
}
.zmdi-settings:before{
  content:"\f1c6";
}
.zmdi-shield-check:before{
  content:"\f1c7";
}
.zmdi-shield-security:before{
  content:"\f1c8";
}
.zmdi-shopping-basket:before{
  content:"\f1c9";
}
.zmdi-shopping-cart-plus:before{
  content:"\f1ca";
}
.zmdi-shopping-cart:before{
  content:"\f1cb";
}
.zmdi-sign-in:before{
  content:"\f1cc";
}
.zmdi-sort-amount-asc:before{
  content:"\f1cd";
}
.zmdi-sort-amount-desc:before{
  content:"\f1ce";
}
.zmdi-sort-asc:before{
  content:"\f1cf";
}
.zmdi-sort-desc:before{
  content:"\f1d0";
}
.zmdi-spellcheck:before{
  content:"\f1d1";
}
.zmdi-storage:before{
  content:"\f1d2";
}
.zmdi-store-24:before{
  content:"\f1d3";
}
.zmdi-store:before{
  content:"\f1d4";
}
.zmdi-subway:before{
  content:"\f1d5";
}
.zmdi-sun:before{
  content:"\f1d6";
}
.zmdi-tab-unselected:before{
  content:"\f1d7";
}
.zmdi-tab:before{
  content:"\f1d8";
}
.zmdi-tag-close:before{
  content:"\f1d9";
}
.zmdi-tag-more:before{
  content:"\f1da";
}
.zmdi-tag:before{
  content:"\f1db";
}
.zmdi-thumb-down:before{
  content:"\f1dc";
}
.zmdi-thumb-up-down:before{
  content:"\f1dd";
}
.zmdi-thumb-up:before{
  content:"\f1de";
}
.zmdi-ticket-star:before{
  content:"\f1df";
}
.zmdi-toll:before{
  content:"\f1e0";
}
.zmdi-toys:before{
  content:"\f1e1";
}
.zmdi-traffic:before{
  content:"\f1e2";
}
.zmdi-translate:before{
  content:"\f1e3";
}
.zmdi-triangle-down:before{
  content:"\f1e4";
}
.zmdi-triangle-up:before{
  content:"\f1e5";
}
.zmdi-truck:before{
  content:"\f1e6";
}
.zmdi-turning-sign:before{
  content:"\f1e7";
}
.zmdi-wallpaper:before{
  content:"\f1e8";
}
.zmdi-washing-machine:before{
  content:"\f1e9";
}
.zmdi-window-maximize:before{
  content:"\f1ea";
}
.zmdi-window-minimize:before{
  content:"\f1eb";
}
.zmdi-window-restore:before{
  content:"\f1ec";
}
.zmdi-wrench:before{
  content:"\f1ed";
}
.zmdi-zoom-in:before{
  content:"\f1ee";
}
.zmdi-zoom-out:before{
  content:"\f1ef";
}
.zmdi-alert-circle-o:before{
  content:"\f1f0";
}
.zmdi-alert-circle:before{
  content:"\f1f1";
}
.zmdi-alert-octagon:before{
  content:"\f1f2";
}
.zmdi-alert-polygon:before{
  content:"\f1f3";
}
.zmdi-alert-triangle:before{
  content:"\f1f4";
}
.zmdi-help-outline:before{
  content:"\f1f5";
}
.zmdi-help:before{
  content:"\f1f6";
}
.zmdi-info-outline:before{
  content:"\f1f7";
}
.zmdi-info:before{
  content:"\f1f8";
}
.zmdi-notifications-active:before{
  content:"\f1f9";
}
.zmdi-notifications-add:before{
  content:"\f1fa";
}
.zmdi-notifications-none:before{
  content:"\f1fb";
}
.zmdi-notifications-off:before{
  content:"\f1fc";
}
.zmdi-notifications-paused:before{
  content:"\f1fd";
}
.zmdi-notifications:before{
  content:"\f1fe";
}
.zmdi-account-add:before{
  content:"\f1ff";
}
.zmdi-account-box-mail:before{
  content:"\f200";
}
.zmdi-account-box-o:before{
  content:"\f201";
}
.zmdi-account-box-phone:before{
  content:"\f202";
}
.zmdi-account-box:before{
  content:"\f203";
}
.zmdi-account-calendar:before{
  content:"\f204";
}
.zmdi-account-circle:before{
  content:"\f205";
}
.zmdi-account-o:before{
  content:"\f206";
}
.zmdi-account:before{
  content:"\f207";
}
.zmdi-accounts-add:before{
  content:"\f208";
}
.zmdi-accounts-alt:before{
  content:"\f209";
}
.zmdi-accounts-list-alt:before{
  content:"\f20a";
}
.zmdi-accounts-list:before{
  content:"\f20b";
}
.zmdi-accounts-outline:before{
  content:"\f20c";
}
.zmdi-accounts:before{
  content:"\f20d";
}
.zmdi-face:before{
  content:"\f20e";
}
.zmdi-female:before{
  content:"\f20f";
}
.zmdi-male-alt:before{
  content:"\f210";
}
.zmdi-male-female:before{
  content:"\f211";
}
.zmdi-male:before{
  content:"\f212";
}
.zmdi-mood-bad:before{
  content:"\f213";
}
.zmdi-mood:before{
  content:"\f214";
}
.zmdi-run:before{
  content:"\f215";
}
.zmdi-walk:before{
  content:"\f216";
}
.zmdi-cloud-box:before{
  content:"\f217";
}
.zmdi-cloud-circle:before{
  content:"\f218";
}
.zmdi-cloud-done:before{
  content:"\f219";
}
.zmdi-cloud-download:before{
  content:"\f21a";
}
.zmdi-cloud-off:before{
  content:"\f21b";
}
.zmdi-cloud-outline-alt:before{
  content:"\f21c";
}
.zmdi-cloud-outline:before{
  content:"\f21d";
}
.zmdi-cloud-upload:before{
  content:"\f21e";
}
.zmdi-cloud:before{
  content:"\f21f";
}
.zmdi-download:before{
  content:"\f220";
}
.zmdi-file-plus:before{
  content:"\f221";
}
.zmdi-file-text:before{
  content:"\f222";
}
.zmdi-file:before{
  content:"\f223";
}
.zmdi-folder-outline:before{
  content:"\f224";
}
.zmdi-folder-person:before{
  content:"\f225";
}
.zmdi-folder-star-alt:before{
  content:"\f226";
}
.zmdi-folder-star:before{
  content:"\f227";
}
.zmdi-folder:before{
  content:"\f228";
}
.zmdi-gif:before{
  content:"\f229";
}
.zmdi-upload:before{
  content:"\f22a";
}
.zmdi-border-all:before{
  content:"\f22b";
}
.zmdi-border-bottom:before{
  content:"\f22c";
}
.zmdi-border-clear:before{
  content:"\f22d";
}
.zmdi-border-color:before{
  content:"\f22e";
}
.zmdi-border-horizontal:before{
  content:"\f22f";
}
.zmdi-border-inner:before{
  content:"\f230";
}
.zmdi-border-left:before{
  content:"\f231";
}
.zmdi-border-outer:before{
  content:"\f232";
}
.zmdi-border-right:before{
  content:"\f233";
}
.zmdi-border-style:before{
  content:"\f234";
}
.zmdi-border-top:before{
  content:"\f235";
}
.zmdi-border-vertical:before{
  content:"\f236";
}
.zmdi-copy:before{
  content:"\f237";
}
.zmdi-crop:before{
  content:"\f238";
}
.zmdi-format-align-center:before{
  content:"\f239";
}
.zmdi-format-align-justify:before{
  content:"\f23a";
}
.zmdi-format-align-left:before{
  content:"\f23b";
}
.zmdi-format-align-right:before{
  content:"\f23c";
}
.zmdi-format-bold:before{
  content:"\f23d";
}
.zmdi-format-clear-all:before{
  content:"\f23e";
}
.zmdi-format-clear:before{
  content:"\f23f";
}
.zmdi-format-color-fill:before{
  content:"\f240";
}
.zmdi-format-color-reset:before{
  content:"\f241";
}
.zmdi-format-color-text:before{
  content:"\f242";
}
.zmdi-format-indent-decrease:before{
  content:"\f243";
}
.zmdi-format-indent-increase:before{
  content:"\f244";
}
.zmdi-format-italic:before{
  content:"\f245";
}
.zmdi-format-line-spacing:before{
  content:"\f246";
}
.zmdi-format-list-bulleted:before{
  content:"\f247";
}
.zmdi-format-list-numbered:before{
  content:"\f248";
}
.zmdi-format-ltr:before{
  content:"\f249";
}
.zmdi-format-rtl:before{
  content:"\f24a";
}
.zmdi-format-size:before{
  content:"\f24b";
}
.zmdi-format-strikethrough-s:before{
  content:"\f24c";
}
.zmdi-format-strikethrough:before{
  content:"\f24d";
}
.zmdi-format-subject:before{
  content:"\f24e";
}
.zmdi-format-underlined:before{
  content:"\f24f";
}
.zmdi-format-valign-bottom:before{
  content:"\f250";
}
.zmdi-format-valign-center:before{
  content:"\f251";
}
.zmdi-format-valign-top:before{
  content:"\f252";
}
.zmdi-redo:before{
  content:"\f253";
}
.zmdi-select-all:before{
  content:"\f254";
}
.zmdi-space-bar:before{
  content:"\f255";
}
.zmdi-text-format:before{
  content:"\f256";
}
.zmdi-transform:before{
  content:"\f257";
}
.zmdi-undo:before{
  content:"\f258";
}
.zmdi-wrap-text:before{
  content:"\f259";
}
.zmdi-comment-alert:before{
  content:"\f25a";
}
.zmdi-comment-alt-text:before{
  content:"\f25b";
}
.zmdi-comment-alt:before{
  content:"\f25c";
}
.zmdi-comment-edit:before{
  content:"\f25d";
}
.zmdi-comment-image:before{
  content:"\f25e";
}
.zmdi-comment-list:before{
  content:"\f25f";
}
.zmdi-comment-more:before{
  content:"\f260";
}
.zmdi-comment-outline:before{
  content:"\f261";
}
.zmdi-comment-text-alt:before{
  content:"\f262";
}
.zmdi-comment-text:before{
  content:"\f263";
}
.zmdi-comment-video:before{
  content:"\f264";
}
.zmdi-comment:before{
  content:"\f265";
}
.zmdi-comments:before{
  content:"\f266";
}
.zmdi-check-all:before{
  content:"\f267";
}
.zmdi-check-circle-u:before{
  content:"\f268";
}
.zmdi-check-circle:before{
  content:"\f269";
}
.zmdi-check-square:before{
  content:"\f26a";
}
.zmdi-check:before{
  content:"\f26b";
}
.zmdi-circle-o:before{
  content:"\f26c";
}
.zmdi-circle:before{
  content:"\f26d";
}
.zmdi-dot-circle-alt:before{
  content:"\f26e";
}
.zmdi-dot-circle:before{
  content:"\f26f";
}
.zmdi-minus-circle-outline:before{
  content:"\f270";
}
.zmdi-minus-circle:before{
  content:"\f271";
}
.zmdi-minus-square:before{
  content:"\f272";
}
.zmdi-minus:before{
  content:"\f273";
}
.zmdi-plus-circle-o-duplicate:before{
  content:"\f274";
}
.zmdi-plus-circle-o:before{
  content:"\f275";
}
.zmdi-plus-circle:before{
  content:"\f276";
}
.zmdi-plus-square:before{
  content:"\f277";
}
.zmdi-plus:before{
  content:"\f278";
}
.zmdi-square-o:before{
  content:"\f279";
}
.zmdi-star-circle:before{
  content:"\f27a";
}
.zmdi-star-half:before{
  content:"\f27b";
}
.zmdi-star-outline:before{
  content:"\f27c";
}
.zmdi-star:before{
  content:"\f27d";
}
.zmdi-bluetooth-connected:before{
  content:"\f27e";
}
.zmdi-bluetooth-off:before{
  content:"\f27f";
}
.zmdi-bluetooth-search:before{
  content:"\f280";
}
.zmdi-bluetooth-setting:before{
  content:"\f281";
}
.zmdi-bluetooth:before{
  content:"\f282";
}
.zmdi-camera-add:before{
  content:"\f283";
}
.zmdi-camera-alt:before{
  content:"\f284";
}
.zmdi-camera-bw:before{
  content:"\f285";
}
.zmdi-camera-front:before{
  content:"\f286";
}
.zmdi-camera-mic:before{
  content:"\f287";
}
.zmdi-camera-party-mode:before{
  content:"\f288";
}
.zmdi-camera-rear:before{
  content:"\f289";
}
.zmdi-camera-roll:before{
  content:"\f28a";
}
.zmdi-camera-switch:before{
  content:"\f28b";
}
.zmdi-camera:before{
  content:"\f28c";
}
.zmdi-card-alert:before{
  content:"\f28d";
}
.zmdi-card-off:before{
  content:"\f28e";
}
.zmdi-card-sd:before{
  content:"\f28f";
}
.zmdi-card-sim:before{
  content:"\f290";
}
.zmdi-desktop-mac:before{
  content:"\f291";
}
.zmdi-desktop-windows:before{
  content:"\f292";
}
.zmdi-device-hub:before{
  content:"\f293";
}
.zmdi-devices-off:before{
  content:"\f294";
}
.zmdi-devices:before{
  content:"\f295";
}
.zmdi-dock:before{
  content:"\f296";
}
.zmdi-floppy:before{
  content:"\f297";
}
.zmdi-gamepad:before{
  content:"\f298";
}
.zmdi-gps-dot:before{
  content:"\f299";
}
.zmdi-gps-off:before{
  content:"\f29a";
}
.zmdi-gps:before{
  content:"\f29b";
}
.zmdi-headset-mic:before{
  content:"\f29c";
}
.zmdi-headset:before{
  content:"\f29d";
}
.zmdi-input-antenna:before{
  content:"\f29e";
}
.zmdi-input-composite:before{
  content:"\f29f";
}
.zmdi-input-hdmi:before{
  content:"\f2a0";
}
.zmdi-input-power:before{
  content:"\f2a1";
}
.zmdi-input-svideo:before{
  content:"\f2a2";
}
.zmdi-keyboard-hide:before{
  content:"\f2a3";
}
.zmdi-keyboard:before{
  content:"\f2a4";
}
.zmdi-laptop-chromebook:before{
  content:"\f2a5";
}
.zmdi-laptop-mac:before{
  content:"\f2a6";
}
.zmdi-laptop:before{
  content:"\f2a7";
}
.zmdi-mic-off:before{
  content:"\f2a8";
}
.zmdi-mic-outline:before{
  content:"\f2a9";
}
.zmdi-mic-setting:before{
  content:"\f2aa";
}
.zmdi-mic:before{
  content:"\f2ab";
}
.zmdi-mouse:before{
  content:"\f2ac";
}
.zmdi-network-alert:before{
  content:"\f2ad";
}
.zmdi-network-locked:before{
  content:"\f2ae";
}
.zmdi-network-off:before{
  content:"\f2af";
}
.zmdi-network-outline:before{
  content:"\f2b0";
}
.zmdi-network-setting:before{
  content:"\f2b1";
}
.zmdi-network:before{
  content:"\f2b2";
}
.zmdi-phone-bluetooth:before{
  content:"\f2b3";
}
.zmdi-phone-end:before{
  content:"\f2b4";
}
.zmdi-phone-forwarded:before{
  content:"\f2b5";
}
.zmdi-phone-in-talk:before{
  content:"\f2b6";
}
.zmdi-phone-locked:before{
  content:"\f2b7";
}
.zmdi-phone-missed:before{
  content:"\f2b8";
}
.zmdi-phone-msg:before{
  content:"\f2b9";
}
.zmdi-phone-paused:before{
  content:"\f2ba";
}
.zmdi-phone-ring:before{
  content:"\f2bb";
}
.zmdi-phone-setting:before{
  content:"\f2bc";
}
.zmdi-phone-sip:before{
  content:"\f2bd";
}
.zmdi-phone:before{
  content:"\f2be";
}
.zmdi-portable-wifi-changes:before{
  content:"\f2bf";
}
.zmdi-portable-wifi-off:before{
  content:"\f2c0";
}
.zmdi-portable-wifi:before{
  content:"\f2c1";
}
.zmdi-radio:before{
  content:"\f2c2";
}
.zmdi-reader:before{
  content:"\f2c3";
}
.zmdi-remote-control-alt:before{
  content:"\f2c4";
}
.zmdi-remote-control:before{
  content:"\f2c5";
}
.zmdi-router:before{
  content:"\f2c6";
}
.zmdi-scanner:before{
  content:"\f2c7";
}
.zmdi-smartphone-android:before{
  content:"\f2c8";
}
.zmdi-smartphone-download:before{
  content:"\f2c9";
}
.zmdi-smartphone-erase:before{
  content:"\f2ca";
}
.zmdi-smartphone-info:before{
  content:"\f2cb";
}
.zmdi-smartphone-iphone:before{
  content:"\f2cc";
}
.zmdi-smartphone-landscape-lock:before{
  content:"\f2cd";
}
.zmdi-smartphone-landscape:before{
  content:"\f2ce";
}
.zmdi-smartphone-lock:before{
  content:"\f2cf";
}
.zmdi-smartphone-portrait-lock:before{
  content:"\f2d0";
}
.zmdi-smartphone-ring:before{
  content:"\f2d1";
}
.zmdi-smartphone-setting:before{
  content:"\f2d2";
}
.zmdi-smartphone-setup:before{
  content:"\f2d3";
}
.zmdi-smartphone:before{
  content:"\f2d4";
}
.zmdi-speaker:before{
  content:"\f2d5";
}
.zmdi-tablet-android:before{
  content:"\f2d6";
}
.zmdi-tablet-mac:before{
  content:"\f2d7";
}
.zmdi-tablet:before{
  content:"\f2d8";
}
.zmdi-tv-alt-play:before{
  content:"\f2d9";
}
.zmdi-tv-list:before{
  content:"\f2da";
}
.zmdi-tv-play:before{
  content:"\f2db";
}
.zmdi-tv:before{
  content:"\f2dc";
}
.zmdi-usb:before{
  content:"\f2dd";
}
.zmdi-videocam-off:before{
  content:"\f2de";
}
.zmdi-videocam-switch:before{
  content:"\f2df";
}
.zmdi-videocam:before{
  content:"\f2e0";
}
.zmdi-watch:before{
  content:"\f2e1";
}
.zmdi-wifi-alt-2:before{
  content:"\f2e2";
}
.zmdi-wifi-alt:before{
  content:"\f2e3";
}
.zmdi-wifi-info:before{
  content:"\f2e4";
}
.zmdi-wifi-lock:before{
  content:"\f2e5";
}
.zmdi-wifi-off:before{
  content:"\f2e6";
}
.zmdi-wifi-outline:before{
  content:"\f2e7";
}
.zmdi-wifi:before{
  content:"\f2e8";
}
.zmdi-arrow-left-bottom:before{
  content:"\f2e9";
}
.zmdi-arrow-left:before{
  content:"\f2ea";
}
.zmdi-arrow-merge:before{
  content:"\f2eb";
}
.zmdi-arrow-missed:before{
  content:"\f2ec";
}
.zmdi-arrow-right-top:before{
  content:"\f2ed";
}
.zmdi-arrow-right:before{
  content:"\f2ee";
}
.zmdi-arrow-split:before{
  content:"\f2ef";
}
.zmdi-arrows:before{
  content:"\f2f0";
}
.zmdi-caret-down-circle:before{
  content:"\f2f1";
}
.zmdi-caret-down:before{
  content:"\f2f2";
}
.zmdi-caret-left-circle:before{
  content:"\f2f3";
}
.zmdi-caret-left:before{
  content:"\f2f4";
}
.zmdi-caret-right-circle:before{
  content:"\f2f5";
}
.zmdi-caret-right:before{
  content:"\f2f6";
}
.zmdi-caret-up-circle:before{
  content:"\f2f7";
}
.zmdi-caret-up:before{
  content:"\f2f8";
}
.zmdi-chevron-down:before{
  content:"\f2f9";
}
.zmdi-chevron-left:before{
  content:"\f2fa";
}
.zmdi-chevron-right:before{
  content:"\f2fb";
}
.zmdi-chevron-up:before{
  content:"\f2fc";
}
.zmdi-forward:before{
  content:"\f2fd";
}
.zmdi-long-arrow-down:before{
  content:"\f2fe";
}
.zmdi-long-arrow-left:before{
  content:"\f2ff";
}
.zmdi-long-arrow-return:before{
  content:"\f300";
}
.zmdi-long-arrow-right:before{
  content:"\f301";
}
.zmdi-long-arrow-tab:before{
  content:"\f302";
}
.zmdi-long-arrow-up:before{
  content:"\f303";
}
.zmdi-rotate-ccw:before{
  content:"\f304";
}
.zmdi-rotate-cw:before{
  content:"\f305";
}
.zmdi-rotate-left:before{
  content:"\f306";
}
.zmdi-rotate-right:before{
  content:"\f307";
}
.zmdi-square-down:before{
  content:"\f308";
}
.zmdi-square-right:before{
  content:"\f309";
}
.zmdi-swap-alt:before{
  content:"\f30a";
}
.zmdi-swap-vertical-circle:before{
  content:"\f30b";
}
.zmdi-swap-vertical:before{
  content:"\f30c";
}
.zmdi-swap:before{
  content:"\f30d";
}
.zmdi-trending-down:before{
  content:"\f30e";
}
.zmdi-trending-flat:before{
  content:"\f30f";
}
.zmdi-trending-up:before{
  content:"\f310";
}
.zmdi-unfold-less:before{
  content:"\f311";
}
.zmdi-unfold-more:before{
  content:"\f312";
}
.zmdi-apps:before{
  content:"\f313";
}
.zmdi-grid-off:before{
  content:"\f314";
}
.zmdi-grid:before{
  content:"\f315";
}
.zmdi-view-agenda:before{
  content:"\f316";
}
.zmdi-view-array:before{
  content:"\f317";
}
.zmdi-view-carousel:before{
  content:"\f318";
}
.zmdi-view-column:before{
  content:"\f319";
}
.zmdi-view-comfy:before{
  content:"\f31a";
}
.zmdi-view-compact:before{
  content:"\f31b";
}
.zmdi-view-dashboard:before{
  content:"\f31c";
}
.zmdi-view-day:before{
  content:"\f31d";
}
.zmdi-view-headline:before{
  content:"\f31e";
}
.zmdi-view-list-alt:before{
  content:"\f31f";
}
.zmdi-view-list:before{
  content:"\f320";
}
.zmdi-view-module:before{
  content:"\f321";
}
.zmdi-view-quilt:before{
  content:"\f322";
}
.zmdi-view-stream:before{
  content:"\f323";
}
.zmdi-view-subtitles:before{
  content:"\f324";
}
.zmdi-view-toc:before{
  content:"\f325";
}
.zmdi-view-web:before{
  content:"\f326";
}
.zmdi-view-week:before{
  content:"\f327";
}
.zmdi-widgets:before{
  content:"\f328";
}
.zmdi-alarm-check:before{
  content:"\f329";
}
.zmdi-alarm-off:before{
  content:"\f32a";
}
.zmdi-alarm-plus:before{
  content:"\f32b";
}
.zmdi-alarm-snooze:before{
  content:"\f32c";
}
.zmdi-alarm:before{
  content:"\f32d";
}
.zmdi-calendar-alt:before{
  content:"\f32e";
}
.zmdi-calendar-check:before{
  content:"\f32f";
}
.zmdi-calendar-close:before{
  content:"\f330";
}
.zmdi-calendar-note:before{
  content:"\f331";
}
.zmdi-calendar:before{
  content:"\f332";
}
.zmdi-time-countdown:before{
  content:"\f333";
}
.zmdi-time-interval:before{
  content:"\f334";
}
.zmdi-time-restore-setting:before{
  content:"\f335";
}
.zmdi-time-restore:before{
  content:"\f336";
}
.zmdi-time:before{
  content:"\f337";
}
.zmdi-timer-off:before{
  content:"\f338";
}
.zmdi-timer:before{
  content:"\f339";
}
.zmdi-android-alt:before{
  content:"\f33a";
}
.zmdi-android:before{
  content:"\f33b";
}
.zmdi-apple:before{
  content:"\f33c";
}
.zmdi-behance:before{
  content:"\f33d";
}
.zmdi-codepen:before{
  content:"\f33e";
}
.zmdi-dribbble:before{
  content:"\f33f";
}
.zmdi-dropbox:before{
  content:"\f340";
}
.zmdi-evernote:before{
  content:"\f341";
}
.zmdi-facebook-box:before{
  content:"\f342";
}
.zmdi-facebook:before{
  content:"\f343";
}
.zmdi-github-box:before{
  content:"\f344";
}
.zmdi-github:before{
  content:"\f345";
}
.zmdi-google-drive:before{
  content:"\f346";
}
.zmdi-google-earth:before{
  content:"\f347";
}
.zmdi-google-glass:before{
  content:"\f348";
}
.zmdi-google-maps:before{
  content:"\f349";
}
.zmdi-google-pages:before{
  content:"\f34a";
}
.zmdi-google-play:before{
  content:"\f34b";
}
.zmdi-google-plus-box:before{
  content:"\f34c";
}
.zmdi-google-plus:before{
  content:"\f34d";
}
.zmdi-google:before{
  content:"\f34e";
}
.zmdi-instagram:before{
  content:"\f34f";
}
.zmdi-language-css3:before{
  content:"\f350";
}
.zmdi-language-html5:before{
  content:"\f351";
}
.zmdi-language-javascript:before{
  content:"\f352";
}
.zmdi-language-python-alt:before{
  content:"\f353";
}
.zmdi-language-python:before{
  content:"\f354";
}
.zmdi-lastfm:before{
  content:"\f355";
}
.zmdi-linkedin-box:before{
  content:"\f356";
}
.zmdi-paypal:before{
  content:"\f357";
}
.zmdi-pinterest-box:before{
  content:"\f358";
}
.zmdi-pocket:before{
  content:"\f359";
}
.zmdi-polymer:before{
  content:"\f35a";
}
.zmdi-share:before{
  content:"\f35b";
}
.zmdi-stackoverflow:before{
  content:"\f35c";
}
.zmdi-steam-square:before{
  content:"\f35d";
}
.zmdi-steam:before{
  content:"\f35e";
}
.zmdi-twitter-box:before{
  content:"\f35f";
}
.zmdi-twitter:before{
  content:"\f360";
}
.zmdi-vk:before{
  content:"\f361";
}
.zmdi-wikipedia:before{
  content:"\f362";
}
.zmdi-windows:before{
  content:"\f363";
}
.zmdi-aspect-ratio-alt:before{
  content:"\f364";
}
.zmdi-aspect-ratio:before{
  content:"\f365";
}
.zmdi-blur-circular:before{
  content:"\f366";
}
.zmdi-blur-linear:before{
  content:"\f367";
}
.zmdi-blur-off:before{
  content:"\f368";
}
.zmdi-blur:before{
  content:"\f369";
}
.zmdi-brightness-2:before{
  content:"\f36a";
}
.zmdi-brightness-3:before{
  content:"\f36b";
}
.zmdi-brightness-4:before{
  content:"\f36c";
}
.zmdi-brightness-5:before{
  content:"\f36d";
}
.zmdi-brightness-6:before{
  content:"\f36e";
}
.zmdi-brightness-7:before{
  content:"\f36f";
}
.zmdi-brightness-auto:before{
  content:"\f370";
}
.zmdi-brightness-setting:before{
  content:"\f371";
}
.zmdi-broken-image:before{
  content:"\f372";
}
.zmdi-center-focus-strong:before{
  content:"\f373";
}
.zmdi-center-focus-weak:before{
  content:"\f374";
}
.zmdi-compare:before{
  content:"\f375";
}
.zmdi-crop-16-9:before{
  content:"\f376";
}
.zmdi-crop-3-2:before{
  content:"\f377";
}
.zmdi-crop-5-4:before{
  content:"\f378";
}
.zmdi-crop-7-5:before{
  content:"\f379";
}
.zmdi-crop-din:before{
  content:"\f37a";
}
.zmdi-crop-free:before{
  content:"\f37b";
}
.zmdi-crop-landscape:before{
  content:"\f37c";
}
.zmdi-crop-portrait:before{
  content:"\f37d";
}
.zmdi-crop-square:before{
  content:"\f37e";
}
.zmdi-exposure-alt:before{
  content:"\f37f";
}
.zmdi-exposure:before{
  content:"\f380";
}
.zmdi-filter-b-and-w:before{
  content:"\f381";
}
.zmdi-filter-center-focus:before{
  content:"\f382";
}
.zmdi-filter-frames:before{
  content:"\f383";
}
.zmdi-filter-tilt-shift:before{
  content:"\f384";
}
.zmdi-gradient:before{
  content:"\f385";
}
.zmdi-grain:before{
  content:"\f386";
}
.zmdi-graphic-eq:before{
  content:"\f387";
}
.zmdi-hdr-off:before{
  content:"\f388";
}
.zmdi-hdr-strong:before{
  content:"\f389";
}
.zmdi-hdr-weak:before{
  content:"\f38a";
}
.zmdi-hdr:before{
  content:"\f38b";
}
.zmdi-iridescent:before{
  content:"\f38c";
}
.zmdi-leak-off:before{
  content:"\f38d";
}
.zmdi-leak:before{
  content:"\f38e";
}
.zmdi-looks:before{
  content:"\f38f";
}
.zmdi-loupe:before{
  content:"\f390";
}
.zmdi-panorama-horizontal:before{
  content:"\f391";
}
.zmdi-panorama-vertical:before{
  content:"\f392";
}
.zmdi-panorama-wide-angle:before{
  content:"\f393";
}
.zmdi-photo-size-select-large:before{
  content:"\f394";
}
.zmdi-photo-size-select-small:before{
  content:"\f395";
}
.zmdi-picture-in-picture:before{
  content:"\f396";
}
.zmdi-slideshow:before{
  content:"\f397";
}
.zmdi-texture:before{
  content:"\f398";
}
.zmdi-tonality:before{
  content:"\f399";
}
.zmdi-vignette:before{
  content:"\f39a";
}
.zmdi-wb-auto:before{
  content:"\f39b";
}
.zmdi-eject-alt:before{
  content:"\f39c";
}
.zmdi-eject:before{
  content:"\f39d";
}
.zmdi-equalizer:before{
  content:"\f39e";
}
.zmdi-fast-forward:before{
  content:"\f39f";
}
.zmdi-fast-rewind:before{
  content:"\f3a0";
}
.zmdi-forward-10:before{
  content:"\f3a1";
}
.zmdi-forward-30:before{
  content:"\f3a2";
}
.zmdi-forward-5:before{
  content:"\f3a3";
}
.zmdi-hearing:before{
  content:"\f3a4";
}
.zmdi-pause-circle-outline:before{
  content:"\f3a5";
}
.zmdi-pause-circle:before{
  content:"\f3a6";
}
.zmdi-pause:before{
  content:"\f3a7";
}
.zmdi-play-circle-outline:before{
  content:"\f3a8";
}
.zmdi-play-circle:before{
  content:"\f3a9";
}
.zmdi-play:before{
  content:"\f3aa";
}
.zmdi-playlist-audio:before{
  content:"\f3ab";
}
.zmdi-playlist-plus:before{
  content:"\f3ac";
}
.zmdi-repeat-one:before{
  content:"\f3ad";
}
.zmdi-repeat:before{
  content:"\f3ae";
}
.zmdi-replay-10:before{
  content:"\f3af";
}
.zmdi-replay-30:before{
  content:"\f3b0";
}
.zmdi-replay-5:before{
  content:"\f3b1";
}
.zmdi-replay:before{
  content:"\f3b2";
}
.zmdi-shuffle:before{
  content:"\f3b3";
}
.zmdi-skip-next:before{
  content:"\f3b4";
}
.zmdi-skip-previous:before{
  content:"\f3b5";
}
.zmdi-stop:before{
  content:"\f3b6";
}
.zmdi-surround-sound:before{
  content:"\f3b7";
}
.zmdi-tune:before{
  content:"\f3b8";
}
.zmdi-volume-down:before{
  content:"\f3b9";
}
.zmdi-volume-mute:before{
  content:"\f3ba";
}
.zmdi-volume-off:before{
  content:"\f3bb";
}
.zmdi-volume-up:before{
  content:"\f3bc";
}
.zmdi-n-1-square:before{
  content:"\f3bd";
}
.zmdi-n-2-square:before{
  content:"\f3be";
}
.zmdi-n-3-square:before{
  content:"\f3bf";
}
.zmdi-n-4-square:before{
  content:"\f3c0";
}
.zmdi-n-5-square:before{
  content:"\f3c1";
}
.zmdi-n-6-square:before{
  content:"\f3c2";
}
.zmdi-neg-1:before{
  content:"\f3c3";
}
.zmdi-neg-2:before{
  content:"\f3c4";
}
.zmdi-plus-1:before{
  content:"\f3c5";
}
.zmdi-plus-2:before{
  content:"\f3c6";
}
.zmdi-sec-10:before{
  content:"\f3c7";
}
.zmdi-sec-3:before{
  content:"\f3c8";
}
.zmdi-zero:before{
  content:"\f3c9";
}
.zmdi-airline-seat-flat-angled:before{
  content:"\f3ca";
}
.zmdi-airline-seat-flat:before{
  content:"\f3cb";
}
.zmdi-airline-seat-individual-suite:before{
  content:"\f3cc";
}
.zmdi-airline-seat-legroom-extra:before{
  content:"\f3cd";
}
.zmdi-airline-seat-legroom-normal:before{
  content:"\f3ce";
}
.zmdi-airline-seat-legroom-reduced:before{
  content:"\f3cf";
}
.zmdi-airline-seat-recline-extra:before{
  content:"\f3d0";
}
.zmdi-airline-seat-recline-normal:before{
  content:"\f3d1";
}
.zmdi-airplay:before{
  content:"\f3d2";
}
.zmdi-closed-caption:before{
  content:"\f3d3";
}
.zmdi-confirmation-number:before{
  content:"\f3d4";
}
.zmdi-developer-board:before{
  content:"\f3d5";
}
.zmdi-disc-full:before{
  content:"\f3d6";
}
.zmdi-explicit:before{
  content:"\f3d7";
}
.zmdi-flight-land:before{
  content:"\f3d8";
}
.zmdi-flight-takeoff:before{
  content:"\f3d9";
}
.zmdi-flip-to-back:before{
  content:"\f3da";
}
.zmdi-flip-to-front:before{
  content:"\f3db";
}
.zmdi-group-work:before{
  content:"\f3dc";
}
.zmdi-hd:before{
  content:"\f3dd";
}
.zmdi-hq:before{
  content:"\f3de";
}
.zmdi-markunread-mailbox:before{
  content:"\f3df";
}
.zmdi-memory:before{
  content:"\f3e0";
}
.zmdi-nfc:before{
  content:"\f3e1";
}
.zmdi-play-for-work:before{
  content:"\f3e2";
}
.zmdi-power-input:before{
  content:"\f3e3";
}
.zmdi-present-to-all:before{
  content:"\f3e4";
}
.zmdi-satellite:before{
  content:"\f3e5";
}
.zmdi-tap-and-play:before{
  content:"\f3e6";
}
.zmdi-vibration:before{
  content:"\f3e7";
}
.zmdi-voicemail:before{
  content:"\f3e8";
}
.zmdi-group:before{
  content:"\f3e9";
}
.zmdi-rss:before{
  content:"\f3ea";
}
.zmdi-shape:before{
  content:"\f3eb";
}
.zmdi-spinner:before{
  content:"\f3ec";
}
.zmdi-ungroup:before{
  content:"\f3ed";
}
.zmdi-500px:before{
  content:"\f3ee";
}
.zmdi-8tracks:before{
  content:"\f3ef";
}
.zmdi-amazon:before{
  content:"\f3f0";
}
.zmdi-blogger:before{
  content:"\f3f1";
}
.zmdi-delicious:before{
  content:"\f3f2";
}
.zmdi-disqus:before{
  content:"\f3f3";
}
.zmdi-flattr:before{
  content:"\f3f4";
}
.zmdi-flickr:before{
  content:"\f3f5";
}
.zmdi-github-alt:before{
  content:"\f3f6";
}
.zmdi-google-old:before{
  content:"\f3f7";
}
.zmdi-linkedin:before{
  content:"\f3f8";
}
.zmdi-odnoklassniki:before{
  content:"\f3f9";
}
.zmdi-outlook:before{
  content:"\f3fa";
}
.zmdi-paypal-alt:before{
  content:"\f3fb";
}
.zmdi-pinterest:before{
  content:"\f3fc";
}
.zmdi-playstation:before{
  content:"\f3fd";
}
.zmdi-reddit:before{
  content:"\f3fe";
}
.zmdi-skype:before{
  content:"\f3ff";
}
.zmdi-slideshare:before{
  content:"\f400";
}
.zmdi-soundcloud:before{
  content:"\f401";
}
.zmdi-tumblr:before{
  content:"\f402";
}
.zmdi-twitch:before{
  content:"\f403";
}
.zmdi-vimeo:before{
  content:"\f404";
}
.zmdi-whatsapp:before{
  content:"\f405";
}
.zmdi-xbox:before{
  content:"\f406";
}
.zmdi-yahoo:before{
  content:"\f407";
}
.zmdi-youtube-play:before{
  content:"\f408";
}
.zmdi-youtube:before{
  content:"\f409";
}
.zmdi-import-export:before,.zmdi-swap-vertical-:before{
  content:"\f30c";
}
.zmdi-airplanemode-inactive:before{
  content:"\f102";
}
.zmdi-airplanemode-active:before,.zmdi-rate-review:before{
  content:"\f103";
}
.zmdi-comment-sign:before{
  content:"\f25a";
}
.zmdi-network-warning:before{
  content:"\f2ad";
}
.zmdi-shopping-cart-add:before{
  content:"\f1ca";
}
.zmdi-file-add:before{
  content:"\f221";
}
.zmdi-network-wifi-scan:before{
  content:"\f2e4";
}
.zmdi-collection-add:before{
  content:"\f14e";
}
.zmdi-format-playlist-add:before{
  content:"\f3ac";
}
.zmdi-format-queue-music:before{
  content:"\f3ab";
}
.zmdi-plus-box:before{
  content:"\f277";
}
.zmdi-tag-backspace:before{
  content:"\f1d9";
}
.zmdi-alarm-add:before{
  content:"\f32b";
}
.zmdi-battery-charging:before{
  content:"\f114";
}
.zmdi-daydream-setting:before{
  content:"\f217";
}
.zmdi-more-horiz:before{
  content:"\f19c";
}
.zmdi-book-photo:before{
  content:"\f11b";
}
.zmdi-incandescent:before{
  content:"\f189";
}
.zmdi-wb-iridescent:before{
  content:"\f38c";
}
.zmdi-calendar-remove:before{
  content:"\f330";
}
.zmdi-refresh-sync-disabled:before{
  content:"\f1b7";
}
.zmdi-refresh-sync-problem:before{
  content:"\f1b6";
}
.zmdi-crop-original:before{
  content:"\f17e";
}
.zmdi-power-off:before{
  content:"\f1af";
}
.zmdi-power-off-setting:before{
  content:"\f1ae";
}
.zmdi-leak-remove:before{
  content:"\f38d";
}
.zmdi-star-border:before{
  content:"\f27c";
}
.zmdi-brightness-low:before{
  content:"\f36d";
}
.zmdi-brightness-medium:before{
  content:"\f36e";
}
.zmdi-brightness-high:before{
  content:"\f36f";
}
.zmdi-smartphone-portrait:before{
  content:"\f2d4";
}
.zmdi-live-tv:before{
  content:"\f2d9";
}
.zmdi-format-textdirection-l-to-r:before{
  content:"\f249";
}
.zmdi-format-textdirection-r-to-l:before{
  content:"\f24a";
}
.zmdi-arrow-back:before{
  content:"\f2ea";
}
.zmdi-arrow-forward:before{
  content:"\f2ee";
}
.zmdi-arrow-in:before{
  content:"\f2e9";
}
.zmdi-arrow-out:before{
  content:"\f2ed";
}
.zmdi-rotate-90-degrees-ccw:before{
  content:"\f304";
}
.zmdi-adb:before{
  content:"\f33a";
}
.zmdi-network-wifi:before{
  content:"\f2e8";
}
.zmdi-network-wifi-alt:before{
  content:"\f2e3";
}
.zmdi-network-wifi-lock:before{
  content:"\f2e5";
}
.zmdi-network-wifi-off:before{
  content:"\f2e6";
}
.zmdi-network-wifi-outline:before{
  content:"\f2e7";
}
.zmdi-network-wifi-info:before{
  content:"\f2e4";
}
.zmdi-layers-clear:before{
  content:"\f18b";
}
.zmdi-colorize:before{
  content:"\f15d";
}
.zmdi-format-paint:before{
  content:"\f1ba";
}
.zmdi-format-quote:before{
  content:"\f1b2";
}
.zmdi-camera-monochrome-photos:before{
  content:"\f285";
}
.zmdi-sort-by-alpha:before{
  content:"\f1cf";
}
.zmdi-folder-shared:before{
  content:"\f225";
}
.zmdi-folder-special:before{
  content:"\f226";
}
.zmdi-comment-dots:before{
  content:"\f260";
}
.zmdi-reorder:before{
  content:"\f31e";
}
.zmdi-dehaze:before{
  content:"\f197";
}
.zmdi-sort:before{
  content:"\f1ce";
}
.zmdi-pages:before{
  content:"\f34a";
}
.zmdi-stack-overflow:before{
  content:"\f35c";
}
.zmdi-calendar-account:before{
  content:"\f204";
}
.zmdi-paste:before{
  content:"\f109";
}
.zmdi-cut:before{
  content:"\f1bc";
}
.zmdi-save:before{
  content:"\f297";
}
.zmdi-smartphone-code:before{
  content:"\f139";
}
.zmdi-directions-bike:before{
  content:"\f117";
}
.zmdi-directions-boat:before{
  content:"\f11a";
}
.zmdi-directions-bus:before{
  content:"\f121";
}
.zmdi-directions-car:before{
  content:"\f125";
}
.zmdi-directions-railway:before{
  content:"\f1b3";
}
.zmdi-directions-run:before{
  content:"\f215";
}
.zmdi-directions-subway:before{
  content:"\f1d5";
}
.zmdi-directions-walk:before{
  content:"\f216";
}
.zmdi-local-hotel:before{
  content:"\f178";
}
.zmdi-local-activity:before,.zmdi-local-play:before{
  content:"\f1df";
}
.zmdi-local-airport:before{
  content:"\f103";
}
.zmdi-local-atm:before{
  content:"\f198";
}
.zmdi-local-bar:before{
  content:"\f137";
}
.zmdi-local-cafe:before{
  content:"\f13b";
}
.zmdi-local-car-wash:before{
  content:"\f124";
}
.zmdi-local-convenience-store:before{
  content:"\f1d3";
}
.zmdi-local-dining:before{
  content:"\f153";
}
.zmdi-local-drink:before{
  content:"\f157";
}
.zmdi-local-florist:before{
  content:"\f168";
}
.zmdi-local-gas-station:before{
  content:"\f16f";
}
.zmdi-local-grocery-store:before{
  content:"\f1cb";
}
.zmdi-local-hospital:before{
  content:"\f177";
}
.zmdi-local-laundry-service:before{
  content:"\f1e9";
}
.zmdi-local-library:before{
  content:"\f18d";
}
.zmdi-local-mall:before{
  content:"\f195";
}
.zmdi-local-movies:before{
  content:"\f19d";
}
.zmdi-local-offer:before{
  content:"\f187";
}
.zmdi-local-parking:before{
  content:"\f1a5";
}
.zmdi-local-pharmacy:before{
  content:"\f176";
}
.zmdi-local-phone:before{
  content:"\f2be";
}
.zmdi-local-pizza:before{
  content:"\f1ac";
}
.zmdi-local-post-office:before{
  content:"\f15a";
}
.zmdi-local-printshop:before{
  content:"\f1b0";
}
.zmdi-local-see:before{
  content:"\f28c";
}
.zmdi-local-shipping:before{
  content:"\f1e6";
}
.zmdi-local-store:before{
  content:"\f1d4";
}
.zmdi-local-taxi:before{
  content:"\f123";
}
.zmdi-local-wc:before{
  content:"\f211";
}
.zmdi-my-location:before{
  content:"\f299";
}
.zmdi-directions:before{
  content:"\f1e7";
}
@font-face{
	font-family:ElegantIcons;
	src:url(/wp-content/themes/vapier/fonts/ElegantIcons.eot);
	src:url(/wp-content/themes/vapier/fonts/ElegantIcons.eot?#iefix) format("embedded-opentype"),url(/wp-content/themes/vapier/fonts/ElegantIcons.woff) format("woff"),url(/wp-content/themes/vapier/fonts/ElegantIcons.ttf) format("truetype"),url(/wp-content/themes/vapier/fonts/ElegantIcons.svg#ElegantIcons) format("svg");
	font-weight:400;
	font-style:normal;
}
[data-icon]:before{
	font-family:ElegantIcons;
	content:attr(data-icon);
	speak:none;
	font-weight:400;
	font-variant:normal;
	text-transform:none;
	line-height:1;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
.arrow-up-down,.arrow_back,.arrow_carrot-2down,.arrow_carrot-2down_alt2,.arrow_carrot-2dwnn_alt,.arrow_carrot-2left,.arrow_carrot-2left_alt,.arrow_carrot-2left_alt2,.arrow_carrot-2right,.arrow_carrot-2right_alt,.arrow_carrot-2right_alt2,.arrow_carrot-2up,.arrow_carrot-2up_alt,.arrow_carrot-2up_alt2,.arrow_carrot-down,.arrow_carrot-down_alt,.arrow_carrot-down_alt2,.arrow_carrot-left,.arrow_carrot-left_alt,.arrow_carrot-left_alt2,.arrow_carrot-right,.arrow_carrot-right_alt,.arrow_carrot-right_alt2,.arrow_carrot-up,.arrow_carrot-up_alt2,.arrow_carrot_up_alt,.arrow_condense,.arrow_condense_alt,.arrow_down,.arrow_down_alt,.arrow_expand,.arrow_expand_alt,.arrow_expand_alt2,.arrow_expand_alt3,.arrow_left,.arrow_left-down,.arrow_left-down_alt,.arrow_left-right,.arrow_left-right_alt,.arrow_left-up,.arrow_left-up_alt,.arrow_left_alt,.arrow_move,.arrow_right,.arrow_right-down,.arrow_right-down_alt,.arrow_right-up,.arrow_right-up_alt,.arrow_right_alt,.arrow_triangle-down,.arrow_triangle-down_alt,.arrow_triangle-down_alt2,.arrow_triangle-left,.arrow_triangle-left_alt,.arrow_triangle-left_alt2,.arrow_triangle-right,.arrow_triangle-right_alt,.arrow_triangle-right_alt2,.arrow_triangle-up,.arrow_triangle-up_alt,.arrow_triangle-up_alt2,.arrow_up,.arrow_up-down_alt,.arrow_up_alt,.icon_adjust-horiz,.icon_adjust-vert,.icon_archive,.icon_archive_alt,.icon_bag,.icon_bag_alt,.icon_balance,.icon_blocked,.icon_book,.icon_book_alt,.icon_box-checked,.icon_box-empty,.icon_box-selected,.icon_briefcase,.icon_briefcase_alt,.icon_building,.icon_building_alt,.icon_calculator_alt,.icon_calendar,.icon_calulator,.icon_camera,.icon_camera_alt,.icon_cart,.icon_cart_alt,.icon_chat,.icon_chat_alt,.icon_check,.icon_check_alt,.icon_check_alt2,.icon_circle-empty,.icon_circle-slelected,.icon_clipboard,.icon_clock,.icon_clock_alt,.icon_close,.icon_close_alt,.icon_close_alt2,.icon_cloud,.icon_cloud-download,.icon_cloud-download_alt,.icon_cloud-upload,.icon_cloud-upload_alt,.icon_cloud_alt,.icon_cog,.icon_cogs,.icon_comment,.icon_comment_alt,.icon_compass,.icon_compass_alt,.icon_cone,.icon_cone_alt,.icon_contacts,.icon_contacts_alt,.icon_creditcard,.icon_currency,.icon_currency_alt,.icon_cursor,.icon_cursor_alt,.icon_datareport,.icon_datareport_alt,.icon_desktop,.icon_dislike,.icon_dislike_alt,.icon_document,.icon_document_alt,.icon_documents,.icon_documents_alt,.icon_download,.icon_drawer,.icon_drawer_alt,.icon_drive,.icon_drive_alt,.icon_easel,.icon_easel_alt,.icon_error-circle,.icon_error-circle_alt,.icon_error-oct,.icon_error-oct_alt,.icon_error-triangle,.icon_error-triangle_alt,.icon_film,.icon_floppy,.icon_floppy_alt,.icon_flowchart,.icon_flowchart_alt,.icon_folder,.icon_folder-add,.icon_folder-add_alt,.icon_folder-alt,.icon_folder-open,.icon_folder-open_alt,.icon_folder_download,.icon_folder_upload,.icon_genius,.icon_gift,.icon_gift_alt,.icon_globe,.icon_globe-2,.icon_globe_alt,.icon_grid-2x2,.icon_grid-3x3,.icon_group,.icon_headphones,.icon_heart,.icon_heart_alt,.icon_hourglass,.icon_house,.icon_house_alt,.icon_id,.icon_id-2,.icon_id-2_alt,.icon_id_alt,.icon_image,.icon_images,.icon_info,.icon_info_alt,.icon_key,.icon_key_alt,.icon_laptop,.icon_lifesaver,.icon_lightbulb,.icon_lightbulb_alt,.icon_like,.icon_like_alt,.icon_link,.icon_link_alt,.icon_loading,.icon_lock,.icon_lock-open,.icon_lock-open_alt,.icon_lock_alt,.icon_mail,.icon_mail_alt,.icon_map,.icon_map_alt,.icon_menu,.icon_menu-circle_alt,.icon_menu-circle_alt2,.icon_menu-square_alt,.icon_menu-square_alt2,.icon_mic,.icon_mic_alt,.icon_minus-06,.icon_minus-box,.icon_minus_alt,.icon_minus_alt2,.icon_mobile,.icon_mug,.icon_mug_alt,.icon_music,.icon_ol,.icon_paperclip,.icon_pause,.icon_pause_alt,.icon_pause_alt2,.icon_pencil,.icon_pencil-edit,.icon_pencil-edit_alt,.icon_pencil_alt,.icon_pens,.icon_pens_alt,.icon_percent,.icon_percent_alt,.icon_phone,.icon_piechart,.icon_pin,.icon_pin_alt,.icon_plus,.icon_plus-box,.icon_plus_alt,.icon_plus_alt2,.icon_printer,.icon_printer-alt,.icon_profile,.icon_pushpin,.icon_pushpin_alt,.icon_puzzle,.icon_puzzle_alt,.icon_question,.icon_question_alt,.icon_question_alt2,.icon_quotations,.icon_quotations_alt,.icon_quotations_alt2,.icon_refresh,.icon_ribbon,.icon_ribbon_alt,.icon_rook,.icon_search,.icon_search-2,.icon_search_alt,.icon_shield,.icon_shield_alt,.icon_star,.icon_star-half,.icon_star-half_alt,.icon_star_alt,.icon_stop,.icon_stop_alt,.icon_stop_alt2,.icon_table,.icon_tablet,.icon_tag,.icon_tag_alt,.icon_tags,.icon_tags_alt,.icon_target,.icon_tool,.icon_toolbox,.icon_toolbox_alt,.icon_tools,.icon_trash,.icon_trash_alt,.icon_ul,.icon_upload,.icon_vol-mute,.icon_vol-mute_alt,.icon_volume-high,.icon_volume-high_alt,.icon_volume-low,.icon_volume-low_alt,.icon_wallet,.icon_wallet_alt,.icon_zoom-in,.icon_zoom-in_alt,.icon_zoom-out,.icon_zoom-out_alt,.social_blogger,.social_blogger_circle,.social_blogger_square,.social_delicious,.social_delicious_circle,.social_delicious_square,.social_deviantart,.social_deviantart_circle,.social_deviantart_square,.social_dribbble,.social_dribbble_circle,.social_dribbble_square,.social_facebook,.social_facebook_circle,.social_facebook_square,.social_flickr,.social_flickr_circle,.social_flickr_square,.social_googledrive,.social_googledrive_alt2,.social_googledrive_square,.social_googleplus,.social_googleplus_circle,.social_googleplus_square,.social_instagram,.social_instagram_circle,.social_instagram_square,.social_linkedin,.social_linkedin_circle,.social_linkedin_square,.social_myspace,.social_myspace_circle,.social_myspace_square,.social_picassa,.social_picassa_circle,.social_picassa_square,.social_pinterest,.social_pinterest_circle,.social_pinterest_square,.social_rss,.social_rss_circle,.social_rss_square,.social_share,.social_share_circle,.social_share_square,.social_skype,.social_skype_circle,.social_skype_square,.social_spotify,.social_spotify_circle,.social_spotify_square,.social_stumbleupon_circle,.social_stumbleupon_square,.social_tumbleupon,.social_tumblr,.social_tumblr_circle,.social_tumblr_square,.social_twitter,.social_twitter_circle,.social_twitter_square,.social_vimeo,.social_vimeo_circle,.social_vimeo_square,.social_wordpress,.social_wordpress_circle,.social_wordpress_square,.social_youtube,.social_youtube_circle,.social_youtube_square{
	font-family:ElegantIcons;
	speak:none;
	font-style:normal;
	font-weight:400;
	font-variant:normal;
	text-transform:none;
	line-height:1;
	-webkit-font-smoothing:antialiased;
}
.arrow_up:before{
	content:"\21";
}
.arrow_down:before{
	content:"\22";
}
.arrow_left:before{
	content:"\23";
}
.arrow_right:before{
	content:"\24";
}
.arrow_left-up:before{
	content:"\25";
}
.arrow_right-up:before{
	content:"\26";
}
.arrow_right-down:before{
	content:"\27";
}
.arrow_left-down:before{
	content:"\28";
}
.arrow-up-down:before{
	content:"\29";
}
.arrow_up-down_alt:before{
	content:"\2a";
}
.arrow_left-right_alt:before{
	content:"\2b";
}
.arrow_left-right:before{
	content:"\2c";
}
.arrow_expand_alt2:before{
	content:"\2d";
}
.arrow_expand_alt:before{
	content:"\2e";
}
.arrow_condense:before{
	content:"\2f";
}
.arrow_expand:before{
	content:"\30";
}
.arrow_move:before{
	content:"\31";
}
.arrow_carrot-up:before{
	content:"\32";
}
.arrow_carrot-down:before{
	content:"\33";
}
.arrow_carrot-left:before{
	content:"\34";
}
.arrow_carrot-right:before{
	content:"\35";
}
.arrow_carrot-2up:before{
	content:"\36";
}
.arrow_carrot-2down:before{
	content:"\37";
}
.arrow_carrot-2left:before{
	content:"\38";
}
.arrow_carrot-2right:before{
	content:"\39";
}
.arrow_carrot-up_alt2:before{
	content:"\3a";
}
.arrow_carrot-down_alt2:before{
	content:"\3b";
}
.arrow_carrot-left_alt2:before{
	content:"\3c";
}
.arrow_carrot-right_alt2:before{
	content:"\3d";
}
.arrow_carrot-2up_alt2:before{
	content:"\3e";
}
.arrow_carrot-2down_alt2:before{
	content:"\3f";
}
.arrow_carrot-2left_alt2:before{
	content:"\40";
}
.arrow_carrot-2right_alt2:before{
	content:"\41";
}
.arrow_triangle-up:before{
	content:"\42";
}
.arrow_triangle-down:before{
	content:"\43";
}
.arrow_triangle-left:before{
	content:"\44";
}
.arrow_triangle-right:before{
	content:"\45";
}
.arrow_triangle-up_alt2:before{
	content:"\46";
}
.arrow_triangle-down_alt2:before{
	content:"\47";
}
.arrow_triangle-left_alt2:before{
	content:"\48";
}
.arrow_triangle-right_alt2:before{
	content:"\49";
}
.arrow_back:before{
	content:"\4a";
}
.icon_minus-06:before{
	content:"\4b";
}
.icon_plus:before{
	content:"\4c";
}
.icon_close:before{
	content:"\4d";
}
.icon_check:before{
	content:"\4e";
}
.icon_minus_alt2:before{
	content:"\4f";
}
.icon_plus_alt2:before{
	content:"\50";
}
.icon_close_alt2:before{
	content:"\51";
}
.icon_check_alt2:before{
	content:"\52";
}
.icon_zoom-out_alt:before{
	content:"\53";
}
.icon_zoom-in_alt:before{
	content:"\54";
}
.icon_search:before{
	content:"\55";
}
.icon_box-empty:before{
	content:"\56";
}
.icon_box-selected:before{
	content:"\57";
}
.icon_minus-box:before{
	content:"\58";
}
.icon_plus-box:before{
	content:"\59";
}
.icon_box-checked:before{
	content:"\5a";
}
.icon_circle-empty:before{
	content:"\5b";
}
.icon_circle-slelected:before{
	content:"\5c";
}
.icon_stop_alt2:before{
	content:"\5d";
}
.icon_stop:before{
	content:"\5e";
}
.icon_pause_alt2:before{
	content:"\5f";
}
.icon_pause:before{
	content:"\60";
}
.icon_menu:before{
	content:"\61";
}
.icon_menu-square_alt2:before{
	content:"\62";
}
.icon_menu-circle_alt2:before{
	content:"\63";
}
.icon_ul:before{
	content:"\64";
}
.icon_ol:before{
	content:"\65";
}
.icon_adjust-horiz:before{
	content:"\66";
}
.icon_adjust-vert:before{
	content:"\67";
}
.icon_document_alt:before{
	content:"\68";
}
.icon_documents_alt:before{
	content:"\69";
}
.icon_pencil:before{
	content:"\6a";
}
.icon_pencil-edit_alt:before{
	content:"\6b";
}
.icon_pencil-edit:before{
	content:"\6c";
}
.icon_folder-alt:before{
	content:"\6d";
}
.icon_folder-open_alt:before{
	content:"\6e";
}
.icon_folder-add_alt:before{
	content:"\6f";
}
.icon_info_alt:before{
	content:"\70";
}
.icon_error-oct_alt:before{
	content:"\71";
}
.icon_error-circle_alt:before{
	content:"\72";
}
.icon_error-triangle_alt:before{
	content:"\73";
}
.icon_question_alt2:before{
	content:"\74";
}
.icon_question:before{
	content:"\75";
}
.icon_comment_alt:before{
	content:"\76";
}
.icon_chat_alt:before{
	content:"\77";
}
.icon_vol-mute_alt:before{
	content:"\78";
}
.icon_volume-low_alt:before{
	content:"\79";
}
.icon_volume-high_alt:before{
	content:"\7a";
}
.icon_quotations:before{
	content:"\7b";
}
.icon_quotations_alt2:before{
	content:"\7c";
}
.icon_clock_alt:before{
	content:"\7d";
}
.icon_lock_alt:before{
	content:"\7e";
}
.icon_lock-open_alt:before{
	content:"\e000";
}
.icon_key_alt:before{
	content:"\e001";
}
.icon_cloud_alt:before{
	content:"\e002";
}
.icon_cloud-upload_alt:before{
	content:"\e003";
}
.icon_cloud-download_alt:before{
	content:"\e004";
}
.icon_image:before{
	content:"\e005";
}
.icon_images:before{
	content:"\e006";
}
.icon_lightbulb_alt:before{
	content:"\e007";
}
.icon_gift_alt:before{
	content:"\e008";
}
.icon_house_alt:before{
	content:"\e009";
}
.icon_genius:before{
	content:"\e00a";
}
.icon_mobile:before{
	content:"\e00b";
}
.icon_tablet:before{
	content:"\e00c";
}
.icon_laptop:before{
	content:"\e00d";
}
.icon_desktop:before{
	content:"\e00e";
}
.icon_camera_alt:before{
	content:"\e00f";
}
.icon_mail_alt:before{
	content:"\e010";
}
.icon_cone_alt:before{
	content:"\e011";
}
.icon_ribbon_alt:before{
	content:"\e012";
}
.icon_bag_alt:before{
	content:"\e013";
}
.icon_creditcard:before{
	content:"\e014";
}
.icon_cart_alt:before{
	content:"\e015";
}
.icon_paperclip:before{
	content:"\e016";
}
.icon_tag_alt:before{
	content:"\e017";
}
.icon_tags_alt:before{
	content:"\e018";
}
.icon_trash_alt:before{
	content:"\e019";
}
.icon_cursor_alt:before{
	content:"\e01a";
}
.icon_mic_alt:before{
	content:"\e01b";
}
.icon_compass_alt:before{
	content:"\e01c";
}
.icon_pin_alt:before{
	content:"\e01d";
}
.icon_pushpin_alt:before{
	content:"\e01e";
}
.icon_map_alt:before{
	content:"\e01f";
}
.icon_drawer_alt:before{
	content:"\e020";
}
.icon_toolbox_alt:before{
	content:"\e021";
}
.icon_book_alt:before{
	content:"\e022";
}
.icon_calendar:before{
	content:"\e023";
}
.icon_film:before{
	content:"\e024";
}
.icon_table:before{
	content:"\e025";
}
.icon_contacts_alt:before{
	content:"\e026";
}
.icon_headphones:before{
	content:"\e027";
}
.icon_lifesaver:before{
	content:"\e028";
}
.icon_piechart:before{
	content:"\e029";
}
.icon_refresh:before{
	content:"\e02a";
}
.icon_link_alt:before{
	content:"\e02b";
}
.icon_link:before{
	content:"\e02c";
}
.icon_loading:before{
	content:"\e02d";
}
.icon_blocked:before{
	content:"\e02e";
}
.icon_archive_alt:before{
	content:"\e02f";
}
.icon_heart_alt:before{
	content:"\e030";
}
.icon_star_alt:before{
	content:"\e031";
}
.icon_star-half_alt:before{
	content:"\e032";
}
.icon_star:before{
	content:"\e033";
}
.icon_star-half:before{
	content:"\e034";
}
.icon_tools:before{
	content:"\e035";
}
.icon_tool:before{
	content:"\e036";
}
.icon_cog:before{
	content:"\e037";
}
.icon_cogs:before{
	content:"\e038";
}
.arrow_up_alt:before{
	content:"\e039";
}
.arrow_down_alt:before{
	content:"\e03a";
}
.arrow_left_alt:before{
	content:"\e03b";
}
.arrow_right_alt:before{
	content:"\e03c";
}
.arrow_left-up_alt:before{
	content:"\e03d";
}
.arrow_right-up_alt:before{
	content:"\e03e";
}
.arrow_right-down_alt:before{
	content:"\e03f";
}
.arrow_left-down_alt:before{
	content:"\e040";
}
.arrow_condense_alt:before{
	content:"\e041";
}
.arrow_expand_alt3:before{
	content:"\e042";
}
.arrow_carrot_up_alt:before{
	content:"\e043";
}
.arrow_carrot-down_alt:before{
	content:"\e044";
}
.arrow_carrot-left_alt:before{
	content:"\e045";
}
.arrow_carrot-right_alt:before{
	content:"\e046";
}
.arrow_carrot-2up_alt:before{
	content:"\e047";
}
.arrow_carrot-2dwnn_alt:before{
	content:"\e048";
}
.arrow_carrot-2left_alt:before{
	content:"\e049";
}
.arrow_carrot-2right_alt:before{
	content:"\e04a";
}
.arrow_triangle-up_alt:before{
	content:"\e04b";
}
.arrow_triangle-down_alt:before{
	content:"\e04c";
}
.arrow_triangle-left_alt:before{
	content:"\e04d";
}
.arrow_triangle-right_alt:before{
	content:"\e04e";
}
.icon_minus_alt:before{
	content:"\e04f";
}
.icon_plus_alt:before{
	content:"\e050";
}
.icon_close_alt:before{
	content:"\e051";
}
.icon_check_alt:before{
	content:"\e052";
}
.icon_zoom-out:before{
	content:"\e053";
}
.icon_zoom-in:before{
	content:"\e054";
}
.icon_stop_alt:before{
	content:"\e055";
}
.icon_menu-square_alt:before{
	content:"\e056";
}
.icon_menu-circle_alt:before{
	content:"\e057";
}
.icon_document:before{
	content:"\e058";
}
.icon_documents:before{
	content:"\e059";
}
.icon_pencil_alt:before{
	content:"\e05a";
}
.icon_folder:before{
	content:"\e05b";
}
.icon_folder-open:before{
	content:"\e05c";
}
.icon_folder-add:before{
	content:"\e05d";
}
.icon_folder_upload:before{
	content:"\e05e";
}
.icon_folder_download:before{
	content:"\e05f";
}
.icon_info:before{
	content:"\e060";
}
.icon_error-circle:before{
	content:"\e061";
}
.icon_error-oct:before{
	content:"\e062";
}
.icon_error-triangle:before{
	content:"\e063";
}
.icon_question_alt:before{
	content:"\e064";
}
.icon_comment:before{
	content:"\e065";
}
.icon_chat:before{
	content:"\e066";
}
.icon_vol-mute:before{
	content:"\e067";
}
.icon_volume-low:before{
	content:"\e068";
}
.icon_volume-high:before{
	content:"\e069";
}
.icon_quotations_alt:before{
	content:"\e06a";
}
.icon_clock:before{
	content:"\e06b";
}
.icon_lock:before{
	content:"\e06c";
}
.icon_lock-open:before{
	content:"\e06d";
}
.icon_key:before{
	content:"\e06e";
}
.icon_cloud:before{
	content:"\e06f";
}
.icon_cloud-upload:before{
	content:"\e070";
}
.icon_cloud-download:before{
	content:"\e071";
}
.icon_lightbulb:before{
	content:"\e072";
}
.icon_gift:before{
	content:"\e073";
}
.icon_house:before{
	content:"\e074";
}
.icon_camera:before{
	content:"\e075";
}
.icon_mail:before{
	content:"\e076";
}
.icon_cone:before{
	content:"\e077";
}
.icon_ribbon:before{
	content:"\e078";
}
.icon_bag:before{
	content:"\e079";
}
.icon_cart:before{
	content:"\e07a";
}
.icon_tag:before{
	content:"\e07b";
}
.icon_tags:before{
	content:"\e07c";
}
.icon_trash:before{
	content:"\e07d";
}
.icon_cursor:before{
	content:"\e07e";
}
.icon_mic:before{
	content:"\e07f";
}
.icon_compass:before{
	content:"\e080";
}
.icon_pin:before{
	content:"\e081";
}
.icon_pushpin:before{
	content:"\e082";
}
.icon_map:before{
	content:"\e083";
}
.icon_drawer:before{
	content:"\e084";
}
.icon_toolbox:before{
	content:"\e085";
}
.icon_book:before{
	content:"\e086";
}
.icon_contacts:before{
	content:"\e087";
}
.icon_archive:before{
	content:"\e088";
}
.icon_heart:before{
	content:"\e089";
}
.icon_profile:before{
	content:"\e08a";
}
.icon_group:before{
	content:"\e08b";
}
.icon_grid-2x2:before{
	content:"\e08c";
}
.icon_grid-3x3:before{
	content:"\e08d";
}
.icon_music:before{
	content:"\e08e";
}
.icon_pause_alt:before{
	content:"\e08f";
}
.icon_phone:before{
	content:"\e090";
}
.icon_upload:before{
	content:"\e091";
}
.icon_download:before{
	content:"\e092";
}
.social_facebook:before{
	content:"\e093";
}
.social_twitter:before{
	content:"\e094";
}
.social_pinterest:before{
	content:"\e095";
}
.social_googleplus:before{
	content:"\e096";
}
.social_tumblr:before{
	content:"\e097";
}
.social_tumbleupon:before{
	content:"\e098";
}
.social_wordpress:before{
	content:"\e099";
}
.social_instagram:before{
	content:"\e09a";
}
.social_dribbble:before{
	content:"\e09b";
}
.social_vimeo:before{
	content:"\e09c";
}
.social_linkedin:before{
	content:"\e09d";
}
.social_rss:before{
	content:"\e09e";
}
.social_deviantart:before{
	content:"\e09f";
}
.social_share:before{
	content:"\e0a0";
}
.social_myspace:before{
	content:"\e0a1";
}
.social_skype:before{
	content:"\e0a2";
}
.social_youtube:before{
	content:"\e0a3";
}
.social_picassa:before{
	content:"\e0a4";
}
.social_googledrive:before{
	content:"\e0a5";
}
.social_flickr:before{
	content:"\e0a6";
}
.social_blogger:before{
	content:"\e0a7";
}
.social_spotify:before{
	content:"\e0a8";
}
.social_delicious:before{
	content:"\e0a9";
}
.social_facebook_circle:before{
	content:"\e0aa";
}
.social_twitter_circle:before{
	content:"\e0ab";
}
.social_pinterest_circle:before{
	content:"\e0ac";
}
.social_googleplus_circle:before{
	content:"\e0ad";
}
.social_tumblr_circle:before{
	content:"\e0ae";
}
.social_stumbleupon_circle:before{
	content:"\e0af";
}
.social_wordpress_circle:before{
	content:"\e0b0";
}
.social_instagram_circle:before{
	content:"\e0b1";
}
.social_dribbble_circle:before{
	content:"\e0b2";
}
.social_vimeo_circle:before{
	content:"\e0b3";
}
.social_linkedin_circle:before{
	content:"\e0b4";
}
.social_rss_circle:before{
	content:"\e0b5";
}
.social_deviantart_circle:before{
	content:"\e0b6";
}
.social_share_circle:before{
	content:"\e0b7";
}
.social_myspace_circle:before{
	content:"\e0b8";
}
.social_skype_circle:before{
	content:"\e0b9";
}
.social_youtube_circle:before{
	content:"\e0ba";
}
.social_picassa_circle:before{
	content:"\e0bb";
}
.social_googledrive_alt2:before{
	content:"\e0bc";
}
.social_flickr_circle:before{
	content:"\e0bd";
}
.social_blogger_circle:before{
	content:"\e0be";
}
.social_spotify_circle:before{
	content:"\e0bf";
}
.social_delicious_circle:before{
	content:"\e0c0";
}
.social_facebook_square:before{
	content:"\e0c1";
}
.social_twitter_square:before{
	content:"\e0c2";
}
.social_pinterest_square:before{
	content:"\e0c3";
}
.social_googleplus_square:before{
	content:"\e0c4";
}
.social_tumblr_square:before{
	content:"\e0c5";
}
.social_stumbleupon_square:before{
	content:"\e0c6";
}
.social_wordpress_square:before{
	content:"\e0c7";
}
.social_instagram_square:before{
	content:"\e0c8";
}
.social_dribbble_square:before{
	content:"\e0c9";
}
.social_vimeo_square:before{
	content:"\e0ca";
}
.social_linkedin_square:before{
	content:"\e0cb";
}
.social_rss_square:before{
	content:"\e0cc";
}
.social_deviantart_square:before{
	content:"\e0cd";
}
.social_share_square:before{
	content:"\e0ce";
}
.social_myspace_square:before{
	content:"\e0cf";
}
.social_skype_square:before{
	content:"\e0d0";
}
.social_youtube_square:before{
	content:"\e0d1";
}
.social_picassa_square:before{
	content:"\e0d2";
}
.social_googledrive_square:before{
	content:"\e0d3";
}
.social_flickr_square:before{
	content:"\e0d4";
}
.social_blogger_square:before{
	content:"\e0d5";
}
.social_spotify_square:before{
	content:"\e0d6";
}
.social_delicious_square:before{
	content:"\e0d7";
}
.icon_printer:before{
	content:"\e103";
}
.icon_calulator:before{
	content:"\e0ee";
}
.icon_building:before{
	content:"\e0ef";
}
.icon_floppy:before{
	content:"\e0e8";
}
.icon_drive:before{
	content:"\e0ea";
}
.icon_search-2:before{
	content:"\e101";
}
.icon_id:before{
	content:"\e107";
}
.icon_id-2:before{
	content:"\e108";
}
.icon_puzzle:before{
	content:"\e102";
}
.icon_like:before{
	content:"\e106";
}
.icon_dislike:before{
	content:"\e0eb";
}
.icon_mug:before{
	content:"\e105";
}
.icon_currency:before{
	content:"\e0ed";
}
.icon_wallet:before{
	content:"\e100";
}
.icon_pens:before{
	content:"\e104";
}
.icon_easel:before{
	content:"\e0e9";
}
.icon_flowchart:before{
	content:"\e109";
}
.icon_datareport:before{
	content:"\e0ec";
}
.icon_briefcase:before{
	content:"\e0fe";
}
.icon_shield:before{
	content:"\e0f6";
}
.icon_percent:before{
	content:"\e0fb";
}
.icon_globe:before{
	content:"\e0e2";
}
.icon_globe-2:before{
	content:"\e0e3";
}
.icon_target:before{
	content:"\e0f5";
}
.icon_hourglass:before{
	content:"\e0e1";
}
.icon_balance:before{
	content:"\e0ff";
}
.icon_rook:before{
	content:"\e0f8";
}
.icon_printer-alt:before{
	content:"\e0fa";
}
.icon_calculator_alt:before{
	content:"\e0e7";
}
.icon_building_alt:before{
	content:"\e0fd";
}
.icon_floppy_alt:before{
	content:"\e0e4";
}
.icon_drive_alt:before{
	content:"\e0e5";
}
.icon_search_alt:before{
	content:"\e0f7";
}
.icon_id_alt:before{
	content:"\e0e0";
}
.icon_id-2_alt:before{
	content:"\e0fc";
}
.icon_puzzle_alt:before{
	content:"\e0f9";
}
.icon_like_alt:before{
	content:"\e0dd";
}
.icon_dislike_alt:before{
	content:"\e0f1";
}
.icon_mug_alt:before{
	content:"\e0dc";
}
.icon_currency_alt:before{
	content:"\e0f3";
}
.icon_wallet_alt:before{
	content:"\e0d8";
}
.icon_pens_alt:before{
	content:"\e0db";
}
.icon_easel_alt:before{
	content:"\e0f0";
}
.icon_flowchart_alt:before{
	content:"\e0df";
}
.icon_datareport_alt:before{
	content:"\e0f2";
}
.icon_briefcase_alt:before{
	content:"\e0f4";
}
.icon_shield_alt:before{
	content:"\e0d9";
}
.icon_percent_alt:before{
	content:"\e0da";
}
.icon_globe_alt:before{
	content:"\e0de";
}
.icon_clipboard:before{
	content:"\e0e6";
}


	.glyph{
		float:left;
		text-align:center;
		padding:.75em;
		margin:.4em 1.5em .75em 0;
		width:6em;
text-shadow:none;
	}
        .glyph_big{
        font-size:128px;
        color:#59c5dc;
        float:left;
        margin-right:20px;
        }

        .glyph div{ padding-bottom:10px;}

	.glyph input{
		font-family:consolas,monospace;
		font-size:12px;
		width:100%;
		text-align:center;
		border:0;
		box-shadow:0 0 0 1px #ccc;
		padding:.2em;
                -moz-border-radius:5px;
                -webkit-border-radius:5px;
	}
	.centered{
		margin-left:auto;
		margin-right:auto;
	}
	.glyph .fs1{
		font-size:2em;
	}

	
@font-face{
  font-family:wpbingofont;
  src:url(/wp-content/themes/vapier/fonts/wpbingo.eot?fzv6fp);
  src:url(/wp-content/themes/vapier/fonts/wpbingo.eot?fzv6fp#iefix) format("embedded-opentype"),url(/wp-content/themes/vapier/fonts/wpbingo.ttf?fzv6fp) format("truetype"),url(/wp-content/themes/vapier/fonts/wpbingo.woff?fzv6fp) format("woff"),url(/wp-content/themes/vapier/fonts/wpbingo.svg?fzv6fp#wpbingo) format("svg");
  font-weight:400;
  font-style:normal;
  font-display:block;
}

[class*=" wpb-icon-"],[class^=wpb-icon-]{
  font-family:wpbingofont;
  speak:none;
  font-style:normal;
  font-weight:400;
  font-variant:normal;
  text-transform:none;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.wpb-icon-expand:before{
  content:"\e923";
}
.wpb-icon-calendar:before{
  content:"\e922";
}
.wpb-icon-youtube:before{
  content:"\e921";
}
.wpb-icon-gallery:before{
  content:"\e920";
}
.wpb-icon-info:before{
  content:"\e91e";
}
.wpb-icon-comment:before{
  content:"\e91d";
}
.wpb-icon-gift-voucher:before{
  content:"\e91c";
}
.wpb-icon-left-arrow:before{
  content:"\e91a";
}
.wpb-icon-right-arrow:before{
  content:"\e91b";
}
.wpb-icon-chat:before{
  content:"\e919";
}
.wpb-icon-content-writing:before{
  content:"\e918";
}
.wpb-icon-levels:before{
  content:"\e917";
}
.wpb-icon-play-video:before{
  content:"\e912";
}
.wpb-icon-d-design:before{
  content:"\e911";
}
.wpb-icon-login1:before{
  content:"\e915";
}
.wpb-icon-user2:before{
  content:"\e916";
}
.wpb-icon-large-paper-bag-empty:before{
  content:"\e914";
}
.wpb-icon-ruler:before{
  content:"\e913";
}
.wpb-icon-shopping-cart:before{
  content:"\e912";
}
.wpb-icon-mail:before{
  content:"\e90e";
}
.wpb-icon-lock:before{
  content:"\e90f";
}
.wpb-icon-user1:before{
  content:"\e910";
}
.wpb-icon-login:before{
  content:"\e911";
}
.wpb-icon-circular:before{
  content:"\e90d";
}
.wpb-icon-shop:before{
  content:"\e907";
}
.wpb-icon-menu-vertical:before{
  content:"\e908";
}
.wpb-icon-menu:before{
  content:"\e909";
}
.wpb-icon-heart:before{
  content:"\e90a";
}
.wpb-icon-magnifying-glass:before{
  content:"\e90b";
}
.wpb-icon-user:before{
  content:"\e90c";
}
.wpb-icon-shield2:before{
  content:"\e900";
}
.wpb-icon-delivery:before{
  content:"\e901";
}
.wpb-icon-refund:before{
  content:"\e902";
}
.wpb-icon-plane:before{
  content:"\e903";
}
.wpb-icon-ship-car:before{
  content:"\e904";
}
.wpb-icon-sticker:before{
  content:"\e905";
}
.wpb-icon-security-on:before{
  content:"\e906";
}

@font-face{
  font-family:icomoon;
  src:url(/wp-content/themes/vapier/fonts/icomoon.eot?fzv6fp);
  src:url(/wp-content/themes/vapier/fonts/icomoon.eot?fzv6fp#iefix) format("embedded-opentype"),url(/wp-content/themes/vapier/fonts/icomoon.ttf?fzv6fp) format("truetype"),url(/wp-content/themes/vapier/fonts/icomoon.woff?fzv6fp) format("woff"),url(/wp-content/themes/vapier/fonts/icomoon.svg?fzv6fp#icomoon) format("svg");
  font-weight:400;
  font-style:normal;
  font-display:block;
}

[class*=" icon-"],[class^=icon-]{
  font-family:icomoon;
  speak:none;
  font-style:normal;
  font-weight:400;
  font-variant:normal;
  text-transform:none;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}



.icon-right-arrow-angle:before{
  content:"\e914";
}
.icon-arrow-left:before{
  content:"\e915";
}
.icon-arrow-right:before{
  content:"\e912";
}
.icon-minus:before{
  content:"\e90f";
}
.icon-plus:before{
  content:"\e910";
}
.icon-comment:before{
  content:"\e90e";
}
.icon-arrow-right1:before{
  content:"\e913";
}
.icon-visibility:before{
  content:"\e911";
}
.icon-quote:before{
  content:"\e90d";
}
.icon-star:before{
  content:"\e90c";
}
.icon-credit-card:before{
  content:"\e900";
}
.icon-delivery2:before{
  content:"\e901";
}
.icon-delivery:before{
  content:"\e902";
}
.icon-envelope:before{
  content:"\e903";
}
.icon-headphones:before{
  content:"\e904";
}
.icon-heart:before{
  content:"\e905";
}
.icon-large-paper-bag:before{
  content:"\e906";
}
.icon-return:before{
  content:"\e907";
}
.icon-search:before{
  content:"\e908";
}
.icon-shuffle:before{
  content:"\e909";
}
.icon-telephone:before{
  content:"\e90a";
}
.icon-user:before{
  content:"\e90b";
}
.icon-x-twitter:before{
  content:"\e916";
}
.icon-tiktok:before{
  content:"\e917";
}
/*------------------------------------------------------------------
 [Table of contents]
 1. Utilities
 2. Font
 3. Base
 4. Layout
 5. Page
 6. Post
 7. Slideshow
 8. Form
 9. Responsive
 10. Widget
 -------------------------------------------------------------------*/
/* $body-bg:               #e6e6e6 !default; */
/**
 *   Blocks Layout Selectors
 */
/********* LAYOUT **************/
/* 1. Utilities */
/* RIGHT TO LEFT */
/******************************************************
 * @package wpbingo Theme Framework for WordPress
 * @version 1.0
 * @author http://www.wpbingosite.com
 * @copyright Copyright (C) Augus 2016 wpbingo.com <@emai:wpbingo@gmail.com>.All rights reserved.
 * @license   GNU General Public License version 1
 *******************************************************/
/* ***********************************************************************************************
 MIXIN
 ************************************************************************************************ */
/****/
.rtl {
  direction: rtl; }
  @media (min-width: 1200px) {
  .rtl .col-xl-2-4 {
    width: 20%; } }
  .rtl .widget.widget_categories ul li:hover a:before, .rtl .widget.widget_categories ul li:hover span:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .rtl .bwp-top-bar .display li:last-child {
    margin-right: 15px; }
    .rtl .bwp-top-bar .display li:first-child {
      margin-right: 0; }
  .rtl .bwp_product_list .slick-arrow, .rtl .btn-style-1 a:after, .rtl .bwp-widget-banner.layout-1 .button:after, .rtl .bwp-widget-banner.layout-2 .button:after, .rtl .bwp-widget-banner.layout-4 .button:after, .rtl .bwp-widget-banner.layout-9 .button:after, .rtl .bwp-widget-banner.layout-11 .button:after, .rtl .bwp-widget-banner.layout-12 .button:after {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .rtl .bwp_product_list.list-link2 .slick-arrow.fa-angle-left, .rtl .bwp_product_list.list-link1 .slick-arrow.fa-angle-left, .rtl .bwp_product_list.list-link3 .slick-arrow.fa-angle-left, .rtl .bwp_product_list.slider .slick-arrow.fa-angle-left, .rtl .bwp_product_list.list-link4 .slick-arrow.fa-angle-left, .rtl .bwp_product_list.list-deal3 .slick-arrow.fa-angle-left, .rtl .bwp_product_list.list-link6 .slick-arrow.fa-angle-left, .rtl .bestseller-product .slick-arrow.fa-angle-left, .rtl .featured-product .slick-arrow.fa-angle-left {
    right: auto;
    left: 26px; }
    .rtl .bwp_product_list.list-link2 .slick-arrow.fa-angle-right, .rtl .bwp_product_list.list-link1 .slick-arrow.fa-angle-right, .rtl .bwp_product_list.list-link3 .slick-arrow.fa-angle-right, .rtl .bwp_product_list.slider .slick-arrow.fa-angle-right, .rtl .bwp_product_list.list-link4 .slick-arrow.fa-angle-right, .rtl .bwp_product_list.list-deal3 .slick-arrow.fa-angle-right, .rtl .bwp_product_list.list-link6 .slick-arrow.fa-angle-right, .rtl .bestseller-product .slick-arrow.fa-angle-right, .rtl .featured-product .slick-arrow.fa-angle-right {
      right: auto;
      left: 0; }
  .rtl .mini-cart .cart-popup {
    right: auto !important;
    left: -12px !important; }
  .rtl .bwp-top-bar .display li:first-child {
    margin-right: 10px; }
  @media (max-width: 767px) {
  .rtl .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu {
    left: 0 !important;
    right: auto; } }
  @media (min-width: 1200px) {
  .rtl .forcefullwidth_wrapper_tp_banner .rev_slider_wrapper.fullwidthbanner-container {
    padding-right: 270px !important;
    padding-left: 0 !important; } }
  .rtl .wpb_single_image.vc_align_left {
    text-align: right; }
  .rtl .wpb_single_image.vc_align_right {
    text-align: left; }
  .rtl .bwp-filter-homepage .bwp-filter-heading ul {
    left: 0;
    right: auto; }
    @media (max-width: 991px) {
    .rtl .bwp-filter-homepage .bwp-filter-heading ul {
      right: -80px;
      left: auto; } }
  .rtl .slick-arrow {
    text-indent: -1px; }
    .rtl .slick-arrow.fa-angle-left {
      text-indent: 1px; }
  .rtl .bwp-header .block-top-link > .widget .widget-custom-menu > div {
    left: auto;
    right: 0; }
  .rtl #bwp-topbar .topbar-right .block-top-link > .widget .widget-custom-menu > div {
    right: auto;
    left: 0; }
  .rtl .entry-meta > *:not(.sticky-post):first-child {
    padding-left: 14px;
    padding-right: 0; }
    .rtl .entry-meta > *:not(.sticky-post):last-child {
      padding-left: 0;
      padding-right: 14px; }
  .rtl .header-wpbingo-menu-left {
    text-align: right; }
    .rtl .header-wpbingo-menu-left .wpbingo-menu-left {
      display: inline-block; }
  .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle {
    margin-left: 0;
    padding-left: 0;
    margin-right: 23px;
    padding-right: 23px; }
    .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:before {
      right: -3px;
      left: auto; }
    @media (max-width: 991px) {
  .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle {
    margin-right: 0;
    padding-right: 0;
    margin-left: 23px;
    padding-left: 23px; }
    .rtl .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:before {
      right: -3px;
      left: auto !important; } }
  @media (min-width: 768px) {
    .rtl .bwp-filter-homepage.loadmore.style .bwp-filter-heading ul.filter-orderby li:last-child {
      padding-left: 0;
      padding-right: 22px; }

    .rtl .bwp-filter-homepage.loadmore.style .bwp-filter-heading ul.filter-orderby li:first-child {
      padding-right: 0;
      padding-left: 22px; } }
  .rtl .border-policy-2 {
    margin: 0 !important; }
    @media (min-width: 768px) {
  .rtl .border-policy-2 {
    display: flex; } }
    .rtl .border-policy-2 > .wpb_column {
      border: 1px solid rgba(163, 163, 163, 0.3);
      padding-top: 100px;
      padding-bottom: 93px; }
    @media (min-width: 768px) {
      .rtl .border-policy-2 > .wpb_column:not(:last-child) {
        border-right: 1px solid rgba(163, 163, 163, 0.3);
        border-left: 0; } }
  .rtl .wpbingo-newsletter .content-newsletter input[type="email"]::placeholder {
    text-align: right; }
  .rtl .bwp-top-bar .woocommerce-result-count {
    display: inline-block !important; }
    @media (max-width: 1199px) {
  .rtl .bwp-top-bar .woocommerce-result-count {
    display: none !important; } }
  .rtl .about-top .social-link li {
    margin-right: 0 !important; }
  .rtl .bwp-testimonial .slider-thumb .testimonial-image.slick-center img {
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
    border: 0 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important; }
    .rtl .bwp-testimonial .slider-thumb .testimonial-image.slick-center .testimonial-customer-name {
      display: none !important; }
  .rtl .header-vertical-menu {
    float: right !important; }
  .rtl .bwp-filter-homepage.slider .bwp-filter-heading ul.filter-category li:first-child {
    padding-left: 30px !important; }
    .rtl .bwp-filter-homepage.slider .bwp-filter-heading ul.filter-category li:last-child {
      padding-right: 30px !important; }
  @media (max-width: 991px) {
  .rtl .wpbingo-verticalmenu-mobile .navbar-header {
    float: right; } }
  .rtl .bwp-recent-post.slider2 .slick-arrow.fa-angle-left {
    left: 15px !important;
    right: auto !important; }
  .rtl .bwp-recent-post.slider2 .slick-arrow {
    left: 55px !important; }
  .rtl .bwp-widget-video .title-video h2:before {
    text-indent: -5px; }
  .rtl .wpbingo-newsletter-1 .content-newsletter .clearfix {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .rtl .bwp_list_default.slider .slick-arrow.fa-angle-left {
    left: 0 !important;
    right: auto !important; }
  .rtl .bwp_list_default.slider .slick-arrow.fa-angle-right {
    left: 45px !important;
    right: auto !important; }
  .rtl .bwp-testimonial.default .slick-arrow.fa-angle-left {
    left: 15px !important;
    right: auto !important; }
  .rtl .bwp-testimonial.default .slick-arrow.fa-angle-right {
    left: 55px !important;
    right: auto !important; }
  .rtl .bwp-brand.default .slick-arrow.fa-angle-left {
    left: 15px !important;
    right: auto !important; }
  .rtl .bwp-brand.default .slick-arrow.fa-angle-right {
    left: 55px !important;
    right: auto !important; }
  .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-left {
    left: 15px !important;
    right: auto !important; }
  .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-right {
    left: 55px !important;
    right: auto !important; }
  .rtl #bwp-footer.footer-1 .footer-main .footer-right {
    padding-left: 0 !important; }
  .rtl .bwp-header.header-v1 .bwp-navigation ul > li.level-0:first-child {
    padding-left: 20px !important; }
  .rtl .onsale:before {
    border-right-color: transparent;
    border-left-color: #ff4646; }
  .rtl .bwp-widget-video.default2 .bwp-video {
    text-indent: -3px; }

.rtl .bwp-countdown.slider5 .content-product-list .products-list.grid .item-product .item-product-content .item-countdown .product-countdown:before {
  content: "\7b"; }

.rtl .bwp-header .header-right .container > div:last-child, .rtl .bwp-header .header-right > div:last-child {
  padding-left: 10px !important;
  padding-right: 0 !important; }

.rtl .woo-slider-default .content-product-list .slick-arrow {
  left: 0 !important;
  right: auto !important; }
  .rtl .woo-slider-default .content-product-list .slick-arrow.fa-angle-right {
    left: 30px !important;
    right: auto !important; }

.rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }
/* 2. Header */
/************************************************************************************************
 BLOCK TOP BAR  
 *************************************************************************************************/
#bwp-topbar {
  color: #fff;
  font-size: 13px;
  height: 47px;
  line-height: 47px; }
  #bwp-topbar a {
    color: #fff; }
  #bwp-topbar .email, #bwp-topbar .address, #bwp-topbar .phone {
    display: inline-block; }
    #bwp-topbar .email i, #bwp-topbar .address i, #bwp-topbar .phone i {
      margin-right: 10px;
      font-size: 15px;
      position: relative;
      top: 3px;
      color: #fff; }
  #bwp-topbar .email {
    position: relative;
    margin-left: 15px;
    padding-left: 20px; }
    .rtl #bwp-topbar .email {
      margin-right: 15px;
      margin-left: 0; }
    .rtl #bwp-topbar .email {
      padding-right: 20px;
      padding-left: 0; }
    #bwp-topbar .email:before {
      position: absolute;
      content: "";
      left: 0;
      background: #d4d4d4;
      width: 1px;
      height: 18px;
      top: calc(50% - 9px); }
    .rtl #bwp-topbar .email:before {
      right: 0;
      left: auto; }
  #bwp-topbar #topbar_menu {
    list-style: none; }
    #bwp-topbar #topbar_menu li {
      display: inline-block;
      padding-right: 15px;
      margin-right: 15px;
      position: relative; }
    .rtl #bwp-topbar #topbar_menu li {
      padding-left: 15px;
      padding-right: 0; }
    .rtl #bwp-topbar #topbar_menu li {
      margin-left: 15px;
      margin-right: 0; }
    #bwp-topbar #topbar_menu li:before {
      position: absolute;
      content: "";
      right: 0;
      background: #d4d4d4;
      width: 1px;
      height: 18px;
      top: calc(50% - 9px); }
      .rtl #bwp-topbar #topbar_menu li:before {
        left: 0;
        right: auto; }
    #bwp-topbar #topbar_menu li:last-child {
      margin-right: 0;
      padding-right: 0; }
      .rtl #bwp-topbar #topbar_menu li:last-child {
        margin-left: 0;
        margin-right: 0; }
      .rtl #bwp-topbar #topbar_menu li:last-child {
        padding-left: 0;
        padding-right: 0; }
      #bwp-topbar #topbar_menu li:last-child:before {
        display: none; }
  #bwp-topbar .topbar-right {
    text-align: right; }
    .rtl #bwp-topbar .topbar-right {
      text-align: left; }
    #bwp-topbar .topbar-right > * {
      display: inline-block;
      padding: 0 15px 0 0; }
    .rtl #bwp-topbar .topbar-right > * {
      padding: 0 0 0 15px; }
    #bwp-topbar .topbar-right > *:last-child {
      padding-right: 0; }
      .rtl #bwp-topbar .topbar-right > *:last-child {
        padding-left: 0;
        padding-right: 0; }
    #bwp-topbar .topbar-right > * a {
      color: #fff; }
    #bwp-topbar .topbar-right > * i {
      margin-right: 10px;
      font-size: 15px;
      position: relative;
      top: 3px;
      color: #fff; }
      #bwp-topbar .topbar-right > * i:last-child {
        margin-right: 0; }
    #bwp-topbar .topbar-right .block-top-link > * {
      display: inline-block;
      margin-right: 15px; }
      .rtl #bwp-topbar .topbar-right .block-top-link > * {
        margin-left: 15px;
        margin-right: 0; }
      #bwp-topbar .topbar-right .block-top-link > *:last-child {
        margin-right: 0; }
        .rtl #bwp-topbar .topbar-right .block-top-link > *:last-child {
          margin-left: 0;
          margin-right: 0; }
  #bwp-topbar .block-top-link .widget-title {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; }
    #bwp-topbar .block-top-link .widget-title:after {
      display: inline-block;
      font-family: 'ElegantIcons' !important;
      content: "\33";
      position: relative;
      top: 1px;
      font-size: 14px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      line-height: 1; }
    #bwp-topbar .block-top-link .widget-title.active, #bwp-topbar .block-top-link .widget-title:hover {
      color: #D3AD47; }
    #bwp-topbar .block-top-link .widget-title.active:after {
      -webkit-transform: rotate(-180deg);
      -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
      transform: rotate(-180deg);
      color: #D3AD47; }
    #bwp-topbar .block-top-link a {
      color: #868686 !important; }
    #bwp-topbar .block-top-link a:hover {
      color: #D3AD47 !important; }
    #bwp-topbar .block-top-link .menu-language-menu-container, #bwp-topbar .block-top-link .menu-currency-menu-container {
      top: 30px; }
  #bwp-topbar.topbar-v1 {
    border-bottom: 1px solid #ebebeb;
    background: #104ab3; }
  #bwp-topbar.topbar-v2 {
    background: #1a1a1a; }
  #bwp-topbar.topbar-v3 {
    border-bottom: 1px solid #252525;
    background: #000; }
    #bwp-topbar.topbar-v3 .topbar-right {
      display: flex;
      justify-content: flex-end; }
    #bwp-topbar.topbar-v3 .email:before {
      background: #fff; }
    #bwp-topbar.topbar-v3 .free-ship {
      display: flex;
      align-items: center;
      margin-right: 10px; }
    .rtl #bwp-topbar.topbar-v3 .free-ship {
      margin-left: 10px;
      margin-right: 0; }
    #bwp-topbar.topbar-v3 .free-ship .icon-delivery {
      font-size: 30px;
      color: #D3AD47;
      margin-right: 10px;
      position: relative;
      top: -2px; }
      .rtl #bwp-topbar.topbar-v3 .free-ship .icon-delivery {
        margin-left: 10px;
        margin-right: 0; }
    #bwp-topbar.topbar-v3 .free-ship .content {
      color: #fff; }
    #bwp-topbar.topbar-v3 .ship-order:before {
      bottom: 15px; }
  #bwp-topbar.topbar-v4 {
    color: #000;
    border-bottom: 1px solid #e4e4e4; }
    #bwp-topbar.topbar-v4 i {
      color: #000; }
    #bwp-topbar.topbar-v4 .email:before {
      background: #cacaca; }
    #bwp-topbar.topbar-v4 a {
      color: #000; }
    #bwp-topbar.topbar-v4 a:hover {
      color: #D3AD47; }
    #bwp-topbar.topbar-v4 .topbar-right > * i {
      color: #000; }
    #bwp-topbar.topbar-v4 .block-top-link .widget-title {
      color: #000; }
      #bwp-topbar.topbar-v4 .block-top-link .widget-title.active, #bwp-topbar.topbar-v4 .block-top-link .widget-title:hover {
        color: #000; }
        #bwp-topbar.topbar-v4 .block-top-link .widget-title.active:after, #bwp-topbar.topbar-v4 .block-top-link .widget-title:hover:after {
          color: #D3AD47; }
    #bwp-topbar.topbar-v4 .block-top-link a {
      color: #000; }
      #bwp-topbar.topbar-v4 .block-top-link a:hover {
        color: #D3AD47; }
    #bwp-topbar.topbar-v4 .woocs-style-1-dropdown {
      color: #fff; }
    #bwp-topbar.topbar-v4 .woocs-style-1-dropdown:hover {
      color: #D3AD47; }
  #bwp-topbar.topbar-v5 {
    background: #000; }
    #bwp-topbar.topbar-v5 .topbar-right {
      display: flex;
      justify-content: flex-end; }
    #bwp-topbar.topbar-v5 .email:before {
      background: #4e4e4e; }
    #bwp-topbar.topbar-v5 .free-ship {
      display: flex;
      align-items: center;
      margin-right: 10px; }
    .rtl #bwp-topbar.topbar-v5 .free-ship {
      margin-left: 10px;
      margin-right: 0; }
    #bwp-topbar.topbar-v5 .free-ship .icon-delivery {
      font-size: 30px;
      color: #D3AD47;
      margin-right: 10px;
      position: relative;
      top: -2px; }
      .rtl #bwp-topbar.topbar-v5 .free-ship .icon-delivery {
        margin-left: 10px;
        margin-right: 0; }
    #bwp-topbar.topbar-v5 .free-ship .content {
      color: #fff; }
    #bwp-topbar.topbar-v5 .ship-order:before {
      bottom: 15px; }
/************************************************************************************************
 BLOCK HEADER 
 *************************************************************************************************/
.title-vertical h2 {
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 10px !important;
  position: relative;
  font-weight: 700; }
  .title-vertical h2:before {
    position: absolute;
    bottom: -1px;
    width: 40px;
    height: 1px;
    background: #D3AD47;
    content: "";
    left: 0; }
  .rtl .title-vertical h2:before {
    right: 0;
    left: auto; }

.categories-vertical-menu {
  position: relative;
  min-width: 240px;
  height: 60px; }
  @media (min-width: 1199px) {
    .categories-vertical-menu.show .bwp-vertical-navigation > div {
      display: block !important;
      height: 100% !important; } }
  .categories-vertical-menu.accordion .verticalmenu {
    border: 0 !important; }
  .categories-vertical-menu.accordion .bwp-vertical-navigation > div {
    display: none; }
  .categories-vertical-menu .menu-item-desc {
    display: none; }
  .categories-vertical-menu .widget-title {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 60px;
    background: #D3AD47;
    display: flex;
    justify-content: center;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    padding: 0 15px; }
  .categories-vertical-menu .widget-title i {
    background: #fff;
    width: 20px;
    height: 2px;
    margin: 30px 10px 0 0;
    position: relative; }
  .rtl .categories-vertical-menu .widget-title i {
    margin: 30px 0 0 10px; }
  .categories-vertical-menu .widget-title i:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 20px;
    height: 2px;
    top: -6px; }
  .categories-vertical-menu .widget-title i:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 20px;
    height: 2px;
    bottom: -6px; }
  .categories-vertical-menu .widget-title:after {
    display: inline-block;
    font-family: 'ElegantIcons';
    content: "\33";
    position: relative;
    margin-left: 5px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .rtl .categories-vertical-menu .widget-title:after {
    margin-right: 5px;
    margin-left: 0; }
  .categories-vertical-menu .widget-title.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .categories-vertical-menu > div {
    position: absolute;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(144, 144, 144, 0.1);
    box-shadow: 0px 0px 10px 1px rgba(144, 144, 144, 0.1);
    z-index: 2; }
  .categories-vertical-menu .bwp-vertical-navigation > div {
    padding: 0;
    display: block;
    position: relative; }
  .categories-vertical-menu .bwp-vertical-navigation > div ul.menu {
    padding: 0; }
  @media (max-width: 991px) {
            .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-hide-title > span.title, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-hide-title > a {
              display: block !important;
              margin: 0;
              padding: 0 !important; } }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-item-has-children {
      position: relative; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-item-has-children > a {
        display: inline-block;
        width: 100%; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-item-has-children > a:after {
          top: 1px;
          content: "\f2fb" !important;
          position: absolute;
          margin-left: 5px;
          right: 0;
          font-family: "Material";
          display: inline-block;
          background: transparent;
          opacity: 1;
          right: 0;
          top: calc(50% - 15px);
          bottom: auto;
          font-size: 18px;
          color: rgba(99, 99, 99, 0.5);
          width: auto;
          height: auto; }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-item-has-children > a:after {
            margin-right: 5px;
            margin-left: 0; }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.menu-item-has-children > a:after {
            left: 0;
            right: auto; }
  .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 {
    float: unset;
    width: 100%;
    position: unset !important;
    padding: 0 20px;
    list-style: none;
    border-bottom: 1px solid #e6e6e6; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0:last-child a {
      border-bottom: none; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 i {
      font-size: 21px;
      width: 21px;
      text-align: center;
      margin-right: 16px;
      position: relative;
      top: 2px;
      float: left; }
      .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 i {
        margin-left: 16px;
        margin-right: 0; }
      .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 i {
        float: right; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a {
      margin: 0;
      width: 100%;
      font-size: 12px;
      text-transform: uppercase;
      font-family: 'Audiowide', cursive;
      position: relative;
      display: inline-block;
      padding: 11px 0; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a:before {
        content: "\f04b";
        font-family: FontAwesome;
        position: relative;
        display: inline-block;
        color: #ff9600;
        font-size: 10px;
        margin-right: 10px; }
        .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a:before {
          margin-left: 10px;
          margin-right: 0; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a:hover {
        color: #D3AD47; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a > span {
        position: relative; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a > span:before, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a > span:after {
          display: none !important; }
    @media (min-width: 992px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children div.sub-menu {
          top: 0;
          left: calc(100% + 50px); }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > ul.sub-menu, .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children div.sub-menu {
            right: calc(100% + 50px);
            left: auto; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:hover > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:hover div.sub-menu {
          opacity: 1;
          visibility: visible;
          left: 100%; }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:hover > ul.sub-menu, .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:hover div.sub-menu {
            right: 100%;
            left: auto; } }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:not(.mega-menu) {
        position: relative !important; }
        @media (min-width: 992px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:not(.mega-menu) li.menu-item-has-children > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:not(.mega-menu) li.menu-item-has-children div.sub-menu {
          top: 0; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children:not(.mega-menu) li.menu-item-has-children:hover > ul.sub-menu {
          top: 0 !important; } }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > a:after {
        font-family: "Material";
        display: inline-block;
        background: transparent;
        opacity: 1;
        right: 0;
        top: calc(50% - 15px);
        bottom: auto;
        font-size: 18px;
        color: rgba(134, 134, 134, 0.5);
        width: auto;
        height: auto; }
        .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > a:after {
          left: 0;
          right: auto; }
        @media (max-width: 991px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.menu-item-has-children > a:after {
          display: none; } }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 .menu-item-has-children > a > span:after {
      display: none; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu-fullwidth-width ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu-fullwidth-width div.sub-menu {
      left: calc(100% + 30px); }
      .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu-fullwidth-width ul.sub-menu, .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu-fullwidth-width div.sub-menu {
        right: calc(100% + 30px);
        left: auto; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu {
      left: 100%;
      top: 0;
      padding: 25px 20px;
      -webkit-transform: unset;
      -moz-transform: unset;
      -ms-transform: unset;
      -o-transform: unset;
      transform: unset;
      position: absolute;
      z-index: 9999;
      background: #fff;
      display: block;
      min-width: 225px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      border: 1px solid #f5f5f5; }
      .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu, .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu {
        right: 100%;
        left: auto; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu li, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu li {
        list-style: none;
        padding-top: 5px;
        padding-bottom: 5px; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu li:last-child, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu li:last-child {
        border-bottom: 0; }
      @media (max-width: 991px) {
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu {
        padding-top: 0; } }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu a {
      color: #868686; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu a:hover {
        color: #D3AD47; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 ul.sub-menu > li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu {
      padding: 0;
      background: transparent;
      border: 0; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu > div, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu > div {
        height: 100%; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu > div > div, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu > div > div {
        height: 100%; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu > div > div > div, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu > div > div > div {
          height: 100%; }
      @media (min-width: 992px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu {
          width: 710px; }
          .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu .elementor-section > .elementor-container, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu .elementor-section > .elementor-container {
            margin-right: auto !important;
            margin-left: 0 !important; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu {
            width: 700px; } }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu .title h2, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu .title h2 {
        font-size: 15px;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: 17px; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu ul, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu ul {
        padding: 0; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu ul li, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu ul li {
        list-style: none;
        padding: 3px 0; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu ul li:last-child, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu ul li:last-child {
          border-bottom: 0; }
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu ul li a, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu ul li a {
          color: #868686; }
          .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu ul li a:hover, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu ul li a:hover {
            color: #D3AD47; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu > ul.sub-menu .vertical-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0.mega-menu div.sub-menu .vertical-menu {
        padding: 35px 30px;
        height: 100%;
        margin: 0; }
    @media (min-width: 991px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0:not(.mega-menu) > ul.sub-menu li.level-1 .sub-menu, .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu li.level-1 .sub-menu {
          left: calc(100% + 20px); }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0:not(.mega-menu) > ul.sub-menu li.level-1 .sub-menu, .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 div.sub-menu li.level-1 .sub-menu {
            right: calc(100% + 20px);
            left: auto; } }
  .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap {
    padding: 0 20px;
    color: #000;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2); }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap:hover {
      cursor: pointer;
      color: #D3AD47; }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap span {
      line-height: 40px; }
      .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap span:before {
        font-size: 16px;
        margin-right: 14px;
        content: "\f278";
        font-family: Material;
        width: 20px;
        font-weight: 400;
        text-align: center;
        display: inline-block;
        vertical-align: top; }
      .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap span:before {
        margin-left: 14px;
        margin-right: 0; }
      @media (max-width: 1529px) {
        .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap span:before {
          margin-right: 8px; }
          .rtl .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap span:before {
            margin-left: 8px;
            margin-right: 0; } }
    .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap.open span:before {
      content: "\f273"; }

body:not(.page-template-homepage) .bwp-header .header-mobile {
  border-bottom: 1px solid #e5e5e5; }

@media (min-width: 1199px) {
          body.home .bwp-header.header-v10, body.page-template-homepage .bwp-header.header-v10 {
            position: absolute;
            width: 100%; } }
  body.home .bwp-header.header-v10 .bwp-navigation ul > li.level-0 > a, body.page-template-homepage .bwp-header.header-v10 .bwp-navigation ul > li.level-0 > a {
    color: #fff; }
  body.home .bwp-header.header-v10 .header-page-link h3, body.page-template-homepage .bwp-header.header-v10 .header-page-link h3 {
    color: #fff; }
    body.home .bwp-header.header-v10 .header-page-link a, body.page-template-homepage .bwp-header.header-v10 .header-page-link a {
      color: #fff; }
    body.home .bwp-header.header-v10 .header-page-link .mini-cart .cart-icon .icons-cart, body.page-template-homepage .bwp-header.header-v10 .header-page-link .mini-cart .cart-icon .icons-cart {
      color: #fff; }
    body.home .bwp-header.header-v10 .header-page-link .search-box .search-toggle, body.page-template-homepage .bwp-header.header-v10 .header-page-link .search-box .search-toggle {
      color: #fff; }
  body.home .bwp-header.header-v10 .header-mobile, body.page-template-homepage .bwp-header.header-v10 .header-mobile {
    background: #000; }
    body.home .bwp-header.header-v10 .header-mobile .navbar-toggle:before, body.page-template-homepage .bwp-header.header-v10 .header-mobile .navbar-toggle:before {
      color: #fff; }
    body.home .bwp-header.header-v10 .header-mobile .mini-cart .cart-icon, body.page-template-homepage .bwp-header.header-v10 .header-mobile .mini-cart .cart-icon {
      color: #fff; }
  @media (max-width: 1199px) {
        body.home .bwp-header.header-v10, body.page-template-homepage .bwp-header.header-v10 {
          background: #000; } }

.home.blog .bwp-header {
  margin-bottom: 30px; }

.bwp-header {
  margin-bottom: 0;
  position: relative;
  z-index: 9999;
  background: transparent;
  /*---------------- header-campbar ---------------*/ }
  .bwp-header .header-content {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .bwp-header .header-content .wpbingo-menu-left .menu-title-box .navbar-toggle {
    display: inline-block;
    color: #000; }
  .bwp-header .header-content .wpbingo-menu-left .menu-title-box .navbar-toggle > span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase; }
  .bwp-header .header-content .wpbingo-menu-left .menu-title-box .navbar-toggle i {
    font-size: 15px; }
  .bwp-header .header-content .search-box {
    color: #000; }
  .bwp-header .header-content .search-box:hover {
    color: #D3AD47; }
  .bwp-header .header-content .search-box .search-toggle {
    display: block;
    cursor: pointer;
    font-size: 22px; }
  @media (max-width: 991px) {
      .bwp-header .header-content.empty_header_right > .container > .row {
        display: flex; }
        .bwp-header .header-content.empty_header_right > .container > .row .header-logo {
          text-align: left !important; }
        .bwp-header .header-content.empty_header_right > .container > .row .header-right {
          display: none; } }
  .bwp-header .header-left > * {
    display: inline-block;
    vertical-align: middle; }
  .bwp-header .header-page-link {
    text-align: right; }
  .rtl .bwp-header .header-page-link {
    text-align: left; }
  .bwp-header .header-page-link > * {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle; }
  .rtl .bwp-header .header-page-link > * {
    margin-right: 20px;
    margin-left: 0; }
  .bwp-header .header-page-link > *:first-child {
    margin-left: 0; }
  .rtl .bwp-header .header-page-link > *:first-child {
    margin-right: 0;
    margin-left: 0; }
  @media (max-width: 1199px) and (min-width: 991px) {
      .bwp-header .header-page-link > * {
        margin-left: 15px; }
        .rtl .bwp-header .header-page-link > * {
          margin-right: 15px;
          margin-left: 0; } }
  @media (max-width: 767px) {
      .bwp-header .header-page-link > * {
        margin-left: 10px; }
        .rtl .bwp-header .header-page-link > * {
          margin-right: 10px;
          margin-left: 0; } }
  .bwp-header .header-page-link .phone {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 20px; }
  .rtl .bwp-header .header-page-link .phone {
    padding-left: 20px;
    padding-right: 0; }
  .bwp-header .header-page-link .phone:before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 40px;
    top: calc(50% - 20px);
    background: #dedede; }
  .rtl .bwp-header .header-page-link .phone:before {
    left: 0;
    right: auto; }
  .bwp-header .header-page-link .phone i {
    color: #D3AD47;
    font-size: 30px;
    width: 58px;
    height: 58px;
    border: 2px solid #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 54px; }
  .bwp-header .header-page-link .phone .content {
    text-align: left;
    padding-left: 15px; }
  .rtl .bwp-header .header-page-link .phone .content {
    text-align: right; }
  .rtl .bwp-header .header-page-link .phone .content {
    padding-right: 15px;
    padding-left: 0; }
  .bwp-header .header-page-link .phone .content label {
    margin: 0 0 -6px;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700; }
  .bwp-header .header-page-link .phone .content a, .bwp-header .header-page-link .phone .content span {
    display: block;
    font-size: 18px;
    font-weight: 700; }
  .bwp-header .header-page-link .wishlist-box {
    font-size: 25px;
    position: relative;
    top: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-header .header-page-link .wishlist-box:hover {
    color: #D3AD47;
    top: -1px; }
  .bwp-header .header-page-link .wishlist-box .count-wishlist {
    position: absolute;
    top: -5px;
    right: -17px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    display: inline-block;
    color: #fff;
    text-align: center;
    background: #ff9600;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 11px; }
  .rtl .bwp-header .header-page-link .wishlist-box .count-wishlist {
    left: -17px;
    right: auto; }
  .bwp-header .header-page-link .compare-box {
    position: relative;
    top: 2px; }
  .bwp-header .header-page-link .compare-box a {
    font-size: 0; }
  .bwp-header .header-page-link .compare-box a:before {
    content: "\e909";
    font-family: icomoon;
    display: inline-block;
    font-size: 25px;
    position: relative;
    line-height: 1;
    top: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-header .header-page-link .compare-box a:hover:before {
    top: -1px; }
  .bwp-header .header-page-link .mini-cart {
    margin-right: 10px; }
  .rtl .bwp-header .header-page-link .mini-cart {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-header .header-page-link .mini-cart .cart-icon {
    position: relative; }
  .bwp-header .header-page-link .mini-cart .cart-icon .icons-cart {
    position: relative;
    color: #000;
    cursor: pointer;
    padding-right: 5px; }
    .rtl .bwp-header .header-page-link .mini-cart .cart-icon .icons-cart {
      padding-left: 5px;
      padding-right: 0; }
    .bwp-header .header-page-link .mini-cart .cart-icon .icons-cart:hover {
      color: #D3AD47; }
    .bwp-header .header-page-link .mini-cart .cart-icon .icons-cart:hover i {
      top: -1px; }
  .bwp-header .header-page-link .mini-cart .cart-icon i {
    font-size: 25px;
    position: relative;
    top: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-header .header-page-link .mini-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -15px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    display: inline-block;
    color: #fff;
    text-align: center;
    background: #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 11px; }
  .rtl .bwp-header .header-page-link .mini-cart .cart-count {
    left: -15px;
    right: auto; }
  .bwp-header .header-page-link .search-box .search-toggle {
    font-size: 25px;
    position: relative;
    top: 2px;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-header .header-page-link .search-box .search-toggle:hover {
    color: #D3AD47;
    top: -1px; }
  .bwp-header .header-page-link > .search-from > ul.result-search-products {
    padding: 20px !important;
    max-height: 380px !important;
    min-width: 290px;
    top: 40px; }
  .bwp-header .header-page-link > .search-from > ul.result-search-products li {
    width: 100% !important; }
  .bwp-header .header-page-link .login-header {
    font-size: 25px;
    position: relative; }
  .bwp-header .header-page-link .login-header > a {
    position: relative;
    top: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-header .header-page-link .login-header > a:hover {
    color: #D3AD47;
    top: -1px; }
  .bwp-header .header-page-link .login-header .block-top-link .widget-title:hover {
    color: #D3AD47;
    top: -3px; }
  .bwp-header .header-page-link .login-header .block-top-link .widget-custom-menu > div {
    width: auto; }
  .bwp-header .header-search-form {
    flex: 1; }
  @media (max-width: 767px) {
    .bwp-header .header-search-form {
      margin-bottom: 30px; } }
  .bwp-header .header-search-form .result-search-products-content {
    position: absolute;
    background: #fff;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-box-shadow: 0 1px 12px 2px rgba(143, 143, 143, .3);
    box-shadow: 0 1px 12px 2px rgba(143, 143, 143, .3);
    display: none;
    z-index: 10; }
  .bwp-header .header-search-form .result-search-products-content:before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50px;
    border-style: solid;
    border-width: 7px 8px;
    border-color: transparent;
    border-bottom-color: #fff; }
  .rtl .bwp-header .header-search-form .result-search-products-content:before {
    right: 50px;
    left: auto; }
  .bwp-header .header-search-form .result-search-products {
    display: none;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    padding: 30px;
    overflow-x: hidden;
    list-style: none; }
  .bwp-header .header-search-form .result-search-products::-webkit-scrollbar-track {
    background-color: #f5f5f5; }
  .bwp-header .header-search-form .result-search-products::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5; }
  .bwp-header .header-search-form .result-search-products::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1); }
  .bwp-header .header-search-form .result-search-products .item-search {
    list-style: none;
    padding: 15px 0;
    display: table;
    width: 100%;
    border-bottom: 1px solid #f5f5f5; }
  .bwp-header .header-search-form .result-search-products .item-search .item-image {
    display: table-cell;
    width: 70px; }
  .bwp-header .header-search-form .result-search-products .item-search .item-content {
    display: table-cell;
    vertical-align: top;
    padding-left: 20px; }
    .rtl .bwp-header .header-search-form .result-search-products .item-search .item-content {
      padding-right: 20px;
      padding-left: 0; }
    .bwp-header .header-search-form .result-search-products .item-search .item-content a {
      font-weight: 500;
      text-transform: capitalize; }
  .bwp-header .header-search-form .result-search-products .item-search:last-child {
    padding-bottom: 0;
    border-bottom: 0; }
  .bwp-header .header-search-form .result-search-products .item-search:first-child {
    padding-top: 0; }
  .bwp-header .header-search-form .result-search-products .price {
    font-size: 14px; }
  .bwp-header .header-search-form .result-search-products .price del {
    font-size: 13px; }
  .bwp-header .header-search-form .result-search-products.loading:before {
    position: absolute;
    left: 50%;
    top: calc(50% - 17px);
    display: inline-block;
    content: "\f110";
    width: auto;
    height: auto;
    color: #D3AD47;
    margin-left: 0;
    font-family: FontAwesome;
    background-color: transparent !important;
    background: none;
    font-size: 20px;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround; }
  .bwp-header .header-search-form .search-from {
    width: 100%;
    height: 50px;
    display: flex;
    position: relative;
    background: #f4f4f4;
    max-width: 100%; }
  @media (max-width: 1199px) {
      .bwp-header .header-search-form .search-from {
        width: auto; } }
  .bwp-header .header-search-form .search-from .select_category {
    line-height: 50px;
    padding: 0 20px;
    position: relative;
    font-size: 13px; }
  @media (max-width: 767px) {
        .bwp-header .header-search-form .search-from .select_category {
          display: none; } }
  .bwp-header .header-search-form .search-from .select_category.show .caret {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .bwp-header .header-search-form .search-from .select_category:before {
    position: absolute;
    left: 0;
    content: "";
    background: #d7d7d7;
    height: 28px;
    width: 1px;
    top: calc(50% - 14px); }
    .rtl .bwp-header .header-search-form .search-from .select_category:before {
      right: 0;
      left: auto; }
  .bwp-header .header-search-form .search-from .select_category .dropdown-backdrop {
    display: none; }
  .bwp-header .header-search-form .search-from .select_category .pwb-dropdown-toggle {
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
    color: #000; }
    .bwp-header .header-search-form .search-from .select_category .pwb-dropdown-toggle:hover {
      color: #D3AD47; }
  .bwp-header .header-search-form .search-from .select_category ul {
    padding: 15px 20px;
    max-height: 340px;
    overflow: auto;
    min-width: 200px;
    right: 0;
    left: auto;
    -webkit-transform: translateY(50px) !important;
    -moz-transform: translateY(50px) !important;
    -ms-transform: translateY(50px) !important;
    -o-transform: translateY(50px) !important;
    transform: translateY(50px) !important; }
    .bwp-header .header-search-form .search-from .select_category ul::-webkit-scrollbar-track {
      background-color: #f5f5f5; }
    .bwp-header .header-search-form .search-from .select_category ul::-webkit-scrollbar {
      width: 5px;
      background-color: #f5f5f5; }
    .bwp-header .header-search-form .search-from .select_category ul::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.1); }
    .bwp-header .header-search-form .search-from .select_category ul li {
      border-bottom: 1px solid #f5f5f5;
      cursor: pointer;
      line-height: 1.3;
      padding: 15px 0;
      font-size: 12px; }
    .bwp-header .header-search-form .search-from .select_category ul li:last-child {
      border-bottom: 0; }
    .bwp-header .header-search-form .search-from .select_category ul li:hover, .bwp-header .header-search-form .search-from .select_category ul li.active {
      color: #D3AD47; }
  .bwp-header .header-search-form .search-from .caret {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 3px;
    color: #000; }
  .bwp-header .header-search-form .search-from .caret:before {
    font-family: 'ElegantIcons';
    content: "\33"; }
  .bwp-header .header-search-form .search-from .search-box {
    text-align: left;
    flex: 1; }
  .rtl .bwp-header .header-search-form .search-from .search-box {
    text-align: right; }
  .bwp-header .header-search-form .search-from .search-box input[type="text"] {
    border: 0;
    padding: 0;
    line-height: 50px;
    width: 100%;
    padding: 0 25px;
    font-size: 13px; }
    .bwp-header .header-search-form .search-from .search-box input[type="text"]:-moz-placeholder {
      color: #868686; }
    .bwp-header .header-search-form .search-from .search-box input[type="text"]::-moz-placeholder {
      color: #868686; }
    .bwp-header .header-search-form .search-from .search-box input[type="text"]:-ms-input-placeholder {
      color: #868686; }
    .bwp-header .header-search-form .search-from .search-box input[type="text"]::-webkit-input-placeholder {
      color: #868686; }
  @media (max-width: 1199px) {
        .bwp-header .header-search-form .search-from .search-box {
          width: auto; } }
  @media (max-width: 767px) {
        .bwp-header .header-search-form .search-from .search-box {
          padding-left: 15px; }
          .rtl .bwp-header .header-search-form .search-from .search-box {
            padding-right: 15px;
            padding-left: 0; } }
  .bwp-header .header-search-form .search-from #searchsubmit, .bwp-header .header-search-form .search-from #searchsubmit2 {
    color: #fff;
    margin-left: 0;
    font-size: 0;
    height: 50px;
    position: relative;
    padding: 0 25px;
    background: #000;
    border-radius: 0; }
  .rtl .bwp-header .header-search-form .search-from #searchsubmit, .rtl .bwp-header .header-search-form .search-from #searchsubmit2 {
    margin-right: 0;
    margin-left: 0; }
  .bwp-header .header-search-form .search-from #searchsubmit i, .bwp-header .header-search-form .search-from #searchsubmit2 i {
    font-size: 18px; }
  .bwp-header .header-search-form .search-from #searchsubmit:hover, .bwp-header .header-search-form .search-from #searchsubmit2:hover {
    background: #D3AD47; }
  .bwp-header .searchform {
    color: #d7d7d7;
    border: 1px solid #e0e0e0;
    display: flex;
    font-size: 14px;
    height: 40px;
    padding: 0 25px;
    max-width: 415px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px; }
  .bwp-header .searchform .searchsubmit {
    background: transparent;
    font-size: 19px;
    padding: 0;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .bwp-header .searchform .searchsubmit i {
    color: #000; }
  .bwp-header .searchform .searchsubmit:hover i {
    color: #D3AD47; }
  .bwp-header .searchform .searchsubmit:active {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .bwp-header .searchform input[type="text"] {
    border: 0;
    font-weight: 300;
    padding: 5px 0;
    width: 100%;
    margin-right: 10px; }
  .rtl .bwp-header .searchform input[type="text"] {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-header .search-style ul.result-search-products li {
    width: 100%; }
  .bwp-header .content-header {
    position: unset;
    display: flex;
    align-items: center; }
  .bwp-header .header-top {
    padding: 25px 0 22px; }
  .bwp-header .header-top .row {
    align-items: center; }
  .bwp-header .block-top-link.acount {
    text-align: left; }
  .rtl .bwp-header .block-top-link.acount {
    text-align: right; }
  .bwp-header .block-top-link.acount label {
    margin-bottom: -4px;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize; }
  .bwp-header .block-top-link > .widget {
    margin-bottom: 0; }
  .bwp-header .block-top-link > .widget .widget-custom-menu .widget-title {
    margin: 0;
    font-size: 0;
    font-weight: 500;
    cursor: pointer;
    line-height: 0;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu .widget-title:after {
      font-size: 25px;
      content: "\e90b";
      font-family: icomoon;
      line-height: 20px; }
    .bwp-header .block-top-link > .widget .widget-custom-menu .widget-title:hover {
      color: #D3AD47; }
  .bwp-header .block-top-link > .widget .widget-custom-menu > div {
    display: none;
    margin: 0;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: capitalize;
    position: absolute;
    z-index: 1001;
    background: #fff;
    line-height: 28px;
    border: 1px solid rgba(163, 163, 163, 0.1);
    top: 30px;
    text-align: left;
    -webkit-box-shadow: 0px 5px 15px 5px rgba(144, 144, 144, 0.15);
    box-shadow: 0px 5px 15px 5px rgba(144, 144, 144, 0.15);
    white-space: nowrap;
    max-width: 300px;
    overflow: auto; }
    .rtl .bwp-header .block-top-link > .widget .widget-custom-menu > div {
      text-align: right; }
    @media (min-width: 992px) {
        .bwp-header .block-top-link > .widget .widget-custom-menu > div {
          right: 0; } }
    @media (max-width: 991px) {
        .bwp-header .block-top-link > .widget .widget-custom-menu > div {
          right: 0;
          left: unset; }
          .rtl .bwp-header .block-top-link > .widget .widget-custom-menu > div {
            left: 0;
            right: auto; }
          .rtl .bwp-header .block-top-link > .widget .widget-custom-menu > div {
            right: unset;
            left: auto; } }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div .widget {
      margin-bottom: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div .widget ul {
      padding: 0;
      list-style: none; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu {
      min-width: 100px;
      padding: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li {
      border-bottom: 1px solid #f5f5f5; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li a {
      color: #868686;
      padding: 5px 0;
      display: inline-block; }
      .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li a:hover {
        color: #D3AD47; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li:last-child {
      border-bottom: 0; }
      .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li:last-child a {
        padding-bottom: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul#menu-top-menu li:first-child a {
      padding-top: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li {
      border-bottom: 1px solid #f5f5f5; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li a {
      color: #868686;
      padding: 5px 0;
      display: inline-block;
      font-size: 12px; }
      .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li a:hover {
        color: #D3AD47; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li:last-child {
      border-bottom: 0; }
      .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li:last-child a {
        padding-bottom: 0; }
    .bwp-header .block-top-link > .widget .widget-custom-menu > div ul li:first-child a {
      padding-top: 0; }
  .bwp-header .menu_fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1210px;
    padding: 0 40px;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s; }
  .bwp-header .menu_fixed .logo {
    margin: 20px 0; }
  .bwp-header .menu_fixed .navbar-mega .navbar-nav > li > a {
    line-height: 55px; }
  .bwp-header .menu_fixed .search-from {
    top: 22px;
    right: 40px; }
  .rtl .bwp-header .menu_fixed .search-from {
    left: 40px;
    right: auto; }
  .bwp-header .menu_fixed .top-cart {
    right: 90px;
    top: 23px; }
  .rtl .bwp-header .menu_fixed .top-cart {
    left: 90px;
    right: auto; }
  .bwp-header .header-logo {
    z-index: 9; }
  .bwp-header .header-right {
    position: relative;
    color: #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .bwp-header .list-sale-ship {
    margin-left: 50px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    display: flex;
    padding-left: 50px;
    position: relative; }
  .rtl .bwp-header .list-sale-ship {
    margin-right: 50px;
    margin-left: 0; }
  .rtl .bwp-header .list-sale-ship {
    padding-right: 50px;
    padding-left: 0; }
  .bwp-header .list-sale-ship:before {
    content: "\e92c";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: icomoon;
    font-size: 40px;
    font-weight: 400; }
  .rtl .bwp-header .list-sale-ship:before {
    right: 0;
    left: auto; }
  .bwp-header .list-sale-ship .sale {
    color: #D3AD47;
    margin-left: 5px;
    text-decoration: underline; }
  .rtl .bwp-header .list-sale-ship .sale {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-header .wpbingoLogo img {
    max-height: 55px;
    width: auto;
    margin-bottom: -11px; }
  @media (max-width: 480px) {
    .bwp-header .wpbingoLogo {
      margin-bottom: 15px;
      text-align: center; } }
  .bwp-header .box-menu ul {
    padding: 0;
    list-style: none; }
  .bwp-header .box-menu ul li {
    display: inline-block; }
  .bwp-header .box-menu ul li:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 15px;
    background: #525252; }
  .bwp-header .box-menu ul li:first-child:before {
    display: none; }
  .bwp-header .box-menu ul li a {
    color: #fff;
    font-size: 13px; }
    .bwp-header .box-menu ul li a:hover {
      color: #D3AD47; }
  @media (max-width: 1199px) {
    .bwp-header .wpbingo-menu-mobile.text-center .wpbingo-menu-wrapper {
      margin-right: -30px; }
      .rtl .bwp-header .wpbingo-menu-mobile.text-center .wpbingo-menu-wrapper {
        margin-left: -30px;
        margin-right: 0; } }
  @media (max-width: 991px) {
  .bwp-header .header-desktop {
    display: none; } }
  @media (min-width: 992px) {
  .bwp-header .header-mobile {
    display: none; } }
  .bwp-header .header-mobile {
    padding: 20px 0; }
  .bwp-header .header-mobile > .container > .row {
    align-items: center; }
  .bwp-header .header-mobile .navbar-toggle {
    border: 0;
    background: transparent;
    padding: 0; }
  .bwp-header .header-mobile .navbar-toggle:before {
    content: "\e908";
    font-family: wpbingofont;
    font-size: 20px;
    color: #000; }
  .bwp-header .header-mobile .navbar-toggle span {
    display: none; }
  .bwp-header .header-mobile .wpbingoLogo {
    text-align: center;
    margin: 0 !important; }
  .bwp-header .header-mobile .vapier-topcart {
    margin: 0 10px; }
  .bwp-header .header-mobile .mini-cart {
    text-align: right; }
  .rtl .bwp-header .header-mobile .mini-cart {
    text-align: left; }
  .bwp-header .header-mobile .mini-cart .cart-icon {
    position: relative;
    top: -2px; }
  .bwp-header .header-mobile .mini-cart .cart-icon .icons-cart {
    display: inline-block;
    position: relative; }
  .bwp-header .header-mobile .mini-cart .cart-icon i {
    font-size: 18px;
    position: relative;
    top: 4px; }
  .bwp-header .header-mobile .mini-cart .cart-count {
    position: absolute;
    top: -10px;
    right: -14px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #fff;
    text-align: center;
    background: #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 10px; }
  .rtl .bwp-header .header-mobile .mini-cart .cart-count {
    left: -14px;
    right: auto; }
  .bwp-header .header-mobile .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .bwp-header .header-mobile .wpbingo-verticalmenu-mobile {
    display: inline-block; }
  .bwp-header .header-mobile #show-verticalmenu {
    border: 0; }
  .bwp-header .header-mobile #show-verticalmenu:before {
    content: "\e909"; }
  .bwp-header .header-mobile .header-mobile-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: flex;
    padding: 10px 15px 5px;
    align-items: center;
    -webkit-box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3);
    box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3); }
  .bwp-header .header-mobile .header-mobile-fixed > div {
    flex: 1;
    text-align: center; }
  .bwp-header .header-mobile .header-mobile-fixed .search-toggle {
    color: #000;
    font-size: 20px; }
  .bwp-header .header-mobile .header-mobile-fixed .wishlist-box a {
    color: #000;
    font-size: 20px; }
    .bwp-header .header-mobile .header-mobile-fixed .wishlist-box a:hover {
      color: #D3AD47; }
  .bwp-header .header-mobile .header-mobile-fixed i {
    font-size: 20px; }
  .bwp-header .header-mobile .header-mobile-fixed i:hover {
    color: #D3AD47; }
  .bwp-header .header-mobile .header-mobile-fixed a:hover {
    color: #D3AD47; }
  .bwp-header .ship {
    display: flex;
    align-items: center; }
  .bwp-header .ship i {
    font-size: 30px;
    color: #D3AD47;
    margin-right: 10px; }
  .rtl .bwp-header .ship i {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-header .ship .content {
    color: #000;
    font-weight: 500; }
  @media (max-width: 1199px) {
    .bwp-header .ship .content {
      font-size: 12px; } }
  .bwp-header .ship-order {
    color: #ff9600;
    font-weight: 600;
    margin-left: 5px;
    position: relative; }
  .rtl .bwp-header .ship-order {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-header .ship-order:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ff9600;
    bottom: 3px;
    left: 0; }
  .bwp-header .header-campbar {
    text-align: center;
    padding: 17px 15px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase; }
  .bwp-header .header-campbar .content-campbar {
    max-width: 1740px;
    margin: auto;
    position: relative; }
  .bwp-header .header-campbar .close-campbar {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    line-height: 1;
    cursor: pointer; }
  .rtl .bwp-header .header-campbar .close-campbar {
    left: 0;
    right: auto; }
  .bwp-header .header-campbar .close-campbar:hover {
    color: #D3AD47; }
  @media (max-width: 480px) {
      .bwp-header .header-campbar .close-campbar {
        top: -12px; } }
  .bwp-header .header-wrapper {
    position: relative; }
  .bwp-header .content-header-main {
    position: relative; }
  .bwp-header .header-menu {
    margin-left: 20px; }
  .rtl .bwp-header .header-menu {
    margin-right: 20px;
    margin-left: 0; }
  .bwp-header .header-sticky {
    display: none;
    position: fixed !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.93);
    z-index: 900;
    left: 0;
    padding: 20px 0 !important;
    right: 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
    top: 0;
    border: none;
    -webkit-animation: sticky-header 900ms ease-in-out;
    -o-animation: sticky-header 900ms ease-in-out;
    animation: sticky-header 900ms ease-in-out; }
  .bwp-header .header-sticky .content-header-main {
    margin-left: 50px; }
  .rtl .bwp-header .header-sticky .content-header-main {
    margin-right: 50px;
    margin-left: 0; }
  .bwp-header.header-normal {
    background: transparent !important; }
  .bwp-header .header-normal {
    padding: 30px 0;
    background: transparent !important; }
  @media (max-width: 991px) {
      .bwp-header .header-normal .header-main {
        justify-content: flex-end !important; } }
  .bwp-header .header-normal .menu {
    display: flex;
    flex-wrap: wrap; }
  .bwp-header .header-normal .wpbingo-menu-mobile .navbar-default .navbar-toggle {
    color: #D3AD47 !important;
    border-color: #D3AD47 !important;
    position: unset !important; }
  .bwp-header .header-normal .header-wrapper {
    background: transparent !important; }
  .bwp-header .header-normal .header-wrapper .header-left {
    order: unset; }
  .bwp-header .header-normal .header-wrapper .wpbingoLogo {
    margin-bottom: 0;
    text-align: left; }
  .rtl .bwp-header .header-normal .header-wrapper .wpbingoLogo {
    text-align: right; }
  @media (max-width: 991px) {
    .bwp-header .header-normal .header-wrapper .wpbingoLogo {
      margin-bottom: 0;
      text-align: left; }
      .rtl .bwp-header .header-normal .header-wrapper .wpbingoLogo {
        text-align: right; } }
  @media (max-width: 480px) {
    .bwp-header .header-normal .wpbingoLogo {
      margin-bottom: 0;
      text-align: left; }
      .rtl .bwp-header .header-normal .wpbingoLogo {
        text-align: right; } }
  .bwp-header.header-v1 .header-top {
    border-bottom: 1px solid #e4e4e4; }
  .bwp-header.header-v1 .header-wrapper {
    border-bottom: 1px solid #e4e4e4; }
  .bwp-header.header-v2 .search-from #searchsubmit, .bwp-header.header-v2 .search-from #searchsubmit2 {
    background: #D3AD47; }
  .bwp-header.header-v2 .container-full {
    max-width: 1440px;
    margin: auto;
    padding: 0 15px; }
  .bwp-header.header-v2 .header-mobile {
    background: #000; }
  .bwp-header.header-v2 .header-mobile .navbar-toggle:before {
    color: #fff; }
  .bwp-header.header-v2 .header-mobile .mini-cart .cart-icon {
    color: #fff; }
  .bwp-header.header-v3 .container {
    max-width: 1770px; }
  .bwp-header.header-v3 .header-top {
    padding: 25px 0; }
  .bwp-header.header-v3 .header-wrapper .row {
    align-items: center; }
  .bwp-header.header-v3 .header-left > * {
    display: inline-block;
    vertical-align: bottom; }
  .bwp-header.header-v3 .header-page-link {
    margin-left: 45px; }
  .rtl .bwp-header.header-v3 .header-page-link {
    margin-right: 45px;
    margin-left: 0; }
  .bwp-header.header-v3 .header-mobile .navbar-toggle:before {
    color: #fff; }
  .bwp-header.header-v3 .header-mobile .cart-icon {
    color: #fff; }
  .bwp-header.header-v3 .search-from #searchsubmit, .bwp-header.header-v3 .search-from #searchsubmit2 {
    background: #D3AD47; }
  .bwp-header.header-v3 .header-menu {
    margin-left: 75px; }
  .rtl .bwp-header.header-v3 .header-menu {
    margin-right: 75px;
    margin-left: 0; }
  .bwp-header.header-v4 .header-top .header-left {
    display: flex;
    align-items: center; }
  .bwp-header.header-v4 .wpbingoLogo {
    margin-right: 80px; }
  .rtl .bwp-header.header-v4 .wpbingoLogo {
    margin-left: 80px;
    margin-right: 0; }
  .bwp-header.header-v4 .header-vertical-menu {
    margin-right: 20px; }
  .rtl .bwp-header.header-v4 .header-vertical-menu {
    margin-left: 20px;
    margin-right: 0; }
  .bwp-header.header-v4 .header-wrapper {
    padding: 15px 0;
    background: #ff9600; }
  .bwp-header.header-v4 .header-wrapper .header-right .content {
    color: #fff; }
  .bwp-header.header-v4 .header-wrapper .header-right .ship-order {
    color: #fff; }
    .bwp-header.header-v4 .header-wrapper .header-right .ship-order:before {
      background: #fff; }
  .bwp-header.header-v4 .header-wrapper .header-right .icon-delivery {
    color: #fff; }
  .bwp-header.header-v4 .header-menu {
    margin-left: 0; }
  .rtl .bwp-header.header-v4 .header-menu {
    margin-right: 0;
    margin-left: 0; }
  .bwp-header.header-v4 .bwp-navigation ul > li.level-0:first-child {
    padding-left: 0; }
  .rtl .bwp-header.header-v4 .bwp-navigation ul > li.level-0:first-child {
    padding-right: 0;
    padding-left: 0; }
  .bwp-header.header-v4 .bwp-navigation ul > li.level-0 > a {
    color: #fff; }
  .bwp-header.header-v4 .categories-vertical-menu .widget-title {
    background: transparent;
    color: #D3AD47;
    font-weight: 600; }
  .bwp-header.header-v4 .categories-vertical-menu .widget-title i {
    background: #D3AD47; }
    .bwp-header.header-v4 .categories-vertical-menu .widget-title i:before {
      background: #D3AD47; }
    .bwp-header.header-v4 .categories-vertical-menu .widget-title i:after {
      background: #D3AD47; }
  .bwp-header.header-v4 .categories-vertical-menu .widget-title:after {
    color: #000; }
  .bwp-header.header-v5 .search-from #searchsubmit, .bwp-header.header-v5 .search-from #searchsubmit2 {
    background: #D3AD47; }
  .bwp-header.header-v5 .header-wrapper {
    background: #000; }
  .bwp-header.header-v5 .bwp-navigation ul > li.level-0 > a {
    color: #fff; }
  .bwp-header.header-v5 .ship .content {
    color: #fff; }
  .bwp-header.header-v5 .categories-vertical-menu .widget-title {
    background: #D3AD47;
    padding: 0;
    color: #fff; }
  .bwp-header.header-v5 .categories-vertical-menu {
    height: 60px; }
  .bwp-header.header-v5 .categories-vertical-menu > div {
    border: 1px solid #e6e6e6;
    box-shadow: unset;
    margin-top: 10px;
    border-top: 3px solid #ff9600; }
  .bwp-header.header-v6 .categories-vertical-menu .widget-title {
    background: #ff9600;
    padding: 0;
    color: #fff; }
  .bwp-header.header-v6 .categories-vertical-menu {
    height: 60px; }
  .bwp-header.header-v6 .header-mobile {
    background: #000; }
  .bwp-header.header-v6 .header-mobile .navbar-toggle:before {
    color: #fff; }
  .bwp-header.header-v6 .header-mobile .cart-icon {
    color: #fff; }
  .bwp-header.header-v6 .search-from #searchsubmit, .bwp-header.header-v6 .search-from #searchsubmit2 {
    background: #D3AD47; }
  .bwp-header.header-v6 .wpbingoLogo {
    margin: 0;
    padding-right: 10px; }
  .rtl .bwp-header.header-v6 .wpbingoLogo {
    padding-left: 10px;
    padding-right: 0; }
  .bwp-header.header-v7 .container {
    max-width: 1770px; }
  .bwp-header.header-v7 .content-header-main {
    position: relative; }
  .bwp-header.header-v7 .bwp-navigation ul > li.level-0:first-child {
    padding-left: 0; }
  .rtl .bwp-header.header-v7 .bwp-navigation ul > li.level-0:first-child {
    padding-right: 0;
    padding-left: 0; }
  .bwp-header.header-v7 .header-mobile {
    background: #000; }
  .bwp-header.header-v7 .header-mobile .navbar-toggle:before {
    color: #fff; }
  .bwp-header.header-v7 .header-mobile .mini-cart .cart-icon {
    color: #fff; }
  .bwp-header.header-v7 .header-menu {
    margin: 0;
    text-align: center; }
  .bwp-header.header-v7 .header-top {
    position: relative;
    z-index: 10; }
  .bwp-header.header-v8 .header-menu {
    margin: 0; }
  .bwp-header.header-v8 .bwp-navigation ul > li.level-0:first-child {
    padding-left: 0; }
  .rtl .bwp-header.header-v8 .bwp-navigation ul > li.level-0:first-child {
    padding-right: 0;
    padding-left: 0; }
  .bwp-header.header-v8 .wpbingoLogo {
    text-align: center; }
  .bwp-header.bwp-header-default .header-desktop {
    padding: 30px 0; }
  .bwp-header.bwp-header-default .header-content .row {
    align-items: center; }
  @media (max-width: 480px) {
      .bwp-header.bwp-header-default .wpbingoLogo {
        text-align: left; }
        .rtl .bwp-header.bwp-header-default .wpbingoLogo {
          text-align: right; } }
  .bwp-header.bwp-header-default .wpbingo-menu-mobile.text-right .navbar-toggle {
    float: right; }
    .rtl .bwp-header.bwp-header-default .wpbingo-menu-mobile.text-right .navbar-toggle {
      float: left; }
  .bwp-header.bwp-header-default .wpbingo-menu-mobile.text-right .bwp-navigation ul > li.level-0:last-child > a {
    margin-right: 0; }
    .rtl .bwp-header.bwp-header-default .wpbingo-menu-mobile.text-right .bwp-navigation ul > li.level-0:last-child > a {
      margin-left: 0;
      margin-right: 0; }
  @media (max-width: 991px) {
    .bwp-header.bwp-header-default .wpbingoLogo {
      margin-bottom: 0 !important; }

    .bwp-header.bwp-header-default .header-logo {
      margin-bottom: 0 !important; }

    .bwp-header.bwp-header-default #show-megamenu {
      position: unset !important; } }

.form-login-register {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: -100px;
  z-index: 9999;
  min-width: 400px;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .rtl .form-login-register {
    left: -100px;
    right: auto; }
  .rtl .form-login-register {
    text-align: right; }
  .form-login-register:before {
    position: absolute;
    content: "";
    top: -12px;
    right: 106px;
    border-color: transparent;
    border-width: 6px 5px;
    border-style: solid;
    border-bottom-color: #D3AD47; }
  .rtl .form-login-register:before {
    left: 106px;
    right: auto; }
  .form-login-register .remove-form-login-register {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: 1; }
  .form-login-register.active {
    display: block; }
  .form-login-register.active .remove-form-login-register {
    display: block; }
  .form-login-register .box-content {
    position: relative;
    border: 1px solid #e5e5e5; }
  .form-login-register .box-content > div {
    position: relative;
    z-index: 3;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  .form-login-register .box-content > div.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  .form-login-register .box-content > div.active .login {
    display: block !important; }
  .form-login-register .box-content > div > form {
    padding: 30px;
    position: relative; }
  @media (max-width: 480px) {
        .form-login-register .box-content > div > form {
          padding: 45px 15px 15px; } }
  .form-login-register .box-content .form-register {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  .form-login-register .box-content .form-register.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  .form-login-register .box-form-login {
    max-width: 400px;
    background: #fff;
    margin: auto;
    overflow: hidden;
    border-top: 2px solid #D3AD47;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10; }
  .form-login-register .box-form-login .active-login {
    text-align: right;
    position: absolute;
    z-index: 9;
    right: -2px;
    top: -2px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom-color: transparent; }
  .rtl .form-login-register .box-form-login .active-login {
    text-align: left; }
  .rtl .form-login-register .box-form-login .active-login {
    left: -2px;
    right: auto; }
  .form-login-register .box-form-login .active-login:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 14px;
    top: 50%;
    left: calc(50% - 7px);
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .form-login-register .box-form-login .active-login:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 14px;
    top: 50%;
    left: calc(50% - 7px);
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(95deg);
    -moz-transform: rotate(95deg);
    -ms-transform: rotate(95deg);
    -o-transform: rotate(95deg);
    transform: rotate(95deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .form-login-register .box-form-login .active-login:hover {
    background: #e5e5e5; }
  .form-login-register .box-form-login .active-login:hover:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  .form-login-register .box-form-login .active-login:hover:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media (max-width: 480px) {
      .form-login-register .box-form-login .active-login {
        right: 2px;
        top: 16px; }
        .rtl .form-login-register .box-form-login .active-login {
          left: 2px;
          right: auto; } }
  .form-login-register .box-form-login .login-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; }
  .form-login-register .box-form-login label {
    margin: 0 0 5px;
    font-size: 14px; }
  .form-login-register .box-form-login label:not(.inline):after {
    content: "*";
    display: inline-block;
    color: red;
    margin-left: 5px; }
    .rtl .form-login-register .box-form-login label:not(.inline):after {
      margin-right: 5px;
      margin-left: 0; }
  .form-login-register .box-form-login h2 {
    text-align: center;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin: 0; }
  .form-login-register .box-form-login .button-login input[type="submit"], .form-login-register .box-form-login .button-register input[type="submit"] {
    background: #000;
    border: 0;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500; }
  .form-login-register .box-form-login .button-login input[type="submit"]:hover, .form-login-register .box-form-login .button-register input[type="submit"]:hover {
    background: #D3AD47; }
  .form-login-register .box-form-login .button-next-reregister, .form-login-register .box-form-login .button-next-login {
    background: transparent;
    border: 0;
    font-size: 16px;
    color: #D3AD47;
    cursor: pointer;
    display: inline-block;
    font-weight: 500; }
  .form-login-register .box-form-login .button-next-reregister a, .form-login-register .box-form-login .button-next-login a {
    color: #D3AD47; }
  .form-login-register .box-form-login .button-next-reregister a:hover, .form-login-register .box-form-login .button-next-login a:hover {
    color: #000; }
  .form-login-register .box-form-login .content input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 14px; }
  .form-login-register .box-form-login .content .username, .form-login-register .box-form-login .content .password, .form-login-register .box-form-login .content .email {
    margin-bottom: 15px; }
  .form-login-register .box-form-login .content .username input, .form-login-register .box-form-login .content .password input, .form-login-register .box-form-login .content .email input {
    padding: 0 20px; }
  .form-login-register .box-form-login .content .username {
    margin-bottom: 15px;
    position: relative; }
  .form-login-register .box-form-login .content .email {
    position: relative; }
  .form-login-register .box-form-login .user-role {
    margin: 0 0 18px;
    justify-content: space-between; }
  .form-login-register .box-form-login .user-role:after, .form-login-register .box-form-login .user-role:before {
    display: none; }
  .form-login-register .box-form-login .user-role input {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: 3px; }
  .form-login-register .box-form-login .user-role .radio {
    color: #000;
    font-weight: 500;
    cursor: pointer; }
  .form-login-register .box-form-login .rememberme-lost {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 17px;
    margin-bottom: 10px; }
  .form-login-register .box-form-login .rememberme-lost .rememberme {
    margin-right: 10px;
    position: relative; }
  .rtl .form-login-register .box-form-login .rememberme-lost .rememberme {
    margin-left: 10px;
    margin-right: 0; }
  .form-login-register .box-form-login .rememberme-lost .rememberme input {
    display: none; }
    .form-login-register .box-form-login .rememberme-lost .rememberme input:checked + label:after {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .form-login-register .box-form-login .rememberme-lost .inline {
    color: #000;
    font-weight: 500;
    cursor: pointer;
    position: relative; }
  .form-login-register .box-form-login .rememberme-lost .inline:before {
    width: 16px;
    height: 16px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #868686;
    margin-right: 5px;
    position: relative;
    top: 3px;
    z-index: 2; }
    .rtl .form-login-register .box-form-login .rememberme-lost .inline:before {
      margin-left: 5px;
      margin-right: 0; }
  .form-login-register .box-form-login .rememberme-lost .inline:after {
    width: 16px;
    height: 16px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 3px;
    border: 4px solid #fff;
    left: 0;
    background: #D3AD47;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
    .rtl .form-login-register .box-form-login .rememberme-lost .inline:after {
      right: 0;
      left: auto; }
  .form-login-register .box-form-login .rememberme-lost .lost_password {
    font-weight: 500; }
  .form-login-register .box-form-login .rememberme-lost .lost_password a {
    display: inline-block;
    position: relative;
    font-size: 13px;
    color: #000 !important; }
    .form-login-register .box-form-login .rememberme-lost .lost_password a:before {
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      background: #000; }
    .form-login-register .box-form-login .rememberme-lost .lost_password a:hover:before {
      width: 50%; }
  @media (max-width: 480px) {
  .form-login-register .box-form-login {
    width: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 30px 15px 15px; } }
/************************************************************************************************
 SICKEY MENU
 *************************************************************************************************/
@media (min-width: 991px) {
    .bwp-header.sticky .header-sticky {
      display: inline-block; } }
  .bwp-header.sticky .header-wrapper {
    padding: 0 !important; }
  @media (max-width: 991px) {
  .bwp-header.sticky {
    position: relative !important;
    animation: none; }
    .bwp-header.sticky .header-mobile > .container {
      position: fixed !important;
      width: 100%;
      background: #fff;
      z-index: 900;
      left: 0;
      padding-top: 20px;
      padding-bottom: 20px;
      right: 0;
      box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.08);
      top: 0;
      border: none;
      -webkit-animation: sticky-header 900ms ease-in-out;
      -o-animation: sticky-header 900ms ease-in-out;
      animation: sticky-header 900ms ease-in-out; } }
  .bwp-header.sticky.header-v8 .header-sticky {
    background: rgba(0, 0, 0, 0.5); }

body.home .bwp-header.header-v1 .header-wrapper, body.page-template-homepage .bwp-header.header-v1 .header-wrapper {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 25px; }
  body.home .bwp-header.header-v1 .header-wrapper .row, body.page-template-homepage .bwp-header.header-v1 .header-wrapper .row {
    align-items: center; }
  body.home .bwp-header.header-v2 .container-full, body.page-template-homepage .bwp-header.header-v2 .container-full {
    margin: -35px 0 0;
    max-width: 1440px;
    padding: 0 15px;
    width: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute; }
  body.home .bwp-header.header-v2 .header-top, body.page-template-homepage .bwp-header.header-v2 .header-top {
    padding: 25px 0 60px; }
  body.home .bwp-header.header-v2 .header-page-link h3, body.page-template-homepage .bwp-header.header-v2 .header-page-link h3 {
    color: #fff; }
  body.home .bwp-header.header-v2 .header-page-link h3:hover, body.page-template-homepage .bwp-header.header-v2 .header-page-link h3:hover {
    color: #fff !important; }
  body.home .bwp-header.header-v2 .header-page-link .login-header > a:hover, body.page-template-homepage .bwp-header.header-v2 .header-page-link .login-header > a:hover {
    color: #fff; }
  body.home .bwp-header.header-v2 .header-page-link a, body.page-template-homepage .bwp-header.header-v2 .header-page-link a {
    color: #fff; }
  body.home .bwp-header.header-v2 .header-page-link .mini-cart .cart-icon .icons-cart, body.page-template-homepage .bwp-header.header-v2 .header-page-link .mini-cart .cart-icon .icons-cart {
    color: #fff; }
  body.home .bwp-header.header-v2 .header-page-link .search-box .search-toggle, body.page-template-homepage .bwp-header.header-v2 .header-page-link .search-box .search-toggle {
    color: #fff; }
  body.home .bwp-header.header-v2 .container-wrapper, body.page-template-homepage .bwp-header.header-v2 .container-wrapper {
    background: #fff;
    padding-right: 25px;
    max-width: 1410px;
    width: 100%; }
  .rtl body.home .bwp-header.header-v2 .container-wrapper, .rtl body.page-template-homepage .bwp-header.header-v2 .container-wrapper {
    padding-left: 25px;
    padding-right: 0; }
  body.home .bwp-header.header-v3, body.page-template-homepage .bwp-header.header-v3 {
    background: #000; }
  body.home .bwp-header.header-v3 .header-page-link h3, body.page-template-homepage .bwp-header.header-v3 .header-page-link h3 {
    color: #fff; }
  body.home .bwp-header.header-v3 .header-page-link h3:hover, body.page-template-homepage .bwp-header.header-v3 .header-page-link h3:hover {
    color: #fff !important; }
  body.home .bwp-header.header-v3 .header-page-link a, body.page-template-homepage .bwp-header.header-v3 .header-page-link a {
    color: #fff; }
  body.home .bwp-header.header-v3 .header-page-link .login-header > a:hover, body.page-template-homepage .bwp-header.header-v3 .header-page-link .login-header > a:hover {
    color: #fff; }
  body.home .bwp-header.header-v3 .header-page-link .mini-cart .cart-icon, body.page-template-homepage .bwp-header.header-v3 .header-page-link .mini-cart .cart-icon {
    color: #fff; }
  body.home .bwp-header.header-v3 .header-page-link .mini-cart .cart-icon i, body.page-template-homepage .bwp-header.header-v3 .header-page-link .mini-cart .cart-icon i {
    color: #fff; }
  body.home .bwp-header.header-v3 .header-page-link .search-box .search-toggle, body.page-template-homepage .bwp-header.header-v3 .header-page-link .search-box .search-toggle {
    color: #fff; }
  body.home .bwp-header.header-v3 .bwp-navigation ul > li.level-0 > a, body.page-template-homepage .bwp-header.header-v3 .bwp-navigation ul > li.level-0 > a {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-top, body.page-template-homepage .bwp-header.header-v6 .header-top {
    background: #7b0e0e; }
  body.home .bwp-header.header-v6 .header-page-link h3, body.page-template-homepage .bwp-header.header-v6 .header-page-link h3 {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-page-link h3:hover, body.page-template-homepage .bwp-header.header-v6 .header-page-link h3:hover {
    color: #fff !important; }
  body.home .bwp-header.header-v6 .header-page-link .login-header > a:hover, body.page-template-homepage .bwp-header.header-v6 .header-page-link .login-header > a:hover {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-page-link a, body.page-template-homepage .bwp-header.header-v6 .header-page-link a {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-page-link .mini-cart .cart-icon, body.page-template-homepage .bwp-header.header-v6 .header-page-link .mini-cart .cart-icon {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-page-link .mini-cart .cart-icon i, body.page-template-homepage .bwp-header.header-v6 .header-page-link .mini-cart .cart-icon i {
    color: #fff; }
  body.home .bwp-header.header-v6 .header-page-link .search-box .search-toggle, body.page-template-homepage .bwp-header.header-v6 .header-page-link .search-box .search-toggle {
    color: #fff; }
  @media (min-width: 991px) {
        body.home .bwp-header.header-v7, body.page-template-homepage .bwp-header.header-v7 {
          position: absolute;
          width: 100%;
          left: 0; } }
  body.home .bwp-header.header-v7 .header-page-link h3, body.page-template-homepage .bwp-header.header-v7 .header-page-link h3 {
    color: #fff; }
  body.home .bwp-header.header-v7 .header-page-link h3:hover, body.page-template-homepage .bwp-header.header-v7 .header-page-link h3:hover {
    color: #fff !important; }
  body.home .bwp-header.header-v7 .header-page-link a, body.page-template-homepage .bwp-header.header-v7 .header-page-link a {
    color: #fff; }
  body.home .bwp-header.header-v7 .header-page-link .mini-cart .cart-icon .icons-cart, body.page-template-homepage .bwp-header.header-v7 .header-page-link .mini-cart .cart-icon .icons-cart {
    color: #fff; }
  body.home .bwp-header.header-v7 .header-page-link .search-box .search-toggle, body.page-template-homepage .bwp-header.header-v7 .header-page-link .search-box .search-toggle {
    color: #fff; }
  body.home .bwp-header.header-v7 .bwp-navigation ul > li.level-0 > a, body.page-template-homepage .bwp-header.header-v7 .bwp-navigation ul > li.level-0 > a {
    color: #fff; }

.wpbingoLogo-sticky {
  display: none; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }
/* 3. Base */
.bwp-slider .slick-carousel:not(.slick-initialized) {
  display: block; }

.slick-carousel:not(.slick-initialized) {
  display: none; }

.home .page-title, .page-template-homepage .page-title, .page-template-homepage-fixed .page-title, .page-template-homepage-v2 .page-title {
  display: none; }
  .home #bwp-footer, .page-template-homepage #bwp-footer, .page-template-homepage-fixed #bwp-footer, .page-template-homepage-v2 #bwp-footer {
    margin-top: 0; }

.wpcf7-spinner {
  position: absolute;
  right: 0;
  margin: 0; }

.wpcf7-form p {
  margin: 0;
  display: contents; }

.wpcf7-form br {
  display: none; }

.page-template-homepage .container {
  max-width: 1440px; }
  @media (min-width: 1440px) {
      .page-template-homepage #bwp-footer .container {
        max-width: 1440px; } }
  ::-moz-selection {
    color: #fff;
    background: #D3AD47; }
  ::selection {
    color: #fff;
    background: #D3AD47; }

iframe {
  border: none; }

del {
  font-size: 13px;
  color: #868686; }

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto; }

.video-responsive {
  height: 0;
  padding-top: 0;
  padding-bottom: 56.25%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden; }
  .video-responsive embed, .video-responsive iframe, .video-responsive object, .video-responsive video {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%; }

blockquote {
  font-weight: 500;
  margin: 30px 0;
  padding: 0 100px 0 60px;
  color: #666;
  border-left: 2px solid #D3AD47;
  position: relative;
  font-size: 16px; }
  .rtl blockquote {
    padding: 0 60px 0 100px; }
  .rtl blockquote {
    border-right: 2px solid #D3AD47;
    border-left: 0; }
  blockquote:before {
    content: ""; }
  blockquote p {
    margin: 0; }
  blockquote strong, blockquote b {
    font-weight: 400; }
  blockquote h2 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 15px 0 0; }
  blockquote i {
    display: block;
    font-size: 23px;
    color: #dadada;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
  blockquote {
    font-size: 14px;
    padding: 0 50px 0 30px; }
    .rtl blockquote {
      padding: 0 30px 0 50px; } }

.audio-responsive iframe {
  width: 100%;
  height: 126px; }

textarea:focus, input:focus {
  outline: none; }

.map_canvas img {
  max-width: none; }

.spinner {
  background-size: 20px 20px;
  display: block;
  margin: 0 auto;
  background: url("/wp-content/themes/vapier/images/spinner.gif") no-repeat;
  opacity: 0.7;
  filter: alpha(opacity=70);
  width: 20px;
  height: 20px; }

table .product-remove, .table .product-remove {
  position: relative; }
  table .product-remove a.remove, .table .product-remove a.remove {
    font-size: 0;
    background: transparent !important;
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    width: 100%;
    text-align: center;
    text-indent: 1px; }
  .rtl table .product-remove a.remove, .rtl .table .product-remove a.remove {
    right: 0;
    left: auto; }
  table .product-remove a.remove:before, .table .product-remove a.remove:before {
    display: inline-block;
    content: "\f136";
    font-family: "Material";
    font-size: 10px;
    color: #000 !important;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 15px; }
  table .product-remove a.remove:hover:before, .table .product-remove a.remove:hover:before {
    color: #fff !important;
    background: #D3AD47;
    border-color: #D3AD47; }
  table .product-thumbnail a img, .table .product-thumbnail a img {
    width: 80px; }
  table > thead > tr > th, .table > thead > tr > th, table > thead > tr > td, .table > thead > tr > td {
    border-bottom-width: 0px; }
  table.shop_table, .table.shop_table {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 21px;
    border: 0; }
  table.shop_table > thead > tr > th, .table.shop_table > thead > tr > th, table.shop_table > tbody > tr > th, .table.shop_table > tbody > tr > th, table.shop_table > tfoot > tr > th, .table.shop_table > tfoot > tr > th {
    padding: 16px 30px;
    line-height: 1.7;
    vertical-align: top;
    border: 1px solid #e4e4e4;
    color: #000; }
  table.shop_table > thead > tr > td, .table.shop_table > thead > tr > td, table.shop_table > tbody > tr > td, .table.shop_table > tbody > tr > td, table.shop_table > tfoot > tr > td, .table.shop_table > tfoot > tr > td {
    padding: 16px 30px;
    line-height: 1.7;
    vertical-align: top;
    border: 1px solid #e4e4e4; }
  table.shop_table thead, .table.shop_table thead {
    border: 1px solid #e8e8e8; }
  table.shop_table thead th, .table.shop_table thead th {
    font-size: 15px;
    text-transform: uppercase;
    border: 0 !important;
    font-weight: 500; }
  table.shop_table.cart > thead > tr > th, .table.shop_table.cart > thead > tr > th, table.shop_table.cart > tbody > tr > th, .table.shop_table.cart > tbody > tr > th, table.shop_table.cart > tfoot > tr > th, .table.shop_table.cart > tfoot > tr > th, table.shop_table.cart > thead > tr > td, .table.shop_table.cart > thead > tr > td, table.shop_table.cart > tbody > tr > td, .table.shop_table.cart > tbody > tr > td, table.shop_table.cart > tfoot > tr > td, .table.shop_table.cart > tfoot > tr > td {
    vertical-align: middle; }
  table.shop_table.cart > thead > tr > th.product-subtotal span, .table.shop_table.cart > thead > tr > th.product-subtotal span, table.shop_table.cart > tbody > tr > th.product-subtotal span, .table.shop_table.cart > tbody > tr > th.product-subtotal span, table.shop_table.cart > tfoot > tr > th.product-subtotal span, .table.shop_table.cart > tfoot > tr > th.product-subtotal span, table.shop_table.cart > thead > tr > td.product-subtotal span, .table.shop_table.cart > thead > tr > td.product-subtotal span, table.shop_table.cart > tbody > tr > td.product-subtotal span, .table.shop_table.cart > tbody > tr > td.product-subtotal span, table.shop_table.cart > tfoot > tr > td.product-subtotal span, .table.shop_table.cart > tfoot > tr > td.product-subtotal span {
    color: #000; }
  table.shop_table.cart > thead > tr > th.product-quantity > .quantity, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity, table.shop_table.cart > thead > tr > td.product-quantity > .quantity, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity {
    min-width: 130px;
    border: 1px solid #e8e8e8;
    display: inline-block; }
    table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input {
      border: 0;
      text-align: center;
      width: 40px;
      float: right; }
      .rtl table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, .rtl .table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, .rtl table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, .rtl .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, .rtl table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, .rtl .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, .rtl table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, .rtl .table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, .rtl table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, .rtl .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, .rtl table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input, .rtl .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input {
        float: left; }
    table.shop_table.cart > thead > tr > th.product-quantity > .quantity button, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity button, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button, table.shop_table.cart > thead > tr > td.product-quantity > .quantity button, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity button, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button {
      border: 0;
      width: 40px; }
      table.shop_table.cart > thead > tr > th.product-quantity > .quantity button.plus, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity button.plus, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button.plus, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button.plus, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button.plus, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button.plus, table.shop_table.cart > thead > tr > td.product-quantity > .quantity button.plus, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity button.plus, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button.plus, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button.plus, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button.plus, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button.plus {
        float: right; }
        .rtl table.shop_table.cart > thead > tr > th.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > thead > tr > th.product-quantity > .quantity button.plus, .rtl table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button.plus, .rtl table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button.plus, .rtl table.shop_table.cart > thead > tr > td.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > thead > tr > td.product-quantity > .quantity button.plus, .rtl table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button.plus, .rtl table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button.plus, .rtl .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button.plus {
          float: left; }
    @media (max-width: 480px) {
              table.shop_table.cart > thead > tr > th.product-quantity > .quantity, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity, table.shop_table.cart > thead > tr > td.product-quantity > .quantity, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity {
                min-width: 80px; }
                table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity input, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity input, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity input, table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity input, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity input, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity input {
                  width: 30px; }
                table.shop_table.cart > thead > tr > th.product-quantity > .quantity button, .table.shop_table.cart > thead > tr > th.product-quantity > .quantity button, table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button, .table.shop_table.cart > tbody > tr > th.product-quantity > .quantity button, table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button, .table.shop_table.cart > tfoot > tr > th.product-quantity > .quantity button, table.shop_table.cart > thead > tr > td.product-quantity > .quantity button, .table.shop_table.cart > thead > tr > td.product-quantity > .quantity button, table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button, .table.shop_table.cart > tbody > tr > td.product-quantity > .quantity button, table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button, .table.shop_table.cart > tfoot > tr > td.product-quantity > .quantity button {
                  width: 25px; } }
  table.shop_table.cart > thead > tr > th.product-thumbnail, .table.shop_table.cart > thead > tr > th.product-thumbnail, table.shop_table.cart > tbody > tr > th.product-thumbnail, .table.shop_table.cart > tbody > tr > th.product-thumbnail, table.shop_table.cart > tfoot > tr > th.product-thumbnail, .table.shop_table.cart > tfoot > tr > th.product-thumbnail, table.shop_table.cart > thead > tr > td.product-thumbnail, .table.shop_table.cart > thead > tr > td.product-thumbnail, table.shop_table.cart > tbody > tr > td.product-thumbnail, .table.shop_table.cart > tbody > tr > td.product-thumbnail, table.shop_table.cart > tfoot > tr > td.product-thumbnail, .table.shop_table.cart > tfoot > tr > td.product-thumbnail {
    display: flex;
    align-items: center; }
  table.shop_table.cart > thead > tr > th.product-thumbnail a, .table.shop_table.cart > thead > tr > th.product-thumbnail a, table.shop_table.cart > tbody > tr > th.product-thumbnail a, .table.shop_table.cart > tbody > tr > th.product-thumbnail a, table.shop_table.cart > tfoot > tr > th.product-thumbnail a, .table.shop_table.cart > tfoot > tr > th.product-thumbnail a, table.shop_table.cart > thead > tr > td.product-thumbnail a, .table.shop_table.cart > thead > tr > td.product-thumbnail a, table.shop_table.cart > tbody > tr > td.product-thumbnail a, .table.shop_table.cart > tbody > tr > td.product-thumbnail a, table.shop_table.cart > tfoot > tr > td.product-thumbnail a, .table.shop_table.cart > tfoot > tr > td.product-thumbnail a {
    min-width: 80px;
    display: inline-block; }
  table.shop_table.cart > thead > tr > th.product-price, .table.shop_table.cart > thead > tr > th.product-price, table.shop_table.cart > tbody > tr > th.product-price, .table.shop_table.cart > tbody > tr > th.product-price, table.shop_table.cart > tfoot > tr > th.product-price, .table.shop_table.cart > tfoot > tr > th.product-price, table.shop_table.cart > thead > tr > td.product-price, .table.shop_table.cart > thead > tr > td.product-price, table.shop_table.cart > tbody > tr > td.product-price, .table.shop_table.cart > tbody > tr > td.product-price, table.shop_table.cart > tfoot > tr > td.product-price, .table.shop_table.cart > tfoot > tr > td.product-price {
    color: #000; }
  table.shop_table.cart > thead > tr > th .product-name, .table.shop_table.cart > thead > tr > th .product-name, table.shop_table.cart > tbody > tr > th .product-name, .table.shop_table.cart > tbody > tr > th .product-name, table.shop_table.cart > tfoot > tr > th .product-name, .table.shop_table.cart > tfoot > tr > th .product-name, table.shop_table.cart > thead > tr > td .product-name, .table.shop_table.cart > thead > tr > td .product-name, table.shop_table.cart > tbody > tr > td .product-name, .table.shop_table.cart > tbody > tr > td .product-name, table.shop_table.cart > tfoot > tr > td .product-name, .table.shop_table.cart > tfoot > tr > td .product-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px; }
  .rtl table.shop_table.cart > thead > tr > th .product-name, .rtl .table.shop_table.cart > thead > tr > th .product-name, .rtl table.shop_table.cart > tbody > tr > th .product-name, .rtl .table.shop_table.cart > tbody > tr > th .product-name, .rtl table.shop_table.cart > tfoot > tr > th .product-name, .rtl .table.shop_table.cart > tfoot > tr > th .product-name, .rtl table.shop_table.cart > thead > tr > td .product-name, .rtl .table.shop_table.cart > thead > tr > td .product-name, .rtl table.shop_table.cart > tbody > tr > td .product-name, .rtl .table.shop_table.cart > tbody > tr > td .product-name, .rtl table.shop_table.cart > tfoot > tr > td .product-name, .rtl .table.shop_table.cart > tfoot > tr > td .product-name {
    margin-right: 30px;
    margin-left: 0; }
  table.shop_table.cart > thead > tr > th .product-name a, .table.shop_table.cart > thead > tr > th .product-name a, table.shop_table.cart > tbody > tr > th .product-name a, .table.shop_table.cart > tbody > tr > th .product-name a, table.shop_table.cart > tfoot > tr > th .product-name a, .table.shop_table.cart > tfoot > tr > th .product-name a, table.shop_table.cart > thead > tr > td .product-name a, .table.shop_table.cart > thead > tr > td .product-name a, table.shop_table.cart > tbody > tr > td .product-name a, .table.shop_table.cart > tbody > tr > td .product-name a, table.shop_table.cart > tfoot > tr > td .product-name a, .table.shop_table.cart > tfoot > tr > td .product-name a {
    font-size: 14px; }
  table.shop_table.cart > thead > tr:not(.cart_item) > td, .table.shop_table.cart > thead > tr:not(.cart_item) > td, table.shop_table.cart > tbody > tr:not(.cart_item) > td, .table.shop_table.cart > tbody > tr:not(.cart_item) > td, table.shop_table.cart > tfoot > tr:not(.cart_item) > td, .table.shop_table.cart > tfoot > tr:not(.cart_item) > td {
    text-align: left; }
  .rtl table.shop_table.cart > thead > tr:not(.cart_item) > td, .rtl .table.shop_table.cart > thead > tr:not(.cart_item) > td, .rtl table.shop_table.cart > tbody > tr:not(.cart_item) > td, .rtl .table.shop_table.cart > tbody > tr:not(.cart_item) > td, .rtl table.shop_table.cart > tfoot > tr:not(.cart_item) > td, .rtl .table.shop_table.cart > tfoot > tr:not(.cart_item) > td {
    text-align: right; }
  table.shop_table.cart > thead th, .table.shop_table.cart > thead th {
    padding: 15px;
    border: 0;
    border-bottom: 1px solid #e8e8e8; }
  table.shop_table.cart > thead th.product-remove, .table.shop_table.cart > thead th.product-remove {
    width: 80px; }
  table.shop_table.cart > tbody, .table.shop_table.cart > tbody {
    border: 1px solid #e8e8e8;
    border-top: 0; }
  table.shop_table.cart > tbody td, .table.shop_table.cart > tbody td {
    padding: 15px;
    border: 0;
    border-bottom: 1px solid #e8e8e8; }
  @media (max-width: 991px) {
      table.shop_table.cart > thead, .table.shop_table.cart > thead {
        display: none; }
      table.shop_table.cart > tbody, .table.shop_table.cart > tbody {
        border: 2px solid #e8e8e8; }
        table.shop_table.cart > tbody > tr, .table.shop_table.cart > tbody > tr {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          border-bottom: 2px solid #e8e8e8; }
          table.shop_table.cart > tbody > tr td, .table.shop_table.cart > tbody > tr td {
            border: 0;
            padding: 5px 10px; }
            table.shop_table.cart > tbody > tr td.product-quantity, .table.shop_table.cart > tbody > tr td.product-quantity {
              flex: 1; }
            table.shop_table.cart > tbody > tr td.product-thumbnail, .table.shop_table.cart > tbody > tr td.product-thumbnail {
              flex: 0 0 100%; }
            table.shop_table.cart > tbody > tr td.product-thumbnail, .table.shop_table.cart > tbody > tr td.product-thumbnail {
              border-bottom: 1px dashed #e8e8e8; }
            table.shop_table.cart > tbody > tr td.actions, .table.shop_table.cart > tbody > tr td.actions {
              flex: 0 0 100%; }
            table.shop_table.cart > tbody > tr td.product-remove a.remove, .table.shop_table.cart > tbody > tr td.product-remove a.remove {
              top: calc(50% - 10px); }
          table.shop_table.cart > tbody > tr:last-child, .table.shop_table.cart > tbody > tr:last-child {
            border-bottom: 0; } }
  @media (max-width: 480px) {
      table.shop_table.cart > tbody > tr, .table.shop_table.cart > tbody > tr {
        padding-left: 100px;
        position: relative; }
        .rtl table.shop_table.cart > tbody > tr, .rtl .table.shop_table.cart > tbody > tr {
          padding-right: 100px;
          padding-left: 0; }
        table.shop_table.cart > tbody > tr td, .table.shop_table.cart > tbody > tr td {
          border: 0;
          padding: 5px 10px 5px 0;
          border-bottom: 1px dashed #e8e8e8;
          flex: 0 0 100%; }
          table.shop_table.cart > tbody > tr td.product-thumbnail, .table.shop_table.cart > tbody > tr td.product-thumbnail {
            flex: 0 0 100%; }
          table.shop_table.cart > tbody > tr td.product-thumbnail > a, .table.shop_table.cart > tbody > tr td.product-thumbnail > a {
            position: absolute;
            top: 5px;
            left: 5px; }
            table.shop_table.cart > tbody > tr td.product-thumbnail .product-name, .table.shop_table.cart > tbody > tr td.product-thumbnail .product-name {
              margin: 5px 0; }
          table.shop_table.cart > tbody > tr td.actions, .table.shop_table.cart > tbody > tr td.actions {
            flex: 0 0 100%;
            padding: 0; }
          table.shop_table.cart > tbody > tr td.product-remove, .table.shop_table.cart > tbody > tr td.product-remove {
            position: absolute;
            border: 0;
            left: 35px;
            bottom: 10px; }
            table.shop_table.cart > tbody > tr td.product-remove a.remove, .table.shop_table.cart > tbody > tr td.product-remove a.remove {
              position: unset; }
        table.shop_table.cart > tbody > tr:last-child, .table.shop_table.cart > tbody > tr:last-child {
          padding: 10px; } }
  table.shop_table .button, .table.shop_table .button {
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem; }
  table.cart .product-remove, .table.cart .product-remove {
    vertical-align: middle; }
  table.cart .actions, .table.cart .actions {
    padding: 15px;
    vertical-align: middle; }
  table.table--style .price, .table.table--style .price {
    display: table-cell;
    vertical-align: middle;
    font-size: 1rem; }
  table.table--style .label, .table.table--style .label {
    padding: 10px; }

.widget_calendar #wp-calendar {
  margin-bottom: 0; }
  .widget_calendar .wp-calendar-nav {
    border: 1px solid #e0e0e0;
    border-top: 0;
    display: flex; }
  .widget_calendar .wp-calendar-nav a {
    color: #D3AD47; }
  .widget_calendar .wp-calendar-nav span {
    display: inline-block;
    padding: 5px 10px; }
  .widget_calendar .wp-calendar-nav .pad {
    width: 20%; }
  .widget_calendar .wp-calendar-nav .wp-calendar-nav-prev {
    width: 40%;
    border-right: 1px solid #e0e0e0; }
  .widget_calendar .wp-calendar-nav .wp-calendar-nav-next {
    width: 40%;
    border-left: 1px solid #e0e0e0;
    text-align: right; }

#wp-calendar {
  width: 100%;
  margin-bottom: 1.33;
  border: 1px solid #e0e0e0; }
  #wp-calendar td, #wp-calendar th {
    padding: 5px;
    text-align: center; }
  #wp-calendar caption {
    margin-top: 7px;
    margin-bottom: 10px;
    caption-side: top; }
  #wp-calendar > thead > tr > th, #wp-calendar > thead > tr > td {
    border-bottom-width: 0px !important; }
  #wp-calendar #today {
    color: #D3AD47;
    font-weight: 500; }

ul.treemenu li {
  padding: 13px 0px 13px 13px;
  background: url("/wp-content/themes/vapier/images/dot.jpg") 0 22px no-repeat;
  text-transform: capitalize;
  border-bottom: 1px solid #e0e0e0; }
  ul.treemenu li:first-child {
    padding-top: 0;
    background-position: 0 10px; }
  ul.treemenu li:last-child {
    border-bottom: 0;
    padding-bottom: 0; }
  ul.treemenu li > ul {
    padding-left: 20px; }
  .rtl ul.treemenu li > ul {
    padding-right: 20px;
    padding-left: 0; }
  ul.treemenu li > ul li:first-child {
    padding-top: 13px 0px 13px 13px; }
  ul.hasicon li {
    float: none;
    margin: 0 0 10px 0; }
  ul.hasicon li .fa {
    margin-top: 5px;
    margin-right: 5px; }
  .rtl ul.hasicon li .fa {
    margin-left: 5px;
    margin-right: 0; }
  ul.hasicon li br {
    display: none; }
  ul.list-group-highlighted {
    margin-bottom: 0; }
  ul.list-group-highlighted li {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left; }
  .rtl ul.list-group-highlighted li {
    text-align: right; }
  ul.list-group-highlighted li a {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0px 5px;
    display: block; }
  ul.list-group-highlighted li .count {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    z-index: 100;
    margin: 0;
    top: 18px;
    right: 5px;
    position: absolute;
    background: transparent; }
  .rtl ul.list-group-highlighted li .count {
    left: 5px;
    right: auto; }
  ul.list-group-highlighted li ul li {
    padding-left: 0;
    padding-right: 0; }
  ul.list-group-highlighted li:last-child ul li:last-child a {
    border: 0; }
  ul.contact-us {
    text-align: center; }
  ul.contact-us li {
    color: #fff; }
  ul.contact-us li .fa {
    color: #D3AD47;
    font-size: 20px; }
  ul.list-contact li {
    text-transform: none;
    font-size: 11px; }

.align-right {
  text-align: right; }
  .rtl .align-right {
    text-align: left; }

.align-left {
  text-align: left; }
  .rtl .align-left {
    text-align: right; }

.icons {
  font-size: 18px; }

.fancybox-overlay.fancybox-overlay-fixed {
  z-index: 9999; }

.fancybox-opened {
  z-index: 99999; }
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.rtl .vapiertooltip {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%); }

.vapiertooltip {
  color: #fff;
  display: block;
  float: left;
  font-size: 11px;
  left: 25px;
  line-height: 22px;
  padding: 4px 8px;
  position: absolute;
  top: -40px;
  white-space: nowrap;
  width: auto;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #D3AD47;
  margin: 0 !important;
  text-transform: capitalize; }
  .rtl .vapiertooltip {
    right: 25px;
    left: auto; }
  .vapiertooltip .fa {
    font-size: 0; }

.vapiertooltip:after {
  background: none;
  border: 7px solid transparent;
  border-top-color: #D3AD47;
  top: 97%;
  content: "";
  display: block;
  height: 0;
  left: calc(50% - 7px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  transform: none;
  width: 0; }

body i.slick-arrow {
  opacity: 0;
  visibility: hidden;
  font-size: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #dadada;
  line-height: 33px;
  background: #fff;
  top: calc(50% - 50px);
  position: absolute;
  z-index: 1;
  color: #000;
  font-weight: 900;
  font-style: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: wpbingofont;
  text-align: center; }
  @media (min-width: 991px) {
  body i.slick-arrow {
    opacity: 0;
    visibility: hidden; } }
  body i.slick-arrow.fa-angle-right {
    right: -17.5px; }
  body i.slick-arrow.fa-angle-right:before {
    content: "\e91b"; }
  body i.slick-arrow.fa-angle-left {
    left: -17.5px; }
  body i.slick-arrow.fa-angle-left:before {
    content: "\e91a"; }
  body i.slick-arrow:hover {
    cursor: pointer;
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  @media (max-width: 1770px) {
  body i.slick-arrow.fa-angle-right {
    right: 0; }
    .rtl body i.slick-arrow.fa-angle-right {
      left: 0;
      right: auto; }
  body i.slick-arrow.fa-angle-left {
    left: 0; }
    .rtl body i.slick-arrow.fa-angle-left {
      right: 0;
      left: auto; } }
  @media (max-width: 767px) {
  body i.slick-arrow {
    font-size: 18px; } }

.slick-slider {
  overflow: hidden; }
  .slick-slider .slick-list {
    margin: 0 -15px; }
  .slick-slider .slick-list .slick-slide {
    padding: 0 15px; }
  .slick-slider .slick-list .slick-track:focus, .slick-slider .slick-list .slick-slide:focus, .slick-slider .slick-list .carousel-body:focus {
    outline: none; }

ul.slick-dots {
  bottom: 30px;
  list-style-type: none;
  position: unset; }
  ul.slick-dots li {
    display: inline-block;
    vertical-align: bottom;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  ul.slick-dots li:focus {
    outline: none; }
  ul.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    padding: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative; }
  ul.slick-dots li button:focus {
    outline: none; }
  ul.slick-dots li.slick-active {
    width: 10px;
    height: 10px; }
  ul.slick-dots li.slick-active button {
    background: #D3AD47;
    width: 10px;
    height: 10px; }

.open > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible; }

a {
  color: #000; }
  a:hover, a:focus {
    color: #D3AD47;
    text-decoration: unset;
    outline: unset; }

ol, ul, dl {
  margin: 0; }

.form-control:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset; }

.btn:not(:disabled):not(.disabled):active, .clear-all:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .clear-all:not(:disabled):not(.disabled).active {
  -webkit-box-shadow: unset;
  box-shadow: unset; }

code, kbd, pre, samp {
  font-family: monospace; }

code, kbd, samp, .wp-block-table.is-style-stripes tbody tr:nth-child(odd), :root .has-subtle-background-background-color {
  background-color: #dcd7ca; }

.btn:focus, .clear-all:focus, .btn.focus, .clear-all.focus, .focus.clear-all {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important; }

.dokan-form-control {
  height: 35px;
  line-height: 35px; }

body.not-scroll {
  overflow: hidden; }

body .fa {
  font-family: "FontAwesome";
  font-weight: inherit; }

body.search.search-results .blog-content-standar h3.entry-title {
  font-size: 25px; }
  body.search.search-results .blog-content-standar .post-content {
    margin-top: 20px; }
  @media (min-width: 767px) {
  body.search.search-results .list-post > article {
    display: inline-block;
    width: 100%; }
  body.search.search-results .blog-content-standar .single-thumb {
    max-width: 20%;
    float: left;
    margin-right: 30px; }
    .rtl body.search.search-results .blog-content-standar .single-thumb {
      float: right; }

    .rtl body.search.search-results .blog-content-standar .single-thumb {
      margin-left: 30px;
      margin-right: 0; }

    body.search.search-results .blog-content-standar .post-content {
      overflow: hidden;
      margin-top: 0; } }
/* 3. Fonts */
/* 4. Form */
.btn-default {
  border: 1px solid #a3a3a3; }

.btn-primary {
  border: 1px solid #000; }

.btn-default, .btn-primary {
  position: relative;
  z-index: 0; }
  .btn-default:hover, .btn-primary:hover {
    color: #fff !important;
    border-color: #D3AD47 !important; }
  .btn-default:hover:before, .btn-primary:hover:before {
    height: 100%;
    opacity: 1;
    visibility: visible; }
  .btn-default:before, .btn-primary:before {
    position: absolute;
    content: "";
    top: 0;
    background: #D3AD47;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: -1; }
  .rtl .btn-default:before, .rtl .btn-primary:before {
    right: 0;
    left: auto; }
/* 5. Layout */
/************************************************************************************************
 BLOCK MENU 
 *************************************************************************************************/
.bwp-menu-wrapper {
  border-top: 1px solid #e0e0e0;
  border-bottom: 4px double #e0e0e0; }
  .bwp-menu-wrapper .container {
    display: table; }
  .bwp-menu-wrapper #primary-navigation {
    display: table-cell;
    vertical-align: middle; }
  .bwp-menu-wrapper .block-cart {
    display: table-cell;
    vertical-align: middle;
    text-align: right; }
  .rtl .bwp-menu-wrapper .block-cart {
    text-align: left; }
  .bwp-menu-wrapper .block-cart .cart-popup {
    min-width: 320px;
    right: 0;
    left: inherit; }
  .rtl .bwp-menu-wrapper .block-cart .cart-popup {
    left: 0;
    right: auto; }
  .rtl .bwp-menu-wrapper .block-cart .cart-popup {
    right: inherit;
    left: auto; }
  .bwp-menu-wrapper .block-cart .cart-popup .cart_list {
    list-style: none; }
/************************************************************************************************
 BREADCRUMB
 *************************************************************************************************/
.breadcrumb-noheading .breadcrumb {
  font-size: 13px;
  line-height: 24px;
  color: #000;
  justify-content: flex-start;
  padding: 20px 0; }
  .breadcrumb-noheading .breadcrumb a {
    color: #868686;
    position: relative; }
  .breadcrumb-noheading .breadcrumb a:hover {
    color: #D3AD47; }
  .breadcrumb-noheading .breadcrumb .current {
    color: #000; }
  .breadcrumb-noheading .breadcrumb .delimiter {
    margin: 0 8px;
    color: #868686; }
  .breadcrumb-noheading .breadcrumb .delimiter:before {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 15px; }

.breadcrumb {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin: 0 0;
  color: #fff;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  background: transparent; }
  .breadcrumb a {
    color: #fff;
    position: relative; }
  .breadcrumb .current {
    color: #fff; }
  .breadcrumb .delimiter {
    margin: 0 8px;
    color: #fff; }
  .breadcrumb .delimiter:before {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 13px; }
/* Slideshow -------------------------------------------------------------------------------------- */
.bwp-slideshow .wpb-inner {
  margin-bottom: 0 !important; }
/* Container -------------------------------------------------------------------------------------- */
.bwp-main {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px; }
  .bwp-main .page-title {
    margin: 0 0 35px 0;
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-position: center;
    background-size: cover; }
  .bwp-main .page-title h1 {
    text-transform: capitalize;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    right: 15px;
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px); }
  .rtl .bwp-main .page-title h1 {
    left: 15px;
    right: auto; }
  @media (max-width: 1510px) and (min-width: 1200px) {
      .bwp-main .page-title h1 {
        right: 30px; }
        .rtl .bwp-main .page-title h1 {
          left: 30px;
          right: auto; } }
  @media (max-width: 767px) {
      .bwp-main .page-title h1 {
        font-size: 20px;
        position: unset;
        margin-bottom: 5px;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0); } }
  .bwp-main .page-title.empty-image {
    background: #D3AD47;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0; }
  .bwp-main .page-title > .container {
    position: relative; }
/* Content -------------------------------------------------------------------------------------- */
.bwp-content {
  background: transparent; }
  .bwp-content:before, .bwp-content:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .bwp-content:after {
    clear: both; }
/* Pagination -------------------------------------------------------------------------------------- */
.bwp-pagination {
  margin: 0; }
/************************************************************************************************
 BLOCK FOOTER 
 *************************************************************************************************/
#bwp-footer {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  color: #868686;
  border-bottom: none;
  font-size: 14px;
  z-index: 2;
  line-height: 24px;
  margin-top: 60px; }
  @media (max-width: 991px) {
  #bwp-footer {
    padding-bottom: 50px; } }
  #bwp-footer a:hover, #bwp-footer a:focus, #bwp-footer a:active {
    color: #D3AD47; }
  #bwp-footer p:not(:last-child) {
    margin-bottom: 10px; }
  #bwp-footer ul.social-link li {
    margin: 0 5px; }
  #bwp-footer ul.social-link li:before {
    display: none; }
  #bwp-footer ul.social-link li:first-child {
    margin-left: 0; }
  .rtl #bwp-footer ul.social-link li:first-child {
    margin-right: 0;
    margin-left: 0; }
  #bwp-footer ul.social-link li:last-child {
    margin-right: 0; }
  .rtl #bwp-footer ul.social-link li:last-child {
    margin-left: 0;
    margin-right: 0; }
  #bwp-footer ul.social-link li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #d3d3d3;
    line-height: 38px; }
  #bwp-footer ul.social-link li a i {
    color: #000;
    font-size: 14px; }
  #bwp-footer ul.social-link li a:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  #bwp-footer ul.social-link li a:hover i {
    color: #fff; }
  #bwp-footer ul.social-link li a:before {
    display: none; }
  #bwp-footer .wpbingo-newsletter.newsletter-default .content-newsletter {
    position: relative; }
  #bwp-footer .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix {
    position: absolute;
    right: 0; }
  .rtl #bwp-footer .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix {
    left: 0;
    right: auto; }
  #bwp-footer.footer-1 .wpbingo-newsletter.newsletter-default .content-newsletter .wpcf7-not-valid-tip {
    color: #fff; }
  #bwp-footer.footer-1 .wpcf7-response-output {
    color: #fff; }
  #bwp-footer.footer-3 .wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #f3f3f3;
    height: 42px;
    line-height: 42px; }
  #bwp-footer.footer-3 .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 0;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    background: transparent; }
  #bwp-footer.footer-3 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix {
    position: relative;
    top: 0;
    background: #000; }
  #bwp-footer.footer-3 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix:before {
    content: "\e904";
    font-family: icomoon;
    font-size: 20px;
    position: absolute;
    color: #fff;
    top: calc(50% - 12px);
    left: calc(50% - 10px); }
  #bwp-footer.footer-3 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix:hover {
    background: #fbaf3f; }
  #bwp-footer.footer-4 ul.social-link li a i {
    color: #fff; }
  #bwp-footer.footer-4 .wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #353535;
    height: 42px;
    line-height: 42px;
    color: #fff; }
  #bwp-footer.footer-4 .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"] {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 0;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    background: transparent; }
  #bwp-footer.footer-4 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix {
    position: relative;
    top: 0;
    background: #D3AD47; }
  #bwp-footer.footer-4 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix:before {
    content: "\e904";
    font-family: icomoon;
    font-size: 20px;
    position: absolute;
    color: #fff;
    top: calc(50% - 12px);
    left: calc(50% - 10px); }
  #bwp-footer.footer-4 .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix:hover {
    background: draken(#D3AD47, 10%); }
/*  */
/* Newletter Popup */
/*  */
.newsletterpopup .close-popup {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  z-index: 9999;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 6px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 1px solid rgba(134, 134, 134, 0.35); }
  .rtl .newsletterpopup .close-popup {
    left: 10px;
    right: auto; }
  .newsletterpopup .close-popup:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 15px;
    top: 50%;
    left: calc(50% - 7.5px);
    margin-top: -1px;
    background-color: rgba(134, 134, 134, 0.35);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .newsletterpopup .close-popup:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 15px;
    top: 50%;
    left: calc(50% - 7.5px);
    margin-top: -1px;
    background-color: rgba(134, 134, 134, 0.35);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .newsletterpopup .close-popup:hover:after, .newsletterpopup .close-popup:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }

body:not(.page-template-homepage) .popupshadow, body:not(.page-template-homepage) .newsletterpopup {
  display: none !important; }

.popupshadow {
  background-color: rgba(32, 32, 32, 0.6);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  display: none; }
  .rtl .popupshadow {
    right: 0;
    left: auto; }

.newsletterpopup {
  box-sizing: border-box;
  height: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
  position: fixed;
  top: 50%;
  width: 928px;
  z-index: 1000000;
  overflow: hidden;
  display: none; }
  .newsletterpopup .wp-newletter {
    display: flex; }
  .newsletterpopup .wp-newletter .image {
    width: 51.5%; }
  .newsletterpopup .wp-newletter .widget {
    width: 48.5%;
    margin: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter {
    font-size: 12px;
    display: block;
    text-align: center;
    padding: 0 30px;
    position: relative; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter .wpcf7-list-item first {
    position: relative; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter input {
    position: absolute;
    z-index: 10;
    opacity: 0;
    width: 100%;
    top: 4px;
    left: 0;
    cursor: pointer; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter input:checked ~ .wpcf7-list-item-label:before {
    background: #D3AD47; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter .wpcf7-list-item {
    margin: 0; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter .wpcf7-list-item-label {
    cursor: pointer; }
  .newsletterpopup .wp-newletter .hidden-popup-newsletter .wpcf7-list-item-label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #e8e8e8;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 1px; }
  .newsletterpopup .wpbingo-newsletter-popup {
    text-align: center;
    padding: 25px 25px 10px;
    margin: auto; }
  .newsletterpopup .wpbingo-newsletter-popup .title-newsletter {
    font-size: 40px;
    margin: auto;
    position: relative;
    margin-bottom: 5px;
    color: #000;
    line-height: 50px;
    font-weight: 600; }
  .newsletterpopup .wpbingo-newsletter-popup .title-newsletter span {
    display: block;
    color: #D3AD47; }
  .newsletterpopup .wpbingo-newsletter-popup .subtitle-newsletter {
    font-size: 20px;
    color: #000;
    font-weight: 600; }
  .newsletterpopup .wpbingo-newsletter-popup .text-newsletter {
    font-size: 14px;
    margin-bottom: 25px; }
  .newsletterpopup .content-newsletter {
    margin-bottom: 15px; }
  .newsletterpopup .content-newsletter .wpcf7-form-control-wrap input {
    width: 100%;
    padding: 0;
    line-height: 35px;
    border: 1px solid #dfdfdf;
    background: transparent;
    font-size: 12px;
    padding: 0 20px;
    height: 50px;
    margin-bottom: 20px;
    line-height: 50px; }
  .newsletterpopup .content-newsletter .wpcf7-form-control-wrap input::placeholder {
    font-size: 12px; }
  .newsletterpopup .content-newsletter .clearfix {
    position: relative; }
  .newsletterpopup .content-newsletter .clearfix .ajax-loader {
    position: absolute; }
  .newsletterpopup .content-newsletter .clearfix input {
    background: #D3AD47;
    border: 0;
    padding: 0 35px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-weight: 600;
    line-height: 40px; }
  .newsletterpopup .content-newsletter .clearfix input:hover {
    background: #000; }
  @media (max-width: 991px) {
  .newsletterpopup {
    width: 500px; }
    .newsletterpopup .image {
      display: none; }

    .newsletterpopup .wp-newletter .widget {
      width: 100%;
      padding: 30px 0; } }
  @media (max-width: 767px) {
  .newsletterpopup {
    width: calc(100% - 50px); }
    .newsletterpopup .wpbingo-newsletter-popup .title-newsletter {
      font-size: 30px;
      line-height: 35px; }
      .newsletterpopup .wpbingo-newsletter-popup .subtitle-newsletter {
        font-size: 16px; }
      .newsletterpopup .wpbingo-newsletter-popup .text-newsletter {
        margin-bottom: 15px; } }
/* Copyright -------------------------------------------------------------------------------------- */
.bwp-copyright {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  margin-top: 80px; }
  @media (max-width: 991px) {
  .bwp-copyright {
    padding-bottom: 50px; } }
  .bwp-copyright .widget .widget-title, .bwp-copyright .widget .widgettitle, .bwp-copyright .widget .wpb_heading {
    color: #fff;
    text-transform: normal;
    margin: 40px 0 17px;
    font-size: 16px; }
  .bwp-copyright .container {
    padding-bottom: 9px;
    position: relative;
    padding-top: 10px; }
  .bwp-copyright .container:before {
    position: absolute;
    top: 0;
    content: "";
    background: #dedede;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px; }
  .rtl .bwp-copyright .container:before {
    right: 15px;
    left: auto; }
  .bwp-copyright .container .payment {
    text-align: right; }
  .rtl .bwp-copyright .container .payment {
    text-align: left; }

.wpcf7 .ajax-loader {
  margin: 0; }

.verify-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999999999; }
  .verify-popup.active {
    display: flex; }
  .verify-popup.disabled {
    background: #000;
    display: flex; }
  .verify-popup.disabled .content-verify {
    background: transparent;
    max-width: 700px;
    padding: 0; }
  .verify-popup .close-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); }
  .verify-popup .content-verify {
    width: 100%;
    max-width: 450px;
    background: #fff;
    z-index: 2;
    position: relative;
    padding: 30px;
    max-height: 100%;
    overflow: auto; }
  .verify-popup .content-verify::-webkit-scrollbar-track {
    background-color: #ececec; }
  .verify-popup .content-verify::-webkit-scrollbar {
    width: 2px;
    background-color: #ececec; }
  .verify-popup .content-verify::-webkit-scrollbar-thumb {
    background-color: #000; }
  .verify-popup .alert-verify {
    color: #fff;
    padding: 50px 0;
    font-size: 30px; }
  .verify-popup .alert-verify svg {
    fill: #ffaf00;
    font-size: 35px;
    position: relative;
    top: 5px;
    margin-right: 10px; }
  .verify-popup .alert-verify svg path {
    fill: #ffaf00; }
  .rtl .verify-popup .alert-verify svg {
    margin-left: 10px;
    margin-right: 0; }
  .verify-popup .verify-info {
    text-align: center; }
  .verify-popup .title {
    display: inline-block;
    margin: 0;
    font-size: 25px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px; }
  .verify-popup .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    height: 1px;
    width: 100px;
    background: #000; }
  @media (max-width: 480px) {
    .verify-popup .title {
      font-size: 20px; } }
  .verify-popup .group-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px; }
  .verify-popup .group-button button {
    background: #000;
    border: 0;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    padding: 11px 20px;
    line-height: 18px;
    min-width: 130px;
    margin: 5px;
    cursor: pointer; }
  .verify-popup .group-button button:hover {
    background: #D3AD47; }
/* 6. Layout */
/* Page default --------------------------------- */
.default-template .article {
  background: #fff; }
/* Elements Boostrap Page ---------------------------------- */
.bs-component .modal, .bs-docs-section .modal {
  bottom: auto;
  display: block;
  left: auto;
  position: relative;
  right: auto;
  top: auto;
  z-index: 1; }
  .bs-component p:empty, .bs-docs-section p:empty {
    margin: 0;
    padding: 0;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .bs-component br, .bs-docs-section br {
    display: none; }
  .bs-component .modal-dialog, .bs-docs-section .modal-dialog {
    width: 90%; }
/* Contact Page ---------------------------------- */
.contact-top .contact-title {
  margin-bottom: 28px;
  margin-top: -8px;
  font-weight: 700;
  font-size: 35px;
  color: #000; }
  .contact-top .contact-text {
    max-width: 770px;
    margin: auto; }
  .contact-top .contact-meta {
    text-align: center; }
  @media (max-width: 767px) {
    .contact-top .contact-meta {
      margin-bottom: 30px; } }
  .contact-top .contact-meta .style-contact .contact-info-style .icon-style {
    width: 93px;
    height: 93px;
    line-height: 93px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(18, 18, 18, 0.1);
    box-shadow: 0px 0px 10px 3px rgba(18, 18, 18, 0.1);
    margin-bottom: 28px; }
  .contact-top .contact-meta .style-contact .contact-info-style .icon-style i {
    font-size: 40px;
    color: #D3AD47;
    line-height: 93px; }
  .contact-top .contact-meta .style-contact .contact-info-style .text-style {
    max-width: 200px;
    margin: auto; }
  .contact-top .contact-meta .style-contact .contact-info-style .text-style .title-contact-info {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 15px;
    color: #000; }
  .contact-text-form {
    max-width: 580px;
    margin: auto; }

div.wpcf7-validation-errors {
  margin: 0;
  padding: 10px; }

.contact-form-content {
  padding: 20px;
  background: #fff;
  margin-bottom: 30px;
  min-height: 260px; }
  .contact-form-content .rounded {
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0); }
  .contact-form-content .rounded .fa, .contact-form-content .rounded .icon {
    font-size: 16px;
    margin: 13px; }
  .contact-form-content small {
    color: #535353; }

#bwp-main .wpb_gmaps_widget .wpb_wrapper {
  background: none;
  padding: 0; }
  #bwp-main #wpcf7-f8-p321-o1 p .wpcf7-form-control-wrap {
    display: block; }

.text-block-page {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin: 0 0 22px 0; }
  .rtl .text-block-page {
    margin: 0 0 22px 0; }

h3.text-block-page {
  font-size: 18px; }

.contact-info ul {
  list-style-type: none;
  padding-left: 0px; }
  .rtl .contact-info ul {
    padding-right: 0px;
    padding-left: 0; }
  .contact-info ul li {
    margin-bottom: 25px;
    font-weight: 400;
    position: relative; }
  .contact-info ul li strong {
    display: block;
    font-weight: 700;
    color: #000;
    padding-bottom: 13px;
    font-size: 18px;
    text-transform: uppercase; }
  @media (max-width: 767px) {
  .contact-info {
    padding-left: 0;
    margin-bottom: 50px !important; }
    .rtl .contact-info {
      padding-right: 0;
      padding-left: 0; } }

.wpb_gmaps_widget iframe {
  height: 540px; }

.contact-form h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 314px; }

.contact-info-form h2.vc_custom_heading {
  margin-bottom: 35px;
  margin-top: 2px;
  font-weight: 700; }
  .contact-info-form .title-input {
    font-size: 14px; }
  .contact-info-form .form-required .title-input {
    position: relative; }
  .contact-info-form .form-required .title-input:before {
    content: "*";
    position: absolute;
    color: red;
    right: -10px;
    top: 0; }
  .contact-info-form p {
    margin-bottom: 0; }
  .contact-info-form .ajax-loader {
    position: absolute; }

.contact .wpcf7-form div.wpcf7-validation-errors, .contact .wpcf7-form div.wpcf7-acceptance-missing {
  margin-top: 15px !important; }

.form-required .wpcf7-not-valid-tip {
  position: absolute;
  top: -45px;
  left: 0px; }

.social-contact .social-link li {
  margin: 0;
  margin-right: 10px; }
  .rtl .social-contact .social-link li {
    margin-left: 10px;
    margin-right: 0; }
  .social-contact .social-link li:last-child {
    margin-right: 0; }
  .rtl .social-contact .social-link li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .social-contact .social-link li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #000;
    display: inline-block;
    line-height: 45px;
    text-align: center; }
  .social-contact .social-link li a i {
    font-size: 18px;
    color: #000; }
  .social-contact .social-link li a:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .social-contact .social-link li a:hover i {
    color: #fff; }

.contact-us-form > .row {
  margin: 0 -7.5px; }
  .contact-us-form > .row > div {
    padding: 0 7.5px; }
  .contact-us-form label {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 600; }
  .contact-us-form .form-required .wpcf7-form-control-wrap {
    position: relative; }
  .contact-us-form .form-required .wpcf7-form-control-wrap:after {
    position: absolute;
    content: "*";
    color: #D3AD47;
    right: 15px;
    top: -3px;
    font-size: 20px; }
  .rtl .contact-us-form .form-required .wpcf7-form-control-wrap:after {
    left: 15px;
    right: auto; }
  .contact-us-form input[type="text"], .contact-us-form input[type="email"] {
    height: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px 20px;
    border: 0;
    font-weight: 400;
    color: #000;
    background: #f5f5f5; }
  .contact-us-form input[type="text"]:hover, .contact-us-form input[type="email"]:hover {
    background: #dcdcdc; }
  .contact-us-form textarea {
    width: 100%;
    max-height: 370px;
    padding: 10px 20px;
    border: 0;
    font-weight: 400;
    margin-bottom: 23px;
    background: #f5f5f5; }
  .contact-us-form textarea:hover {
    background: #dcdcdc; }
  .contact-us-form .ajax-loader {
    position: absolute;
    right: 20px;
    top: 30px; }
  .contact-us-form .button {
    position: relative;
    display: inline-block; }
  .contact-us-form input[type="submit"] {
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    padding: 0 75px;
    color: #fff;
    background: #000;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500; }
  .contact-us-form input[type="submit"]:hover {
    background: #D3AD47; }
  .contact-us-form .wpcf7-text::placeholder, .contact-us-form .wpcf7-textarea::placeholder {
    font-size: 14px;
    font-weight: 300; }

.text-block-contact a {
  background: #ffc000; }
/* Page About Us ---------------------------------- */
/* Page Not Found ---------------------------------- */
.woocommerce-page .header-title {
  display: none; }

.blog-page-list .entry-title {
  font-size: 4rem;
  line-height: 1.2;
  padding-top: 10px;
  margin-bottom: 0 !important; }
  .blog-page-list .entry-meta {
    margin-top: 5px !important; }

.bwp-portfolio .portfolio-tab {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 0px; }
  .bwp-portfolio .portfolio-tab ul {
    padding-left: 0; }
  .rtl .bwp-portfolio .portfolio-tab ul {
    padding-right: 0;
    padding-left: 0; }
  .bwp-portfolio .portfolio-tab ul li {
    font-size: 14px;
    font-weight: 700;
    margin-right: 30px;
    line-height: 40px;
    text-transform: uppercase;
    position: relative;
    color: #000;
    padding: 0 35px;
    background: #f4f4f4;
    display: inline-block;
    cursor: pointer; }
  .rtl .bwp-portfolio .portfolio-tab ul li {
    margin-left: 30px;
    margin-right: 0; }
  .bwp-portfolio .portfolio-tab ul li:last-child {
    margin-right: 0; }
  .rtl .bwp-portfolio .portfolio-tab ul li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-portfolio .portfolio-tab ul li:hover, .bwp-portfolio .portfolio-tab ul li.selected {
    background: #D3AD47;
    color: #fff; }
  .bwp-portfolio .portfolio-container {
    margin-bottom: -30px; }
  .bwp-portfolio .portfolio-container ul {
    padding-left: 0;
    width: 100%; }
  .rtl .bwp-portfolio .portfolio-container ul {
    padding-right: 0;
    padding-left: 0; }
  .bwp-portfolio .portfolio-container ul li {
    list-style: none;
    margin-bottom: 30px; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner {
    position: relative;
    overflow: hidden; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  .rtl .bwp-portfolio .portfolio-container .portfolio-item-inner:before {
    right: 0;
    left: auto; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .portfolio-img img {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner:hover .pitem-text a {
    opacity: 1;
    visibility: visible;
    top: -17.5px; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner:hover .portfolio-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: inline-block;
    text-align: center;
    z-index: 9;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .rtl .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text {
    right: 50%;
    left: auto; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text a {
    position: absolute;
    top: -30px;
    opacity: 0;
    visibility: hidden;
    color: #868686;
    background: #fff;
    line-height: 35px;
    z-index: 9;
    text-align: center;
    width: 35px;
    height: 35px;
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text a:hover {
    color: #fff;
    background: #D3AD47; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text a span {
    line-height: 35px; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text .item-more {
    right: calc(50% - 40px); }
  .rtl .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text .item-more {
    left: calc(50% - 40px);
    right: auto; }
  .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text .item-popup {
    left: calc(50% - 40px); }
  .rtl .bwp-portfolio .portfolio-container .portfolio-item-inner .pitem-text .item-popup {
    right: calc(50% - 40px);
    left: auto; }
  .bwp-portfolio .bwp-portfolio.masonry .portfolio-content li {
    padding: 0;
    margin-bottom: 0; }

.error404 .bwp-main {
  text-align: center; }
  .error404 .bwp-main .page-title {
    display: none; }
  .error404 .page-404 {
    position: relative; }
  .error404 .page-404 .title-error {
    font-size: 300px;
    line-height: 1;
    color: #000; }
  .error404 .page-404 .sub-title {
    font-size: 50px;
    color: #000;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px; }
  .error404 .page-404 .sub-title:before {
    position: absolute;
    content: "";
    width: 140px;
    height: 2px;
    bottom: 0;
    left: calc(50% - 70px);
    background: #d7d7d7; }
  .error404 .page-404 .sub-error {
    max-width: 325px;
    margin: auto; }
  .error404 .page-404 .content-page-404 {
    padding: 100px 0 60px; }
  .error404 .page-404 .content-page-404 a {
    margin-top: 30px;
    padding: 0 40px;
    height: 50px;
    line-height: 46px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    font-size: 14px;
    background: #000;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    position: relative;
    z-index: 1;
    border: 2px solid #000; }
  .error404 .page-404 .content-page-404 a:after {
    display: inline-block;
    content: "\24";
    font-family: eleganticons;
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: 5px; }
  @media (max-width: 767px) {
          .error404 .page-404 .content-page-404 a:after {
            font-size: 15px; } }
  .error404 .page-404 .content-page-404 a:hover {
    background: #fff;
    color: #000; }
  @media (max-width: 991px) {
    .error404 .page-404 .content-page-404 {
      position: unset; } }
  @media (max-width: 767px) {
    .error404 .page-404 .content-page-404 {
      position: unset; }
      .error404 .page-404 .content-page-404 a {
        margin-top: 20px; }

    .error404 .page-404 .title-error {
      font-size: 200px;
      margin-bottom: -10px; }

    .error404 .page-404 .sub-title {
      font-size: 20px; }

    .error404 .page-404 .sub-error {
      font-size: 15px; } }
/* Page My Account ---------------------------------- */
.woocommerce-MyAccount-navigation {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  margin-bottom: 60px;
  padding: 20px 30px;
  width: 30%;
  float: left; }
  .rtl .woocommerce-MyAccount-navigation {
    float: right; }
  .woocommerce-MyAccount-navigation ul {
    padding: 0;
    list-style: none; }
  .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(228, 228, 228, 0.5);
    list-style-type: none;
    padding: 10px 0;
    vertical-align: middle; }
  .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none; }
  .woocommerce-MyAccount-navigation ul li a, .woocommerce-MyAccount-navigation ul li span {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    font-weight: 600; }
  .woocommerce-MyAccount-navigation ul li a.active, .woocommerce-MyAccount-navigation ul li span.active, .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce-MyAccount-navigation ul li span:hover {
    color: #D3AD47;
    cursor: pointer; }

.woocommerce-MyAccount-content {
  width: 68%;
  float: right; }
  .rtl .woocommerce-MyAccount-content {
    float: left; }
  .woocommerce-MyAccount-content h2 {
    font-size: 16px; }
  .woocommerce-MyAccount-content h3 {
    font-size: 12px; }
  .woocommerce-MyAccount-content input[type="submit"] {
    background: #D3AD47;
    color: #fff;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 10px; }
  .woocommerce-MyAccount-content input[type="submit"]:hover {
    background: #049b4f; }

.lost_reset_password .form-row {
  margin: 0; }
  .lost_reset_password .form-row input[type="submit"] {
    position: absolute;
    bottom: 0;
    height: 35px; }

.woocommerce-lost-password .lost_reset_password .form-row.form-row-first {
  float: none; }
  @media (max-width: 767px) {
    .woocommerce-lost-password .lost_reset_password .form-row.form-row-first {
      width: 100%; } }
  .woocommerce-lost-password .lost_reset_password button[type="submit"] {
    margin-top: 10px; }

.woocommerce-cart-form {
  margin-bottom: 30px;
  border-right: 1px solid #e8e8e8; }
  .rtl .woocommerce-cart-form {
    border-left: 1px solid #e8e8e8;
    border-right: 0; }
  .woocommerce-cart-form table.shop_table {
    margin: 0; }
  .woocommerce-cart-form table.shop_table .button {
    padding: 0 35px;
    background: #000;
    text-transform: uppercase;
    color: #fff;
    font-size: 11px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    line-height: 52px;
    cursor: pointer;
    font-weight: 600; }
  .woocommerce-cart-form table.shop_table .button:disabled {
    opacity: 0.8;
    background: #000;
    color: #fff;
    cursor: not-allowed; }
  .woocommerce-cart-form table.shop_table .button:disabled:hover {
    opacity: 0.8;
    background: #000;
    color: #fff; }
  .woocommerce-cart-form table.shop_table .button:hover {
    background: #025029; }
  .woocommerce-cart-form table.shop_table .coupon .button {
    padding: 0 35px;
    background: #000;
    text-transform: uppercase;
    color: #fff;
    font-size: 11px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    line-height: 52px;
    cursor: pointer;
    font-weight: 600; }
  .woocommerce-cart-form table.shop_table .coupon .button:hover {
    background: #025029; }

.cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px; }
  .cart_totals .woocommerce-shipping-destination > strong {
    color: #000;
    font-weight: 700; }
  .cart_totals table.shop_table > tbody {
    border: 1px solid rgba(228, 228, 228, 0.25);
    border-top: 0; }
  .cart_totals table.shop_table > tbody > tr td, .cart_totals table.shop_table > tbody > tr th {
    padding: 15px;
    border: 0;
    border-bottom: 1px solid rgba(228, 228, 228, 0.5); }
  .cart_totals table.shop_table > tbody > tr.order-total .woocommerce-Price-amount {
    font-size: 24px; }
  .cart_totals table.shop_table > tbody > tr.shipping ul.woocommerce-shipping-methods {
    margin-bottom: 10px; }
  @media (max-width: 767px) {
              .cart_totals table.shop_table > tbody > tr.shipping ul.woocommerce-shipping-methods {
                display: block; } }
  .cart_totals table.shop_table > tbody > tr.shipping ul li {
    margin-right: 20px; }
  .rtl .cart_totals table.shop_table > tbody > tr.shipping ul li {
    margin-left: 20px;
    margin-right: 0; }
  .cart_totals table.shop_table > tbody > tr.shipping ul li input[type="radio"], .cart_totals table.shop_table > tbody > tr.shipping ul li input[type="checkbox"] {
    margin-top: 0; }
  .cart_totals table.shop_table > tbody > tr.shipping ul li .shipping_method {
    display: none; }
  .cart_totals table.shop_table > tbody > tr.shipping ul li label {
    margin: 0;
    margin-left: 0;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 18px;
    cursor: pointer; }
    .rtl .cart_totals table.shop_table > tbody > tr.shipping ul li label {
      margin-right: 0;
      margin-left: 0; }
    .rtl .cart_totals table.shop_table > tbody > tr.shipping ul li label {
      padding-right: 18px;
      padding-left: 0; }
    .cart_totals table.shop_table > tbody > tr.shipping ul li label:before {
      position: absolute;
      left: 0;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      top: calc(50% - 6px);
      width: 12px;
      height: 12px;
      border: 1px solid #868686;
      content: ""; }
      .rtl .cart_totals table.shop_table > tbody > tr.shipping ul li label:before {
        right: 0;
        left: auto; }
  .cart_totals table.shop_table > tbody > tr.shipping ul li .shipping_method:checked + label:before {
    background: #D3AD47;
    border-color: #D3AD47; }
  .cart_totals table.shop_table > tbody > tr > td a.shipping-calculator-button {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    font-size: 13px; }
  .cart_totals table.shop_table > tbody > tr > td a.shipping-calculator-button:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .cart_totals table.shop_table > tbody > tr > td a.shipping-calculator-button:hover {
    color: #D3AD47; }
  .cart_totals table.shop_table > tbody > tr > td a.shipping-calculator-button:hover:before {
    background: #D3AD47;
    width: 60%; }
  .cart_totals table.shop_table > tbody > tr > td .shipping-calculator-form {
    margin-top: 30px; }
  .cart_totals table.shop_table > tbody > tr > td .shipping-calculator-form .select2 {
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .cart_totals table.shop_table > tbody > tr > td .shipping-calculator-form .select2 span {
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .cart_totals table.shop_table > tbody > tr > td .shipping-calculator-form .button {
    background: #D3AD47;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    cursor: pointer;
    padding: 0 20px;
    line-height: 40px; }
  .cart_totals table.shop_table > tbody > tr > td .shipping-calculator-form .button:hover {
    background: #025029; }
  .cart_totals table.shop_table > tbody > tr > td .woocommerce-shipping-destination strong {
    font-weight: 500; }
  .cart_totals table.shop_table > tbody > tr > td .woocommerce-Price-amount {
    font-weight: 500; }
  .cart_totals .wc-proceed-to-checkout {
    padding: 0 30px; }
  .cart_totals .wc-proceed-to-checkout > a.wc-forward {
    background: #000;
    color: #fff;
    padding: 24px 20px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 600; }
  .cart_totals .wc-proceed-to-checkout > a.wc-forward:hover {
    background: #025029; }
  .cart_totals .wc-proceed-to-checkout > a.wc-forward:before {
    display: none; }
/* 7. Post */
.sticky {
  background: #f5f5f5;
  padding: 30px 30px 25px; }
  .sticky .entry-meta > span:nth-child(2) {
    padding-left: 0 !important; }
  .sticky .entry-meta > span:nth-child(2):before {
    display: none; }
  .sticky .entry-title a {
    font-size: 35px !important; }
  .sticky .sticky-post {
    background-color: #D3AD47;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 10px !important;
    text-transform: uppercase;
    line-height: 19px;
    top: 40px;
    letter-spacing: 2px; }
  .sticky .post-content {
    padding: 0 !important;
    margin-top: 0 !important; }
/************************************************************************************************
 POST ARCHIVES
 *************************************************************************************************/
@media (min-width: 992px) {
      .category-posts .cate-post-content self.left:not(.col-xl-12, .col-lg-12), .author self.left:not(.col-xl-12, .col-lg-12), .search self.left:not(.col-xl-12, .col-lg-12) {
        padding-left: 35px; }
        .rtl .category-posts .cate-post-content self.left:not(.col-xl-12, .col-lg-12), .rtl .author self.left:not(.col-xl-12, .col-lg-12), .rtl .search self.left:not(.col-xl-12, .col-lg-12) {
          padding-right: 35px;
          padding-left: 0; } }
  @media (min-width: 992px) {
    .category-posts .cate-post-content self.right:not(.col-xl-12, .col-lg-12), .author self.right:not(.col-xl-12, .col-lg-12), .search self.right:not(.col-xl-12, .col-lg-12) {
      padding-right: 35px; }
      .rtl .category-posts .cate-post-content self.right:not(.col-xl-12, .col-lg-12), .rtl .author self.right:not(.col-xl-12, .col-lg-12), .rtl .search self.right:not(.col-xl-12, .col-lg-12) {
        padding-left: 35px;
        padding-right: 0; } }
  .category-posts .cate-post-content.col-lg-12.col-md-12, .author.col-lg-12.col-md-12, .search.col-lg-12.col-md-12 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; }
  .category-posts .cate-post-content .entry-thumb .gallery-slider, .author .entry-thumb .gallery-slider, .search .entry-thumb .gallery-slider {
    vertical-align: top;
    overflow: hidden; }
  .category-posts .cate-post-content .navigation, .author .navigation, .search .navigation {
    text-align: left;
    margin-top: 30px; }
  .rtl .category-posts .cate-post-content .navigation, .rtl .author .navigation, .rtl .search .navigation {
    text-align: right; }
  .category-posts .cate-post-content .blog-content-grid, .author .blog-content-grid, .search .blog-content-grid {
    margin: 0 -15px; }
  .category-posts .cate-post-content .blog-content-grid .entry-post, .author .blog-content-grid .entry-post, .search .blog-content-grid .entry-post {
    position: relative;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden; }
  .category-posts .cate-post-content .blog-content-grid .entry-post:before, .author .blog-content-grid .entry-post:before, .search .blog-content-grid .entry-post:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 50%;
    left: 0;
    width: 100%;
    z-index: 1;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
  .category-posts .cate-post-content .blog-content-grid .entry-post .entry-thumb, .author .blog-content-grid .entry-post .entry-thumb, .search .blog-content-grid .entry-post .entry-thumb {
    width: 100%;
    position: relative; }
  .category-posts .cate-post-content .blog-content-grid .entry-post .post-content, .author .blog-content-grid .entry-post .post-content, .search .blog-content-grid .entry-post .post-content {
    z-index: 9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 15px;
    left: 0; }
  .category-posts .cate-post-content .blog-content-grid h3.entry-title, .author .blog-content-grid h3.entry-title, .search .blog-content-grid h3.entry-title {
    font-size: 20px;
    line-height: 1.1;
    width: 100%;
    margin: 8px 0; }
  .category-posts .cate-post-content .blog-content-grid h3.entry-title a, .author .blog-content-grid h3.entry-title a, .search .blog-content-grid h3.entry-title a {
    color: #fff; }
  .category-posts .cate-post-content .blog-content-grid h3.entry-title a:hover, .author .blog-content-grid h3.entry-title a:hover, .search .blog-content-grid h3.entry-title a:hover {
    color: #D3AD47; }
  .category-posts .cate-post-content .blog-content-grid .post-date, .author .blog-content-grid .post-date, .search .blog-content-grid .post-date {
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 0 7px;
    position: relative;
    margin-bottom: 20px;
    position: absolute;
    background: #fff;
    top: 20px;
    left: 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
  .rtl .category-posts .cate-post-content .blog-content-grid .post-date, .rtl .author .blog-content-grid .post-date, .rtl .search .blog-content-grid .post-date {
    right: 20px;
    left: auto; }
  .category-posts .cate-post-content .blog-content-grid .post-date:before, .author .blog-content-grid .post-date:before, .search .blog-content-grid .post-date:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 56px;
    background: #000;
    top: 50%;
    left: calc(50% - 28px);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: 50% 100%; }
  .category-posts .cate-post-content .blog-content-grid .post-date .day, .author .blog-content-grid .post-date .day, .search .blog-content-grid .post-date .day {
    display: block;
    line-height: 29px;
    font-size: 22px;
    font-weight: 600;
    padding-top: 3px; }
  .category-posts .cate-post-content .blog-content-grid .post-date .month, .author .blog-content-grid .post-date .month, .search .blog-content-grid .post-date .month {
    display: block;
    line-height: 29px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: right; }
  .rtl .category-posts .cate-post-content .blog-content-grid .post-date .month, .rtl .author .blog-content-grid .post-date .month, .rtl .search .blog-content-grid .post-date .month {
    text-align: left; }
  .category-posts .cate-post-content .blog-content-grid .post-categories a, .author .blog-content-grid .post-categories a, .search .blog-content-grid .post-categories a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff; }
  .category-posts .cate-post-content .blog-content-grid .post-categories a:hover, .author .blog-content-grid .post-categories a:hover, .search .blog-content-grid .post-categories a:hover {
    color: #025029; }
  .category-posts .cate-post-content .blog-content-grid .entry-meta-head, .author .blog-content-grid .entry-meta-head, .search .blog-content-grid .entry-meta-head {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    font-size: 13px; }
  .category-posts .cate-post-content .blog-content-grid .entry-meta-head i, .author .blog-content-grid .entry-meta-head i, .search .blog-content-grid .entry-meta-head i {
    font-size: 16px;
    color: #fff;
    position: relative;
    top: 1px;
    margin-right: 10px; }
  .rtl .category-posts .cate-post-content .blog-content-grid .entry-meta-head i, .rtl .author .blog-content-grid .entry-meta-head i, .rtl .search .blog-content-grid .entry-meta-head i {
    margin-left: 10px;
    margin-right: 0; }
  .category-posts .cate-post-content .blog-content-grid .entry-meta-head .entry-author, .author .blog-content-grid .entry-meta-head .entry-author, .search .blog-content-grid .entry-meta-head .entry-author {
    color: #fff;
    display: flex;
    align-items: center; }
  .category-posts .cate-post-content .blog-content-grid .entry-meta-head .entry-author:after, .author .blog-content-grid .entry-meta-head .entry-author:after, .search .blog-content-grid .entry-meta-head .entry-author:after {
    content: "";
    margin: 0 10px;
    height: 1px;
    width: 10px;
    display: inline-block;
    background: #d5d5d5; }
  .category-posts .cate-post-content .blog-content-grid .entry-meta-head .entry-author a, .author .blog-content-grid .entry-meta-head .entry-author a, .search .blog-content-grid .entry-meta-head .entry-author a {
    color: #fff; }
  @media (max-width: 767px) {
    .category-posts .cate-post-content .blog-content-list .type-post, .author .blog-content-list .type-post, .search .blog-content-list .type-post {
      margin-bottom: 50px; } }
  .category-posts .cate-post-content .blog-content-list .post-date, .author .blog-content-list .post-date, .search .blog-content-list .post-date {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    padding: 0 7px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
  .category-posts .cate-post-content .blog-content-list .post-date:before, .author .blog-content-list .post-date:before, .search .blog-content-list .post-date:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 56px;
    background: #000;
    top: 50%;
    left: calc(50% - 28px);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: 50% 100%; }
  .category-posts .cate-post-content .blog-content-list .post-date .day, .author .blog-content-list .post-date .day, .search .blog-content-list .post-date .day {
    display: block;
    line-height: 30px;
    font-size: 21px;
    font-weight: 600;
    padding-top: 1px; }
  .category-posts .cate-post-content .blog-content-list .post-date .month, .author .blog-content-list .post-date .month, .search .blog-content-list .post-date .month {
    display: block;
    line-height: 29px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: right; }
  .rtl .category-posts .cate-post-content .blog-content-list .post-date .month, .rtl .author .blog-content-list .post-date .month, .rtl .search .blog-content-list .post-date .month {
    text-align: left; }
  .category-posts .cate-post-content .blog-content-list .entry-meta-head, .author .blog-content-list .entry-meta-head, .search .blog-content-list .entry-meta-head {
    display: flex;
    margin-bottom: 15px; }
  .category-posts .cate-post-content .blog-content-list .entry-meta-head .entry-author:after, .author .blog-content-list .entry-meta-head .entry-author:after, .search .blog-content-list .entry-meta-head .entry-author:after {
    content: "|";
    margin: 0 15px;
    display: inline-block;
    color: #d5d5d5; }
  .category-posts .cate-post-content .blog-content-list .entry-meta-head .entry-author a, .author .blog-content-list .entry-meta-head .entry-author a, .search .blog-content-list .entry-meta-head .entry-author a {
    color: #868686; }
  .category-posts .cate-post-content .blog-content-list .read-more, .author .blog-content-list .read-more, .search .blog-content-list .read-more {
    display: inline-block;
    color: #fff;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 40px;
    background: #000;
    padding: 0 30px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
  .category-posts .cate-post-content .blog-content-list .read-more:hover, .author .blog-content-list .read-more:hover, .search .blog-content-list .read-more:hover {
    background: #D3AD47; }
  .category-posts .cate-post-content .blog-content-list .entry-thumb, .author .blog-content-list .entry-thumb, .search .blog-content-list .entry-thumb {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-left: 30px;
    width: 50%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
  .rtl .category-posts .cate-post-content .blog-content-list .entry-thumb, .rtl .author .blog-content-list .entry-thumb, .rtl .search .blog-content-list .entry-thumb {
    margin-right: 30px;
    margin-left: 0; }
  @media (max-width: 767px) {
      .category-posts .cate-post-content .blog-content-list .entry-thumb, .author .blog-content-list .entry-thumb, .search .blog-content-list .entry-thumb {
        width: 100%;
        margin: 0 0 15px; } }
  .category-posts .cate-post-content .blog-content-list .post-content, .author .blog-content-list .post-content, .search .blog-content-list .post-content {
    flex: 1; }
  @media (max-width: 767px) {
      .category-posts .cate-post-content .blog-content-list .post-content, .author .blog-content-list .post-content, .search .blog-content-list .post-content {
        margin-top: 20px; } }
  .category-posts .cate-post-content .blog-content-list .list-post > article, .author .blog-content-list .list-post > article, .search .blog-content-list .list-post > article {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
    align-items: center;
    padding-bottom: 45px;
    border-bottom: 1px solid #e2e2e2; }
  .category-posts .cate-post-content .blog-content-list .list-post > article .post-content h3.entry-title, .author .blog-content-list .list-post > article .post-content h3.entry-title, .search .blog-content-list .list-post > article .post-content h3.entry-title {
    font-size: 35px;
    margin: 0 0 5px;
    word-break: break-word; }
  @media (max-width: 991px) {
            .category-posts .cate-post-content .blog-content-list .list-post > article .post-content h3.entry-title, .author .blog-content-list .list-post > article .post-content h3.entry-title, .search .blog-content-list .list-post > article .post-content h3.entry-title {
              font-size: 25px; } }
  @media (max-width: 767px) {
          .category-posts .cate-post-content .blog-content-list .list-post > article .post-content, .author .blog-content-list .list-post > article .post-content, .search .blog-content-list .list-post > article .post-content {
            order: 2; } }
  .category-posts .cate-post-content .blog-content-list .list-post:last-child > article, .author .blog-content-list .list-post:last-child > article, .search .blog-content-list .list-post:last-child > article {
    margin-bottom: 0; }
  .category-posts .cate-post-content .blog-content-list .post-excerpt, .author .blog-content-list .post-excerpt, .search .blog-content-list .post-excerpt {
    margin-bottom: 15px !important; }
  .category-posts .cate-post-content .blog-content-list .list-post:last-child .type-post, .author .blog-content-list .list-post:last-child .type-post, .search .blog-content-list .list-post:last-child .type-post {
    margin-bottom: 70px; }
  .category-posts .cate-post-content .blog-content-list .cat-links, .author .blog-content-list .cat-links, .search .blog-content-list .cat-links {
    margin-bottom: 5px; }
  .category-posts .cate-post-content .blog-content-list .cat-links ul, .author .blog-content-list .cat-links ul, .search .blog-content-list .cat-links ul {
    padding: 0;
    list-style: none; }
  .category-posts .cate-post-content .blog-content-list .cat-links ul li, .author .blog-content-list .cat-links ul li, .search .blog-content-list .cat-links ul li {
    display: inline-block; }
  .category-posts .cate-post-content .blog-content-list .cat-links ul li:first-child a:before, .author .blog-content-list .cat-links ul li:first-child a:before, .search .blog-content-list .cat-links ul li:first-child a:before {
    display: none; }
  .category-posts .cate-post-content .blog-content-list .cat-links a, .author .blog-content-list .cat-links a, .search .blog-content-list .cat-links a {
    font-size: 11px;
    text-transform: uppercase;
    color: #868686;
    font-weight: 600; }
  .category-posts .cate-post-content .blog-content-list .cat-links a:hover, .author .blog-content-list .cat-links a:hover, .search .blog-content-list .cat-links a:hover {
    color: #025029; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 50px;
    top: 10px;
    left: auto;
    font-family: FontAwesome;
    color: #000;
    opacity: 1;
    visibility: visible;
    font-size: 15px; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:after, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:after, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:after {
    background: #fff; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:hover, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:hover, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow:hover {
    background: #D3AD47;
    color: #fff; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before {
    content: "\f177"; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right {
    right: 15px; }
  .category-posts .cate-post-content .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before, .author .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before, .search .blog-content-list .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before {
    content: "\f178"; }
  .category-posts .cate-post-content .blog-content-modern .entry-meta-head, .author .blog-content-modern .entry-meta-head, .search .blog-content-modern .entry-meta-head {
    display: flex;
    margin-bottom: 30px; }
  .category-posts .cate-post-content .blog-content-modern .entry-meta-head .entry-author:after, .author .blog-content-modern .entry-meta-head .entry-author:after, .search .blog-content-modern .entry-meta-head .entry-author:after {
    content: "|";
    margin: 0 15px;
    display: inline-block;
    color: #d5d5d5; }
  .category-posts .cate-post-content .blog-content-modern .entry-meta-head .entry-author a, .author .blog-content-modern .entry-meta-head .entry-author a, .search .blog-content-modern .entry-meta-head .entry-author a {
    color: #868686; }
  .category-posts .cate-post-content .blog-content-modern .content-moderns, .author .blog-content-modern .content-moderns, .search .blog-content-modern .content-moderns {
    margin: 0 -15px;
    display: flex;
    width: calc(100% + 30px);
    flex-wrap: wrap; }
  .category-posts .cate-post-content .blog-content-modern .content-moderns .list-post, .author .blog-content-modern .content-moderns .list-post, .search .blog-content-modern .content-moderns .list-post {
    padding: 0 15px;
    width: 50%; }
  .category-posts .cate-post-content .blog-content-modern .content-moderns .entry-title, .author .blog-content-modern .content-moderns .entry-title, .search .blog-content-modern .content-moderns .entry-title {
    font-size: 25px; }
  .category-posts .cate-post-content .blog-content-modern .post-content, .author .blog-content-modern .post-content, .search .blog-content-modern .post-content {
    margin-top: 15px; }
  .category-posts .cate-post-content .blog-content-modern h3.entry-title, .author .blog-content-modern h3.entry-title, .search .blog-content-modern h3.entry-title {
    font-size: 35px;
    margin: 0 0 5px;
    word-break: break-word; }
  .category-posts .cate-post-content .blog-content-modern .entry-thumb, .author .blog-content-modern .entry-thumb, .search .blog-content-modern .entry-thumb {
    position: relative;
    overflow: hidden; }
  .category-posts .cate-post-content .blog-content-modern .entry-thumb img, .author .blog-content-modern .entry-thumb img, .search .blog-content-modern .entry-thumb img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
  .category-posts .cate-post-content .blog-content-modern .post-excerpt, .author .blog-content-modern .post-excerpt, .search .blog-content-modern .post-excerpt {
    margin-bottom: 15px !important; }
  .category-posts .cate-post-content .blog-content-modern .cat-links, .author .blog-content-modern .cat-links, .search .blog-content-modern .cat-links {
    margin-bottom: 5px; }
  .category-posts .cate-post-content .blog-content-modern .cat-links ul, .author .blog-content-modern .cat-links ul, .search .blog-content-modern .cat-links ul {
    padding: 0;
    list-style: none; }
  .category-posts .cate-post-content .blog-content-modern .cat-links ul li, .author .blog-content-modern .cat-links ul li, .search .blog-content-modern .cat-links ul li {
    display: inline-block; }
  .category-posts .cate-post-content .blog-content-modern .cat-links ul li:first-child a:before, .author .blog-content-modern .cat-links ul li:first-child a:before, .search .blog-content-modern .cat-links ul li:first-child a:before {
    display: none; }
  .category-posts .cate-post-content .blog-content-modern .cat-links a, .author .blog-content-modern .cat-links a, .search .blog-content-modern .cat-links a {
    font-size: 11px;
    text-transform: uppercase;
    color: #868686;
    font-weight: 600; }
  .category-posts .cate-post-content .blog-content-modern .cat-links a:hover, .author .blog-content-modern .cat-links a:hover, .search .blog-content-modern .cat-links a:hover {
    color: #025029; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 50px;
    top: 10px;
    left: auto;
    color: #000;
    opacity: 1;
    visibility: visible;
    font-size: 15px; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:after, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:after, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:after {
    background: #fff; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:hover, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:hover, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow:hover {
    background: #D3AD47;
    color: #fff; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before {
    content: "\f177"; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right {
    right: 15px; }
  .category-posts .cate-post-content .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before, .author .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before, .search .blog-content-modern .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before {
    content: "\f178"; }
  @media (max-width: 767px) {
    .category-posts .cate-post-content .blog-content-modern .content-moderns .list-post, .author .blog-content-modern .content-moderns .list-post, .search .blog-content-modern .content-moderns .list-post {
      width: 100%; }

    .category-posts .cate-post-content .blog-content-modern h3.entry-title, .author .blog-content-modern h3.entry-title, .search .blog-content-modern h3.entry-title {
      font-size: 30px; } }
  .category-posts .cate-post-content .blog-content-standar .list-post > article, .author .blog-content-standar .list-post > article, .search .blog-content-standar .list-post > article {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 35px;
    padding-bottom: 35px; }
  .category-posts .cate-post-content .blog-content-standar .list-post > article.sticky .read-more, .author .blog-content-standar .list-post > article.sticky .read-more, .search .blog-content-standar .list-post > article.sticky .read-more {
    z-index: 2; }
  .category-posts .cate-post-content .blog-content-standar .post-content, .author .blog-content-standar .post-content, .search .blog-content-standar .post-content {
    margin-top: 25px; }
  .category-posts .cate-post-content .blog-content-standar h3.entry-title, .author .blog-content-standar h3.entry-title, .search .blog-content-standar h3.entry-title {
    font-size: 33px;
    line-height: 40px;
    width: 100%;
    margin: 0 0 20px;
    position: relative; }
  @media (min-width: 767px) {
      .category-posts .cate-post-content .blog-content-standar h3.entry-title, .author .blog-content-standar h3.entry-title, .search .blog-content-standar h3.entry-title {
        padding-bottom: 15px; }
        .category-posts .cate-post-content .blog-content-standar h3.entry-title:before, .author .blog-content-standar h3.entry-title:before, .search .blog-content-standar h3.entry-title:before {
          content: "";
          width: 100px;
          height: 1px;
          background: #d5d5d5;
          position: absolute;
          bottom: 0;
          left: 0; }
          .rtl .category-posts .cate-post-content .blog-content-standar h3.entry-title:before, .rtl .author .blog-content-standar h3.entry-title:before, .rtl .search .blog-content-standar h3.entry-title:before {
            right: 0;
            left: auto; } }
  .category-posts .cate-post-content .blog-content-standar .post-date, .author .blog-content-standar .post-date, .search .blog-content-standar .post-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    height: 40px;
    line-height: 45px;
    padding: 0 30px 0 50px;
    clip-path: polygon(25% 0%, 100% 0, 100% 100%, 0 100%); }
  .rtl .category-posts .cate-post-content .blog-content-standar .post-date, .rtl .author .blog-content-standar .post-date, .rtl .search .blog-content-standar .post-date {
    left: 0;
    right: auto; }
  .rtl .category-posts .cate-post-content .blog-content-standar .post-date, .rtl .author .blog-content-standar .post-date, .rtl .search .blog-content-standar .post-date {
    padding: 0 50px 0 30px; }
  .category-posts .cate-post-content .blog-content-standar .post-date time.updated, .author .blog-content-standar .post-date time.updated, .search .blog-content-standar .post-date time.updated {
    font-size: 16px; }
  .category-posts .cate-post-content .blog-content-standar .post-date time.updated .day:after, .author .blog-content-standar .post-date time.updated .day:after, .search .blog-content-standar .post-date time.updated .day:after {
    content: "";
    margin: 0 8px;
    width: 13px;
    height: 1px;
    display: inline-block;
    background: #c7c7c7;
    vertical-align: middle; }
  .category-posts .cate-post-content .blog-content-standar .cat-links, .author .blog-content-standar .cat-links, .search .blog-content-standar .cat-links {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 20px; }
  .category-posts .cate-post-content .blog-content-standar .cat-links ul, .author .blog-content-standar .cat-links ul, .search .blog-content-standar .cat-links ul {
    padding: 0;
    list-style: none; }
  .category-posts .cate-post-content .blog-content-standar .cat-links ul li, .author .blog-content-standar .cat-links ul li, .search .blog-content-standar .cat-links ul li {
    display: inline-block;
    margin-right: 5px; }
  .rtl .category-posts .cate-post-content .blog-content-standar .cat-links ul li, .rtl .author .blog-content-standar .cat-links ul li, .rtl .search .blog-content-standar .cat-links ul li {
    margin-left: 5px;
    margin-right: 0; }
  .category-posts .cate-post-content .blog-content-standar .cat-links a, .author .blog-content-standar .cat-links a, .search .blog-content-standar .cat-links a {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: #D3AD47;
    line-height: 20px;
    padding: 0 12px;
    display: inline-block; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head, .author .blog-content-standar .entry-meta-head, .search .blog-content-standar .entry-meta-head {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head > div, .author .blog-content-standar .entry-meta-head > div, .search .blog-content-standar .entry-meta-head > div {
    color: #868686;
    display: flex;
    align-items: center; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head > div:last-child:after, .author .blog-content-standar .entry-meta-head > div:last-child:after, .search .blog-content-standar .entry-meta-head > div:last-child:after {
    display: none; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head > div:after, .author .blog-content-standar .entry-meta-head > div:after, .search .blog-content-standar .entry-meta-head > div:after {
    content: "/";
    margin: 0 10px;
    display: inline-block;
    color: #d5d5d5; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head > div a, .author .blog-content-standar .entry-meta-head > div a, .search .blog-content-standar .entry-meta-head > div a {
    color: #868686; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head > div time, .author .blog-content-standar .entry-meta-head > div time, .search .blog-content-standar .entry-meta-head > div time {
    color: #868686; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head i, .author .blog-content-standar .entry-meta-head i, .search .blog-content-standar .entry-meta-head i {
    font-size: 13px;
    color: #000;
    position: relative;
    top: 1px;
    margin-right: 5px; }
  .rtl .category-posts .cate-post-content .blog-content-standar .entry-meta-head i, .rtl .author .blog-content-standar .entry-meta-head i, .rtl .search .blog-content-standar .entry-meta-head i {
    margin-left: 5px;
    margin-right: 0; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head .comments-link i, .author .blog-content-standar .entry-meta-head .comments-link i, .search .blog-content-standar .entry-meta-head .comments-link i {
    top: 0; }
  .category-posts .cate-post-content .blog-content-standar .entry-meta-head .entry-date i, .author .blog-content-standar .entry-meta-head .entry-date i, .search .blog-content-standar .entry-meta-head .entry-date i {
    top: -1px; }
  .category-posts .cate-post-content .blog-content-standar .post-excerpt, .author .blog-content-standar .post-excerpt, .search .blog-content-standar .post-excerpt {
    margin-bottom: -5px;
    word-break: break-word;
    font-size: 14px; }
  .category-posts .cate-post-content .blog-content-standar .read-more, .author .blog-content-standar .read-more, .search .blog-content-standar .read-more {
    display: inline-block;
    margin-top: 35px;
    color: #fff;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 40px;
    background: #000;
    padding: 0 30px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .category-posts .cate-post-content .blog-content-standar .read-more:hover, .author .blog-content-standar .read-more:hover, .search .blog-content-standar .read-more:hover {
    background: #D3AD47; }
  @media (max-width: 767px) {
    .category-posts .cate-post-content .blog-content-standar h3.entry-title, .author .blog-content-standar h3.entry-title, .search .blog-content-standar h3.entry-title {
      font-size: 30px; } }
  .category-posts .cate-post-content h3.entry-title, .author h3.entry-title, .search h3.entry-title {
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 30px;
    word-break: break-word;
    margin-top: 5px; }
  @media (max-width: 991px) {
    .category-posts .cate-post-content h3.entry-title, .author h3.entry-title, .search h3.entry-title {
      margin-top: 10px; } }
  .category-posts .cate-post-content .entry-meta .entry-meta-link a, .author .entry-meta .entry-meta-link a, .search .entry-meta .entry-meta-link a {
    text-transform: capitalize;
    color: #D3AD47; }
  .category-posts .cate-post-content .entry-meta .entry-meta-link img, .author .entry-meta .entry-meta-link img, .search .entry-meta .entry-meta-link img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 10px; }
  .rtl .category-posts .cate-post-content .entry-meta .entry-meta-link img, .rtl .author .entry-meta .entry-meta-link img, .rtl .search .entry-meta .entry-meta-link img {
    margin-left: 10px;
    margin-right: 0; }
  .category-posts .cate-post-content .byline, .author .byline, .search .byline, .category-posts .cate-post-content .published:not(.updated), .author .published:not(.updated), .search .published:not(.updated) {
    display: none; }

.post_format-post-format-gallery .gallery-slider {
  display: inline-block;
  width: 100%; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 30px;
    left: auto;
    top: 0;
    color: #D3AD47; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow:after {
    background: #fff; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow:hover {
    background: transparent; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-left:before {
    content: "\f177"; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right {
    right: 0px; }
  .post_format-post-format-gallery .gallery-slider .slick-arrow.fa-angle-right:before {
    content: "\f178"; }

.blog-content-grid {
  display: flex;
  flex-wrap: wrap; }
/************************************************************************************************
 POST SINGLE
 *************************************************************************************************/
.content-image-single {
  position: relative;
  margin: 20px 0 50px; }
  .content-image-single .content-info {
    text-align: center;
    margin-bottom: 30px; }
  .content-image-single .single-thumb img {
    width: 100%; }
  .content-image-single .cat-links {
    font-size: 12px;
    text-transform: uppercase; }
  .content-image-single .cat-links a {
    color: #868686;
    font-size: 11px;
    font-weight: 600; }
  .content-image-single .cat-links a:hover {
    color: #D3AD47; }
  .content-image-single .entry-title {
    font-size: 50px;
    word-break: break-word;
    margin: 5px 0 15px; }
  @media (max-width: 767px) {
    .content-image-single .entry-title {
      font-size: 30px; } }
  .content-image-single .entry-by {
    color: #000;
    font-size: 13px; }
  .content-image-single .entry-by a {
    color: #868686; }
  .content-image-single .entry-by > * {
    display: inline-block; }
  .content-image-single .entry-by .entry-author:after {
    content: "";
    display: inline-block;
    margin: 0 15px;
    background: #d5d5d5;
    width: 15px;
    height: 1px;
    position: relative;
    top: -3px; }
  .content-image-single .entry-by i {
    font-size: 15px;
    color: #000;
    position: relative;
    top: 1px;
    margin-right: 5px; }
  .rtl .content-image-single .entry-by i {
    margin-left: 5px;
    margin-right: 0; }

.comments-area {
  display: inline-block;
  width: 100%; }
  .comments-area > ol > li, .comments-area > ul > li {
    padding: 0 !important; }
  .comments-area > ol > li.bypostauthor, .comments-area > ul > li.bypostauthor {
    font-style: normal;
    font-size: 13px; }
  .comments-area ul {
    list-style: disc; }
  .comments-area ol {
    list-style: decimal; }
  .comments-area .comments-title {
    font-size: 26px;
    margin-bottom: 0;
    color: #000;
    margin-top: 55px;
    text-align: center;
    font-family: 'Montserrat', sans-serif; }
  @media (max-width: 767px) {
    .comments-area .comments-title {
      font-size: 25px; } }
  .comments-area .comment-navigation {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px; }
  .comments-area .comment-navigation > div {
    font-weight: 400;
    text-transform: uppercase; }
  @media (max-width: 767px) {
      .comments-area .comment-navigation > div {
        font-size: 12px; } }
  .comments-area .comment-navigation > div a {
    color: #fff;
    position: relative;
    padding: 0 20px;
    background: #D3AD47;
    display: inline-block;
    line-height: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  @media (max-width: 767px) {
        .comments-area .comment-navigation > div a {
          padding: 0 15px; } }
  .comments-area .comment-navigation > div a:before {
    display: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: "\23";
    font-family: ElegantIcons;
    left: -15px;
    top: 0;
    font-size: 16px;
    line-height: 40px;
    color: #fff; }
  .rtl .comments-area .comment-navigation > div a:before {
    right: -15px;
    left: auto; }
  @media (max-width: 767px) {
          .comments-area .comment-navigation > div a:before {
            font-size: 13px; } }
  .comments-area .comment-navigation > div a:hover {
    color: #fff;
    background: #025029; }
  .comments-area .comment-navigation > div:empty {
    display: none; }
  .comments-area .comment-navigation .nav-previous {
    float: left; }
  .rtl .comments-area .comment-navigation .nav-previous {
    float: right; }
  .comments-area .comment-navigation .nav-next {
    float: right; }
  .rtl .comments-area .comment-navigation .nav-next {
    float: left; }
  .comments-area .comment-navigation .nav-next a:before {
    content: "\24";
    left: auto;
    right: 0; }
  .rtl .comments-area .comment-navigation .nav-next a:before {
    right: auto;
    left: auto; }
  .rtl .comments-area .comment-navigation .nav-next a:before {
    left: 0;
    right: auto; }
  .comments-area .comment-navigation .nav-next a:hover {
    color: #fff; }
  .comments-area .comment-navigation .nav-next a:hover:before {
    right: 11px;
    left: auto;
    opacity: 1;
    visibility: visible; }
  .rtl .comments-area .comment-navigation .nav-next a:hover:before {
    left: 11px;
    right: auto; }
  .rtl .comments-area .comment-navigation .nav-next a:hover:before {
    right: auto;
    left: auto; }
  .comments-area .comment-list {
    list-style: none;
    padding: 0px;
    margin-top: 42px; }
  .comments-area .comment-list .children {
    list-style: none;
    padding-left: 90px; }
  .rtl .comments-area .comment-list .children {
    padding-right: 90px;
    padding-left: 0; }
  .comments-area .comment-list .children .media:last-child {
    border-bottom: 0; }
  @media (max-width: 767px) {
      .comments-area .comment-list .children {
        padding-left: 0px; }
        .rtl .comments-area .comment-list .children {
          padding-right: 0px;
          padding-left: 0; } }
  .comments-area .comment-list > .children {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 35px; }
  .comments-area .comment-list b.fn {
    color: #252525; }
  .comments-area .comment-list .media {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
    display: block; }
  .comments-area .comment-list .media:last-child {
    margin-bottom: 0; }
  .comments-area .comment-list .media .media-left {
    float: left; }
  .rtl .comments-area .comment-list .media .media-left {
    float: right; }
  .comments-area .comment-list .media .media-left img {
    margin: 0;
    margin-right: 20px;
    min-width: 70px; }
  .rtl .comments-area .comment-list .media .media-left img {
    margin-left: 20px;
    margin-right: 0; }
  @media (max-width: 767px) {
          .comments-area .comment-list .media .media-left img {
            width: 45px;
            min-width: 45px; } }
  .comments-area .comment-list .media .media-body {
    overflow: hidden; }
  .comments-area .comment-list .media .media-body > .media-content {
    padding-bottom: 0;
    font-weight: 300; }
  .comments-area .comment-list .media .media-body > .media-content p:empty {
    display: none; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver {
    margin-top: -8px; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver a {
    font-size: 12px;
    line-height: 18px;
    color: rgba(134, 134, 134, 0.7);
    font-weight: 400; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver a:hover {
    color: #D3AD47; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver .comment-edit-link:before {
    content: "-";
    display: inline-block;
    margin: 0 10px;
    color: #a3a3a3; }
  .comments-area .comment-list .media .media-body > .media-content h2.media-heading {
    line-height: 1.8;
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; }
  .comments-area .comment-list .media .media-body > .media-content h2.media-heading a {
    color: #000; }
  .comments-area .comment-list .media .media-body > .media-content h2.media-heading a:hover {
    color: #D3AD47; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver {
    margin-bottom: 7px;
    display: block;
    font-size: 14px; }
  .comments-area .comment-list .media .media-body > .media-content .media-silver i {
    margin-right: 5px; }
  .rtl .comments-area .comment-list .media .media-body > .media-content .media-silver i {
    margin-left: 5px;
    margin-right: 0; }
  .comments-area .comment-list .media .media-body > .media-content .comment-content {
    color: #868686;
    font-weight: 400; }
  .comments-area .comment-list .media .media-body > .media-content .comment-content p {
    margin: 0; }
  @media (max-width: 767px) {
            .comments-area .comment-list .media .media-body > .media-content .comment-content {
              margin-top: 15px; } }
  .comments-area .comment-list .media .media-body > .media-content .comment-reply-link {
    position: absolute;
    top: 5px;
    right: 0;
    color: #c2c2c2;
    font-weight: 400;
    font-size: 0;
    font-weight: 500; }
  .rtl .comments-area .comment-list .media .media-body > .media-content .comment-reply-link {
    left: 0;
    right: auto; }
  .comments-area .comment-list .media .media-body > .media-content .comment-reply-link:before {
    content: "\f112";
    display: inline-block;
    font-size: 14px;
    font-family: FontAwesome; }
  .comments-area .comment-list .media .media-body > .media-content .comment-reply-link:hover {
    color: #D3AD47; }
  @media (max-width: 767px) {
        .comments-area .comment-list .media .media-body {
          overflow: unset; }
          .comments-area .comment-list .media .media-body .comment-text table td, .comments-area .comment-list .media .media-body .comment-text .table td, .comments-area .comment-list .media .media-body .comment-text table th, .comments-area .comment-list .media .media-body .comment-text .table th {
            padding: 10px 5px; } }
  .comments-area .comment-form a, .comments-area .comment-respond a {
    color: #D3AD47; }
  .comments-area .comment-form a:hover, .comments-area .comment-respond a:hover {
    color: #025029; }
  .comments-area .comment-form .comment-notes, .comments-area .comment-respond .comment-notes, .comments-area .comment-form .logged-in-as, .comments-area .comment-respond .logged-in-as {
    margin-bottom: 10px;
    font-weight: 400; }
  .comments-area .comment-form .comment_reply_header h3, .comments-area .comment-respond .comment_reply_header h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 23px;
    font-family: 'Montserrat', sans-serif;
    color: #000; }
  @media (max-width: 767px) {
        .comments-area .comment-form .comment_reply_header h3, .comments-area .comment-respond .comment_reply_header h3 {
          font-size: 25px; } }
  .comments-area .comment-form .comment-form-cookies-consent, .comments-area .comment-respond .comment-form-cookies-consent {
    display: inline-block;
    padding: 0 15px; }
  .comments-area .comment-form .comment-form-cookies-consent input, .comments-area .comment-respond .comment-form-cookies-consent input {
    margin-right: 5px; }
  .rtl .comments-area .comment-form .comment-form-cookies-consent input, .rtl .comments-area .comment-respond .comment-form-cookies-consent input {
    margin-left: 5px;
    margin-right: 0; }
  .comments-area .comment-form .form-group, .comments-area .comment-respond .form-group {
    position: relative;
    margin-bottom: 30px; }
  .comments-area .comment-form .form-group .form-control, .comments-area .comment-respond .form-group .form-control {
    height: 47px;
    padding: 10px 20px;
    border: none;
    background: #f5f5f5;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .comments-area .comment-form .form-group .form-control:-moz-placeholder, .comments-area .comment-respond .form-group .form-control:-moz-placeholder {
    color: rgba(134, 134, 134, 0.7); }
  .comments-area .comment-form .form-group .form-control::-moz-placeholder, .comments-area .comment-respond .form-group .form-control::-moz-placeholder {
    color: rgba(134, 134, 134, 0.7); }
  .comments-area .comment-form .form-group .form-control:-ms-input-placeholder, .comments-area .comment-respond .form-group .form-control:-ms-input-placeholder {
    color: rgba(134, 134, 134, 0.7); }
  .comments-area .comment-form .form-group .form-control::-webkit-input-placeholder, .comments-area .comment-respond .form-group .form-control::-webkit-input-placeholder {
    color: rgba(134, 134, 134, 0.7); }
  .comments-area .comment-form .form-group .form-control:focus, .comments-area .comment-respond .form-group .form-control:focus {
    border-color: #000; }
  .comments-area .comment-form .form-group textarea.form-control, .comments-area .comment-respond .form-group textarea.form-control {
    height: auto; }
  .comments-area .comment-form .form-group > #comment, .comments-area .comment-respond .form-group > #comment {
    margin-top: 15px;
    -webkit-box-shadow: unset;
    box-shadow: unset; }
  .comments-area .comment-form .form-group input[type="submit"], .comments-area .comment-respond .form-group input[type="submit"] {
    background: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #000;
    padding: 0 30px;
    height: 50px;
    line-height: 48px;
    font-size: 12px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .comments-area .comment-form .form-group input[type="submit"]:hover, .comments-area .comment-respond .form-group input[type="submit"]:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .comments-area .comment-form .form-group .required, .comments-area .comment-respond .form-group .required {
    color: red;
    position: absolute;
    right: 20px;
    top: 17px; }
  .rtl .comments-area .comment-form .form-group .required, .rtl .comments-area .comment-respond .form-group .required {
    left: 20px;
    right: auto; }
  .comments-area .comment-form {
    margin-top: 55px;
    text-align: center; }
  .comments-area .comment-respond {
    margin-top: 50px; }
  .comments-area .no-comments {
    font-weight: 500;
    color: #000;
    margin-top: 25px; }

@media (min-width: 992px) {
      .content-single-sidebar .post-single:not(.col-xl-12, .col-lg-12) {
        padding-left: 35px; }
        .rtl .content-single-sidebar .post-single:not(.col-xl-12, .col-lg-12) {
          padding-right: 35px;
          padding-left: 0; } }

.post-single.col-xl-12.col-lg-12 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }
  .post-single .type-post {
    margin-bottom: 0; }
  .post-single .entry-meta .entry-meta-link a {
    text-transform: capitalize; }
  .post-single .entry-meta .entry-meta-link img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 10px; }
  .rtl .post-single .entry-meta .entry-meta-link img {
    margin-left: 10px;
    margin-right: 0; }
  .post-single .format-gallery .post-content .post-excerpt {
    display: inline-block;
    margin: 0 -5px; }
  .post-single .format-gallery .post-content .post-excerpt > div.gallery {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 20px; }
  .post-single .format-gallery .post-content .post-excerpt p, .post-single .format-gallery .post-content .post-excerpt h2 {
    padding: 0 5px; }
  .post-single .format-gallery .post-content .post-excerpt .page-links {
    padding: 0 5px; }
  .post-single .format-gallery .post-content .post-excerpt .gallery-icon a {
    pointer-events: none; }
  .post-single .format-video iframe {
    width: 100%; }
  .post-single .prevNextArticle {
    padding: 30px 0;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    position: relative; }
  .post-single .prevNextArticle:before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 39px);
    width: 1px;
    height: 78px;
    background: #e0e0e0; }
  .post-single .prevNextArticle .hoverExtend {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px; }
  .post-single .prevNextArticle .previousArticle, .post-single .prevNextArticle .nextArticle {
    width: 50%;
    float: left; }
  .rtl .post-single .prevNextArticle .previousArticle, .rtl .post-single .prevNextArticle .nextArticle {
    float: right; }
  .post-single .prevNextArticle .previousArticle a, .post-single .prevNextArticle .nextArticle a {
    color: #a3a3a3;
    font-size: 15px;
    text-transform: capitalize;
    display: block; }
  .post-single .prevNextArticle .previousArticle a .title, .post-single .prevNextArticle .nextArticle a .title {
    font-weight: 400;
    overflow-wrap: break-word;
    margin: 0;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .post-single .prevNextArticle .previousArticle a:hover .title, .post-single .prevNextArticle .nextArticle a:hover .title {
    color: #D3AD47; }
  .post-single .prevNextArticle .previousArticle a:hover .hoverExtend, .post-single .prevNextArticle .nextArticle a:hover .hoverExtend {
    color: #D3AD47; }
  .post-single .prevNextArticle .previousArticle {
    padding-right: 15px; }
  .rtl .post-single .prevNextArticle .previousArticle {
    padding-left: 15px;
    padding-right: 0; }
  .post-single .prevNextArticle .nextArticle {
    text-align: right;
    float: right;
    padding-left: 15px; }
  .rtl .post-single .prevNextArticle .nextArticle {
    text-align: left; }
  .rtl .post-single .prevNextArticle .nextArticle {
    float: left; }
  .rtl .post-single .prevNextArticle .nextArticle {
    padding-right: 15px;
    padding-left: 0; }
  @media (max-width: 767px) {
    .post-single .prevNextArticle:before {
      height: 60px;
      top: calc(50% - 30px); }

    .post-single .prevNextArticle .previousArticle a, .post-single .prevNextArticle .nextArticle a {
      color: #000;
      font-weight: 500; }
      .post-single .prevNextArticle .previousArticle a .hoverExtend, .post-single .prevNextArticle .nextArticle a .hoverExtend {
        margin: 0; }
      .post-single .prevNextArticle .previousArticle a .title, .post-single .prevNextArticle .nextArticle a .title {
        display: none; }

    .post-single .prevNextArticle .previousArticle a .hoverExtend:before {
      display: inline-block;
      font-family: eleganticons;
      content: "\23";
      font-size: 20px;
      margin-right: 10px;
      line-height: 1;
      position: relative;
      top: 5px; }
      .rtl .post-single .prevNextArticle .previousArticle a .hoverExtend:before {
        margin-left: 10px;
        margin-right: 0; }

    .post-single .prevNextArticle .nextArticle a .hoverExtend:after {
      display: inline-block;
      font-family: eleganticons;
      content: "\24";
      font-size: 20px;
      margin-left: 10px;
      line-height: 1;
      position: relative;
      top: 5px; }
      .rtl .post-single .prevNextArticle .nextArticle a .hoverExtend:after {
        margin-right: 10px;
        margin-left: 0; } }
  .post-single .post-content-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0;
    padding-bottom: 35px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0; }
  .post-single .post-content-entry .entry-social-share {
    margin-bottom: 0;
    margin-top: 20px; }
  .post-single .post-content-entry .entry-social-share label {
    margin: 0;
    color: #000; }
  .post-single .post-content-entry .entry-social-share .social-share {
    display: inline-block; }
  .post-single .post-content-entry .entry-social-share .social-share a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #e0e0e0; }
  .rtl .post-single .post-content-entry .entry-social-share .social-share a {
    margin-left: 5px;
    margin-right: 0; }
  .post-single .post-content-entry .entry-social-share .social-share a i {
    text-align: center;
    font-size: 13px;
    color: #000; }
  .post-single .post-content-entry .entry-social-share .social-share a:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .post-single .post-content-entry .entry-social-share .social-share a:hover i {
    color: #fff; }
  .post-single .post-content-entry .entry-social-share .social-share a:last-child {
    margin-right: 0; }
  .rtl .post-single .post-content-entry .entry-social-share .social-share a:last-child {
    margin-left: 0;
    margin-right: 0; }
  .post-single .post-content-entry .tags-links {
    margin-top: 20px; }
  .post-single .post-content-entry .tags-links label {
    margin: 0;
    color: #000; }
  .post-single .post-content-entry .tags-links a {
    font-size: 13px;
    color: #868686;
    font-weight: 400;
    line-height: 40px;
    margin: 2.5px;
    border: 1px solid #e0e0e0;
    display: inline-block;
    padding: 0 20px;
    background: transparent;
    white-space: nowrap; }
  .post-single .post-content-entry .tags-links a:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .post-single .edit-link {
    display: block;
    color: #a3a3a3;
    font-weight: 400;
    text-transform: inherit;
    margin-top: 29px;
    padding-bottom: 27px;
    border-bottom: 1px solid #e0e0e0; }
  .post-single .edit-link a {
    color: #D3AD47;
    margin-right: 15px;
    font-weight: 400; }
  .rtl .post-single .edit-link a {
    margin-left: 15px;
    margin-right: 0; }
  .post-single .edit-link:before {
    display: none; }
  .post-single .post-content {
    margin-bottom: 0; }
  .post-single .post-content .post-excerpt .first-letter {
    font-size: 40px;
    color: #000;
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    float: left;
    margin-right: 20px;
    position: relative;
    top: 4px; }
  .rtl .post-single .post-content .post-excerpt .first-letter {
    float: right; }
  .rtl .post-single .post-content .post-excerpt .first-letter {
    margin-left: 20px;
    margin-right: 0; }
  .post-single .post-content .post-excerpt h3 {
    margin-top: 30px; }
  .post-single .post-content .post-excerpt strong {
    color: #000;
    font-weight: 600; }
  .post-single .post-content .post-excerpt figure {
    word-break: break-word; }
  .post-single .post-content .post-excerpt iframe {
    margin-top: 20px;
    width: 100%; }
  .post-single .post-content .post-excerpt ul.list-type-blog {
    margin-bottom: 30px;
    list-style-type: none;
    padding: 0; }
  .post-single .post-content .post-excerpt ul.list-type-blog li {
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif; }
  .post-single .post-content .post-excerpt ul.list-type-blog li:before {
    content: "\4e";
    color: #D3AD47;
    font-family: 'ElegantIcons';
    margin-right: 10px; }
  .rtl .post-single .post-content .post-excerpt ul.list-type-blog li:before {
    margin-left: 10px;
    margin-right: 0; }
  .post-single .post-content .post-excerpt ul.list-type-blog li:last-child {
    padding-bottom: 0; }
  .post-single .post-content .post-excerpt .post-password-form {
    margin-bottom: -10px; }
  .post-single .post-content .post-excerpt .post-password-form label {
    margin-bottom: 0; }
  .post-single .post-content .post-excerpt .post-password-form input[type="password"] {
    padding: 5px 15px; }
  .post-single .post-content .post-excerpt .post-password-form input[type="submit"] {
    background: #D3AD47;
    color: #fff;
    padding: 5px 15px;
    margin-left: -5px;
    border: 1px solid #D3AD47; }
  .rtl .post-single .post-content .post-excerpt .post-password-form input[type="submit"] {
    margin-right: -5px;
    margin-left: 0; }
  .post-single .post-content .post-excerpt .post-password-form input[type="submit"]:hover {
    background: #025029;
    border-color: #025029; }
  .post-single .post-content h2.post-btn {
    float: right;
    margin: 0; }
  .rtl .post-single .post-content h2.post-btn {
    float: left; }
  .post-single .post-content h2.post-btn .post-btn-more {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #747474;
    color: #747474;
    margin: 0px;
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .post-single .post-content h2.post-btn .post-btn-more:hover {
    color: #fff;
    background: #D3AD47;
    border-color: #D3AD47; }
  .post-single .post-content .entry-tag {
    float: left; }
  .rtl .post-single .post-content .entry-tag {
    float: right; }
  @media (max-width: 767px) {
      .post-single .post-content .entry-tag {
        float: left;
        width: 100%;
        margin-top: 10px; }
        .rtl .post-single .post-content .entry-tag {
          float: right; } }
  .post-single .post-content .entry-tag a {
    color: #868686; }
  .post-single .post-content .entry-tag a:hover {
    color: #D3AD47; }
  .post-single .post-content .entry-tag i {
    font-size: 17px;
    color: #000;
    margin-right: 20px;
    position: relative; }
  .rtl .post-single .post-content .entry-tag i {
    margin-left: 20px;
    margin-right: 0; }
  .post-single .post-content .entry-tag i:after {
    position: absolute;
    content: ":";
    right: -10px;
    color: #000;
    font-weight: 500; }
  .rtl .post-single .post-content .entry-tag i:after {
    left: -10px;
    right: auto; }
  .post-single .post-content .entry-tag .title-tag {
    display: none; }
  .post-single .entry-meta-author {
    display: inline-block;
    padding: 30px;
    background: #f5f5f5;
    margin-top: 50px;
    width: 100%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px; }
  @media (max-width: 767px) {
    .post-single .entry-meta-author {
      padding: 15px; } }
  .post-single .entry-meta-author .author-avatar {
    display: inline-block;
    vertical-align: middle; }
  @media (max-width: 767px) {
      .post-single .entry-meta-author .author-avatar {
        display: block;
        text-align: center; } }
  .post-single .entry-meta-author .author-avatar .author-image img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .post-single .entry-meta-author .author-info {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    width: calc(100% - 105px); }
  @media (max-width: 767px) {
      .post-single .entry-meta-author .author-info {
        padding: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px; } }
  .post-single .entry-meta-author .author-info .author-link {
    display: block;
    margin-bottom: 10px; }
  .post-single .entry-meta-author .author-info .author-link a {
    font-size: 16px;
    font-weight: 700; }
  .post-single.one_column, .post-single.simple_title, .post-single.prallax_image {
    max-width: 1055px;
    margin-left: auto;
    margin-right: auto; }

.content-single-simple_title > .content-image-single {
  margin: 0 0 50px;
  background: #f6f6f6;
  padding: 90px 0; }
  .content-single-simple_title > .content-image-single .content-info {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto; }

.content-single-sticky_title .entry-thumb {
  background-attachment: fixed;
  background-size: cover;
  height: 800px;
  margin-bottom: 60px;
  background-position: center; }
  .content-single-sticky_title .entry-thumb:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25); }
  .content-single-sticky_title .content-info {
    text-align: left;
    margin: 0; }
  .rtl .content-single-sticky_title .content-info {
    text-align: right; }
  .content-single-sticky_title .content-image-single {
    margin: 0;
    position: sticky;
    top: 50px; }
  .content-single-sticky_title > .container > .row {
    display: inline-block; }
  .content-single-sticky_title > .container > .row > div {
    float: left; }
  .rtl .content-single-sticky_title > .container > .row > div {
    float: right; }
  @media (max-width: 991px) {
  .content-single-sticky_title .content-image-single {
    margin: 0 0 30px;
    position: relative;
    top: 0; }
  .content-single-sticky_title .entry-thumb {
    height: 500px; } }
  @media (max-width: 480px) {
  .content-single-sticky_title .entry-thumb {
    height: 350px; } }

.content-single-prallax_image .entry-thumb {
  background-attachment: fixed;
  background-size: cover;
  height: 800px;
  margin-bottom: 60px;
  background-position: center;
  position: relative; }
  .content-single-prallax_image .entry-thumb:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25); }
  .content-single-prallax_image .content-image-single {
    margin: 0 0 50px;
    position: relative; }
  .content-single-prallax_image .content-image-single .entry-title {
    color: #fff; }
  .content-single-prallax_image .content-image-single .cat-links {
    color: #fff; }
  .content-single-prallax_image .content-image-single .cat-links a {
    color: #fff; }
  .content-single-prallax_image .content-image-single .cat-links a:hover {
    color: #D3AD47; }
  .content-single-prallax_image .content-image-single .entry-by {
    color: #fff; }
  .content-single-prallax_image .content-image-single .entry-by i {
    color: #fff; }
  .content-single-prallax_image .content-image-single .entry-by a {
    color: #fff; }
  .content-single-prallax_image .content-image-single .entry-by a:hover {
    color: #D3AD47; }
  .content-single-prallax_image .content-image-single .entry-by .entry-author:after {
    color: #fff; }
  .content-single-prallax_image .content-info {
    width: 100%;
    padding: 50px 15px;
    bottom: 0;
    left: 0;
    position: absolute;
    margin: 0; }
  @media (max-width: 991px) {
  .content-single-prallax_image .entry-thumb {
    height: 500px; } }
  @media (max-width: 480px) {
  .content-single-prallax_image .entry-thumb {
    height: 350px; } }

.single-post-sticky_title .bwp-main .page-title, .single-post-prallax_image .bwp-main .page-title {
  margin-bottom: 0; }
/************************************************************************************************
 POST NAVIGATION
 *************************************************************************************************/
@media (max-width: 991px) {
    .navigation.paging-navigation {
      margin-bottom: 50px; } }
  .navigation.paging-navigation .screen-reader-text {
    display: none; }
  .navigation.paging-navigation .loop-pagination {
    display: inline-block; }
/*
 * General Post Style using for all with naming class entry
 */
.entry-date {
  font-weight: 400; }
  .entry-date time {
    color: #D3AD47; }
  .entry-date:hover {
    cursor: pointer; }
  .entry-date:hover time {
    color: #D3AD47; }

.entry-content .page-links {
  width: 100%;
  display: inline-block; }

.entry-vote {
  z-index: 1;
  display: table;
  text-align: center;
  top: 20px;
  position: absolute;
  background: rgba(0, 0, 0, .5);
  width: 44px;
  height: 44px;
  right: 20px; }
  .rtl .entry-vote {
    left: 20px;
    right: auto; }
  .entry-vote .entry-vote-inner {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-weight: 600; }
  .entry-vote.vote-perfect .entry-vote-inner {
    color: #e42234; }
  .entry-vote.vote-good .entry-vote-inner {
    color: #e9c931; }
  .entry-vote.vote-average .entry-vote-inner {
    color: #91e536; }
  .entry-vote.vote-bad .entry-vote-inner {
    color: #fbaf3f; }
  .entry-vote.vote-poor .entry-vote-inner {
    color: #57bf6d; }

.entry-image {
  margin: -1px;
  display: block; }

.entry-thumb {
  position: relative; }

.entry-title {
  margin-top: 0;
  line-height: 1;
  text-transform: capitalize; }

.entry-content-inner {
  padding: 20px; }

.type-post {
  margin-bottom: 30px; }

.blog-type .entry-image {
  width: auto;
  height: 169px; }
  .blog-type .entry-image img {
    width: auto; }
/* Using for new, magazine ---------------------------------------------------------------*/
.post-title {
  font-size: 14px; }

.post-thumb {
  position: relative; }

.blog-meta {
  top: 0;
  position: absolute;
  right: 0px; }
  .rtl .blog-meta {
    left: 0px;
    right: auto; }
/************************************************************************************************
 PORTFOLIO
 *************************************************************************************************/
.single-portfolio-content article {
  margin-bottom: 60px; }
  @media (max-width: 991px) {
    .single-portfolio-content .content-left {
      margin-bottom: 30px; } }
  .single-portfolio-content .portfolio-excerpt ul {
    padding: 0;
    margin-bottom: 15px; }
  .single-portfolio-content .portfolio-excerpt ul li {
    list-style: none;
    position: relative;
    padding-left: 30px; }
  .rtl .single-portfolio-content .portfolio-excerpt ul li {
    padding-right: 30px;
    padding-left: 0; }
  .single-portfolio-content .portfolio-excerpt ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    background: #D3AD47; }
  .rtl .single-portfolio-content .portfolio-excerpt ul li:before {
    right: 0;
    left: auto; }
  .single-portfolio-content .entry-title {
    font-size: 35px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 40px;
    line-height: 1; }
  .single-portfolio-content .portfolio-infomation {
    margin-top: 20px; }
  .single-portfolio-content .portfolio-infomation .entry-social-share {
    display: flex;
    width: 100%; }
  .single-portfolio-content .portfolio-infomation .entry-social-share .social-share a {
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #a3a3a3;
    color: #fff;
    font-size: 12px; }
  .rtl .single-portfolio-content .portfolio-infomation .entry-social-share .social-share a {
    margin-left: 10px;
    margin-right: 0; }
  .single-portfolio-content .portfolio-infomation .entry-social-share .social-share a:hover {
    background: #D3AD47; }
  .single-portfolio-content .portfolio-infomation > div {
    display: flex;
    border-bottom: 1px dashed rgba(163, 163, 163, 0.25);
    padding: 10px 0; }
  .single-portfolio-content .portfolio-infomation > div:last-child {
    border-bottom: 0; }
  .single-portfolio-content .portfolio-infomation > div strong {
    width: 50%;
    font-weight: 700;
    color: #000;
    text-transform: capitalize; }
  .single-portfolio-content .portfolio-infomation > div time.entry-date.published {
    display: none; }
  .single-portfolio-content .portfolio-infomation > div time.updated {
    color: #868686;
    text-transform: capitalize;
    font-size: 1rem; }
  .single-portfolio-content .portfolio-infomation > div time.updated:before {
    display: none; }
  .single-portfolio-content .portfolio-infomation > div .list-categories {
    padding: 0; }
  .single-portfolio-content .portfolio-infomation > div .list-categories li {
    display: inline-block;
    list-style: none; }
  .single-portfolio-content .portfolio-infomation > div .list-categories li a {
    color: #868686; }
  .single-portfolio-content .portfolio-infomation > div .list-categories li a:hover {
    color: #D3AD47; }

.single-ourteam-content .ourteam-content {
  padding-left: 20px; }
  .rtl .single-ourteam-content .ourteam-content {
    padding-right: 20px;
    padding-left: 0; }
  @media (max-width: 991px) {
    .single-ourteam-content .ourteam-content {
      margin-top: 50px;
      padding-left: 0; }
      .rtl .single-ourteam-content .ourteam-content {
        padding-right: 0;
        padding-left: 0; } }
  .single-ourteam-content .entry-thumb {
    text-align: center; }
  .single-ourteam-content .ourteam {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .single-ourteam-content .entry-title {
    font-size: 30px;
    text-transform: capitalize;
    margin: 0;
    color: #000;
    line-height: 1;
    margin-bottom: 45px; }
  .single-ourteam-content .team-job {
    margin-bottom: 15px;
    color: #D3AD47; }
  .single-ourteam-content .social-link {
    margin-top: 20px; }
  .single-ourteam-content .social-link li {
    margin: 0 7px; }
  .single-ourteam-content .social-link li a i {
    color: #868686;
    font-size: 25px; }
  .single-ourteam-content .social-link li a:hover i {
    color: #D3AD47; }

body.single-post.elementor-page #bwp-main > .container {
  max-width: 1440px; }

h1.bwp-title-default {
  font-size: 25px;
  padding-top: 30px;
  padding-bottom: 20px; }
/* Block default ------------------------------------------------------------------------*/
.widget {
  margin-bottom: 20px;
  border: 0px solid transparent;
  position: relative;
  padding: 0px;
  /* block styles */ }
  .widget .widget-title.separator_align_center .widget-arrow, .widget .widgettitle.separator_align_center .widget-arrow, .widget .wpb_heading.separator_align_center .widget-arrow {
    margin: 0 auto;
    left: 0;
    right: 0; }
  .rtl .widget .widget-title.separator_align_center .widget-arrow, .rtl .widget .widgettitle.separator_align_center .widget-arrow, .rtl .widget .wpb_heading.separator_align_center .widget-arrow {
    right: 0;
    left: auto; }
  .rtl .widget .widget-title.separator_align_center .widget-arrow, .rtl .widget .widgettitle.separator_align_center .widget-arrow, .rtl .widget .wpb_heading.separator_align_center .widget-arrow {
    left: 0;
    right: auto; }
  .widget .widget-title.separator_align_right .widget-arrow, .widget .widgettitle.separator_align_right .widget-arrow, .widget .wpb_heading.separator_align_right .widget-arrow {
    left: auto;
    right: 70px; }
  .widget .widget-title.separator_align_right .widget-arrow:before, .widget .widgettitle.separator_align_right .widget-arrow:before, .widget .wpb_heading.separator_align_right .widget-arrow:before {
    left: auto;
    right: 47px; }
  .rtl .widget .widget-title.separator_align_right .widget-arrow:before, .rtl .widget .widgettitle.separator_align_right .widget-arrow:before, .rtl .widget .wpb_heading.separator_align_right .widget-arrow:before {
    right: auto;
    left: auto; }
  .rtl .widget .widget-title.separator_align_right .widget-arrow:before, .rtl .widget .widgettitle.separator_align_right .widget-arrow:before, .rtl .widget .wpb_heading.separator_align_right .widget-arrow:before {
    left: 47px;
    right: auto; }
  .widget .widget-title.separator_align_right .widget-arrow:after, .widget .widgettitle.separator_align_right .widget-arrow:after, .widget .wpb_heading.separator_align_right .widget-arrow:after {
    left: 47px; }
  .rtl .widget .widget-title.separator_align_right .widget-arrow:after, .rtl .widget .widgettitle.separator_align_right .widget-arrow:after, .rtl .widget .wpb_heading.separator_align_right .widget-arrow:after {
    right: 47px;
    left: auto; }
  .rtl .widget .widget-title.separator_align_right .widget-arrow, .rtl .widget .widgettitle.separator_align_right .widget-arrow, .rtl .widget .wpb_heading.separator_align_right .widget-arrow {
    right: auto;
    left: auto; }
  .rtl .widget .widget-title.separator_align_right .widget-arrow, .rtl .widget .widgettitle.separator_align_right .widget-arrow, .rtl .widget .wpb_heading.separator_align_right .widget-arrow {
    left: 70px;
    right: auto; }
  .widget .widget-title.separator_align_left .widget-arrow, .widget .widgettitle.separator_align_left .widget-arrow, .widget .wpb_heading.separator_align_left .widget-arrow {
    left: 74px; }
  .widget .widget-title.separator_align_left .widget-arrow:before, .widget .widgettitle.separator_align_left .widget-arrow:before, .widget .wpb_heading.separator_align_left .widget-arrow:before {
    left: -70px; }
  .rtl .widget .widget-title.separator_align_left .widget-arrow:before, .rtl .widget .widgettitle.separator_align_left .widget-arrow:before, .rtl .widget .wpb_heading.separator_align_left .widget-arrow:before {
    right: -70px;
    left: auto; }
  .widget .widget-title.separator_align_left .widget-arrow:after, .widget .widgettitle.separator_align_left .widget-arrow:after, .widget .wpb_heading.separator_align_left .widget-arrow:after {
    left: 47px; }
  .rtl .widget .widget-title.separator_align_left .widget-arrow:after, .rtl .widget .widgettitle.separator_align_left .widget-arrow:after, .rtl .widget .wpb_heading.separator_align_left .widget-arrow:after {
    right: 47px;
    left: auto; }
  .rtl .widget .widget-title.separator_align_left .widget-arrow, .rtl .widget .widgettitle.separator_align_left .widget-arrow, .rtl .widget .wpb_heading.separator_align_left .widget-arrow {
    right: 74px;
    left: auto; }
  .widget .widget-content {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px; }
  .widget .widget-content:before, .widget .widget-content:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .widget .widget-content:after {
    clear: both; }
  .widget .widget-title-reversed {
    margin-right: 75px; }
  .rtl .widget .widget-title-reversed {
    margin-left: 75px;
    margin-right: 0; }
  .widget.nopadding .widget-content {
    padding: 0;
    margin: 0; }
/* Contextual variations ------------------------------------------------------------*/
.widget-theme {
  border-color: #e0e0e0;
  background: #D3AD47; }
  .widget-theme self.widget-title, .widget-theme .widgettitle, .widget-theme .wpb_heading {
    color: #fff;
    background-color: #D3AD47;
    border-color: #e0e0e0; }
  .widget-theme self.widget-title span:before, .widget-theme .widgettitle span:before, .widget-theme .wpb_heading span:before, .widget-theme self.widget-title span:after, .widget-theme .widgettitle span:after, .widget-theme .wpb_heading span:after {
    background: #fff; }
  .widget-theme self.widget-title + .widget-collapse .widget-content, .widget-theme .widgettitle + .widget-collapse .widget-content, .widget-theme .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #e0e0e0; }
  .widget-theme > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #e0e0e0; }

.widget-default {
  border-color: #e0e0e0;
  background: transparent; }
  .widget-default self.widget-title, .widget-default .widgettitle, .widget-default .wpb_heading {
    color: #000;
    background-color: transparent;
    border-color: #e0e0e0; }
  .widget-default self.widget-title span:before, .widget-default .widgettitle span:before, .widget-default .wpb_heading span:before, .widget-default self.widget-title span:after, .widget-default .widgettitle span:after, .widget-default .wpb_heading span:after {
    background: #fff; }
  .widget-default self.widget-title + .widget-collapse .widget-content, .widget-default .widgettitle + .widget-collapse .widget-content, .widget-default .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #e0e0e0; }
  .widget-default > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #e0e0e0; }

.widget-primary {
  border-color: #000;
  background: #000; }
  .widget-primary self.widget-title, .widget-primary .widgettitle, .widget-primary .wpb_heading {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .widget-primary self.widget-title span:before, .widget-primary .widgettitle span:before, .widget-primary .wpb_heading span:before, .widget-primary self.widget-title span:after, .widget-primary .widgettitle span:after, .widget-primary .wpb_heading span:after {
    background: #fff; }
  .widget-primary self.widget-title + .widget-collapse .widget-content, .widget-primary .widgettitle + .widget-collapse .widget-content, .widget-primary .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #000; }
  .widget-primary > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #000; }

.widget-success {
  border-color: #d6e9c6;
  background: #dff0d8; }
  .widget-success self.widget-title, .widget-success .widgettitle, .widget-success .wpb_heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
  .widget-success self.widget-title span:before, .widget-success .widgettitle span:before, .widget-success .wpb_heading span:before, .widget-success self.widget-title span:after, .widget-success .widgettitle span:after, .widget-success .wpb_heading span:after {
    background: #fff; }
  .widget-success self.widget-title + .widget-collapse .widget-content, .widget-success .widgettitle + .widget-collapse .widget-content, .widget-success .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #d6e9c6; }
  .widget-success > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #d6e9c6; }

.widget-info {
  border-color: #bce8f1;
  background: #d9edf7; }
  .widget-info self.widget-title, .widget-info .widgettitle, .widget-info .wpb_heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
  .widget-info self.widget-title span:before, .widget-info .widgettitle span:before, .widget-info .wpb_heading span:before, .widget-info self.widget-title span:after, .widget-info .widgettitle span:after, .widget-info .wpb_heading span:after {
    background: #fff; }
  .widget-info self.widget-title + .widget-collapse .widget-content, .widget-info .widgettitle + .widget-collapse .widget-content, .widget-info .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #bce8f1; }
  .widget-info > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #bce8f1; }

.widget-warning {
  border-color: #faebcc;
  background: #fcf8e3; }
  .widget-warning self.widget-title, .widget-warning .widgettitle, .widget-warning .wpb_heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
  .widget-warning self.widget-title span:before, .widget-warning .widgettitle span:before, .widget-warning .wpb_heading span:before, .widget-warning self.widget-title span:after, .widget-warning .widgettitle span:after, .widget-warning .wpb_heading span:after {
    background: #fff; }
  .widget-warning self.widget-title + .widget-collapse .widget-content, .widget-warning .widgettitle + .widget-collapse .widget-content, .widget-warning .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #faebcc; }
  .widget-warning > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #faebcc; }

.widget-danger {
  border-color: #ebccd1;
  background: #f2dede; }
  .widget-danger self.widget-title, .widget-danger .widgettitle, .widget-danger .wpb_heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
  .widget-danger self.widget-title span:before, .widget-danger .widgettitle span:before, .widget-danger .wpb_heading span:before, .widget-danger self.widget-title span:after, .widget-danger .widgettitle span:after, .widget-danger .wpb_heading span:after {
    background: #fff; }
  .widget-danger self.widget-title + .widget-collapse .widget-content, .widget-danger .widgettitle + .widget-collapse .widget-content, .widget-danger .wpb_heading + .widget-collapse .widget-content {
    border-top-color: #ebccd1; }
  .widget-danger > .widget-footer + .widget-collapse .widget-body {
    border-bottom-color: #ebccd1; }

.widget-highlighted {
  margin: 0 0 20px; }
  .widget-highlighted .widget-title, .widget-highlighted .widgettitle, .widget-highlighted .wpb_heading {
    margin: 0;
    color: #000;
    padding: 0;
    padding-right: 0;
    background: #efefef;
    font-weight: 900;
    font-size: 14px;
    border: none !important;
    text-transform: uppercase;
    overflow: hidden; }
  .rtl .widget-highlighted .widget-title, .rtl .widget-highlighted .widgettitle, .rtl .widget-highlighted .wpb_heading {
    padding-left: 0;
    padding-right: 0; }
  .widget-highlighted .widget-title > span, .widget-highlighted .widgettitle > span, .widget-highlighted .wpb_heading > span {
    position: relative;
    padding: 0 15px; }
  .widget-highlighted .widget-title > span:after, .widget-highlighted .widgettitle > span:after, .widget-highlighted .wpb_heading > span:after, .widget-highlighted .widget-title > span:before, .widget-highlighted .widgettitle > span:before, .widget-highlighted .wpb_heading > span:before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    width: 1000px;
    background: #e0e0e0; }
  .widget-highlighted .widget-title > span:after, .widget-highlighted .widgettitle > span:after, .widget-highlighted .wpb_heading > span:after {
    left: 100%; }
  .rtl .widget-highlighted .widget-title > span:after, .rtl .widget-highlighted .widgettitle > span:after, .rtl .widget-highlighted .wpb_heading > span:after {
    right: 100%;
    left: auto; }
  .widget-highlighted .widget-title > span:before, .widget-highlighted .widgettitle > span:before, .widget-highlighted .wpb_heading > span:before {
    right: 100%; }
  .rtl .widget-highlighted .widget-title > span:before, .rtl .widget-highlighted .widgettitle > span:before, .rtl .widget-highlighted .wpb_heading > span:before {
    left: 100%;
    right: auto; }
  .widget-highlighted .widget-title > span > span, .widget-highlighted .widgettitle > span > span, .widget-highlighted .wpb_heading > span > span {
    position: relative;
    padding: 7px 15px; }
  .widget-highlighted .widget-title > span > span:after, .widget-highlighted .widgettitle > span > span:after, .widget-highlighted .wpb_heading > span > span:after, .widget-highlighted .widget-title > span > span:before, .widget-highlighted .widgettitle > span > span:before, .widget-highlighted .wpb_heading > span > span:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: #D3AD47;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .widget-highlighted .widget-title > span > span:after, .widget-highlighted .widgettitle > span > span:after, .widget-highlighted .wpb_heading > span > span:after {
    left: 100%; }
  .widget-highlighted .widget-title > span > span:before, .widget-highlighted .widgettitle > span > span:before, .widget-highlighted .wpb_heading > span > span:before {
    right: 100%; }
  .widget-highlighted .widget-content {
    padding: 0;
    background: transparent; }
  .widget-highlighted .widget-content > div {
    background: transparent; }
  .widget-highlighted .widget-content > div > ul > li {
    border: none; }
  .widget-highlighted .widget-content > div > ul > li > a {
    padding: 17px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
    margin: 0; }
  .widget-highlighted .widget-content > div > ul > li > a:hover {
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .widget-highlighted .widget-content > div > ul > li:first-child a {
    border-top: none; }
/* Block inline style -----------------------------------------------------------*/
.widget-inline .icon {
  font-size: 35px; }
  .widget-inline .explain {
    font-size: 11px; }
  .widget-inline .widget-content {
    color: #fff;
    position: relative;
    text-transform: normal;
    font-weight: 600;
    font-size: 14px; }
  .widget-inline .input-group {
    width: 98%; }
/* Twitter -----------------------------------------------------------------------*/
.bwp-twitter-slider a {
  color: #D3AD47; }
/* Testimonial -----------------------------------------------------------------*/
.bwp-testimonial h5.testimonial-customer-name {
  font-size: 22px; }
  .bwp-testimonial .testimonial-image img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-testimonial.default {
    position: relative; }
  .bwp-testimonial.default:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-testimonial.default .slick-arrow {
    top: calc(50% - 25px); }
  .bwp-testimonial.default .slick-carousel {
    max-width: 1410px;
    margin: auto; }
  .bwp-testimonial.default .testimonial-title h2 {
    margin: 0 0 35px;
    font-size: 24px; }
  .bwp-testimonial.default .item {
    border: 2px solid #e0e0e0;
    padding: 30px 50px 40px; }
  .bwp-testimonial.default .testimonial-image {
    margin-right: 15px; }
  .rtl .bwp-testimonial.default .testimonial-image {
    margin-left: 15px;
    margin-right: 0; }
  .bwp-testimonial.default .testimonial-image img {
    width: 82px;
    height: 82px; }
  .bwp-testimonial.default .icon-quote {
    font-size: 30px;
    color: #D3AD47;
    margin-bottom: 10px;
    display: inline-block; }
  .bwp-testimonial.default .testimonial-info {
    display: flex;
    align-items: center; }
  .bwp-testimonial.default .post-excerpt {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px; }
  .bwp-testimonial.default .testimonial-job {
    font-size: 12px; }
  .bwp-testimonial.default .testimonial-customer-name {
    position: relative;
    margin: 0;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px; }
  .bwp-testimonial.default .star {
    margin-bottom: 7px; }
  .bwp-testimonial.default .star:before, .bwp-testimonial.default .star:after {
    display: inline-block;
    color: #ff9600;
    font-family: "icomoon";
    font-size: 12px;
    letter-spacing: 6px; }
  .bwp-testimonial.default .star:after {
    color: #868686; }
  .bwp-testimonial.default .star.star-1:before {
    content: "\e90c"; }
  .bwp-testimonial.default .star.star-1:after {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.default .star.star-2:before {
    content: "\e90c\e90c"; }
  .bwp-testimonial.default .star.star-2:after {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.default .star.star-3:before {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.default .star.star-3:after {
    content: "\e90c\e90c"; }
  .bwp-testimonial.default .star.star-4:before {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.default .star.star-4:after {
    content: "\e90c"; }
  .bwp-testimonial.default .star.star-5:before {
    content: "\e90c\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.default ul.slick-dots {
    text-align: right;
    margin-top: 20px; }
  .rtl .bwp-testimonial.default ul.slick-dots {
    text-align: left; }
  @media (max-width: 1199px) {
    .bwp-testimonial.default .testimonial-title h2 {
      margin: 0 0 25px; } }
  @media (max-width: 480px) {
    .bwp-testimonial.default .item {
      padding: 25px 15px 30px; }

    .bwp-testimonial.default .testimonial-title h2 {
      font-size: 20px; } }
  .bwp-testimonial.layout1 {
    text-align: center;
    position: relative; }
  .bwp-testimonial.layout1 .slick-arrow {
    top: calc(50% - 25px); }
  .bwp-testimonial.layout1 .slick-carousel {
    max-width: 1410px;
    margin: auto; }
  .bwp-testimonial.layout1 .testimonial-title {
    margin: 0 0 20px; }
  .bwp-testimonial.layout1 .testimonial-title h2 {
    margin: 0;
    font-size: 33px;
    color: #fff; }
  .bwp-testimonial.layout1 .subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 600; }
  .bwp-testimonial.layout1 .testimonial-image {
    margin: 0 0 5px; }
  .bwp-testimonial.layout1 .testimonial-image img {
    width: 62px;
    height: 62px;
    margin: auto; }
  .bwp-testimonial.layout1 .icon-quote {
    font-size: 30px;
    color: #D3AD47;
    margin-bottom: 10px;
    display: inline-block; }
  .bwp-testimonial.layout1 .post-excerpt {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
    margin-bottom: 15px; }
  .bwp-testimonial.layout1 .testimonial-job {
    font-size: 12px;
    color: #fff; }
  .bwp-testimonial.layout1 .testimonial-customer-name {
    position: relative;
    margin: 0;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    padding-top: 20px; }
  .bwp-testimonial.layout1 .testimonial-customer-name:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 70px;
    height: 1px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .bwp-testimonial.layout1 .star {
    margin-bottom: 5px; }
  .bwp-testimonial.layout1 .star:before, .bwp-testimonial.layout1 .star:after {
    display: inline-block;
    color: #ff9600;
    font-family: "icomoon";
    font-size: 12px;
    letter-spacing: 6px; }
  .bwp-testimonial.layout1 .star:after {
    color: #868686; }
  .bwp-testimonial.layout1 .star.star-1:before {
    content: "\e90c"; }
  .bwp-testimonial.layout1 .star.star-1:after {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-2:before {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-2:after {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-3:before {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-3:after {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-4:before {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout1 .star.star-4:after {
    content: "\e90c"; }
  .bwp-testimonial.layout1 .star.star-5:before {
    content: "\e90c\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout1 ul.slick-dots {
    margin-top: 20px; }
  .bwp-testimonial.layout1 ul.slick-dots li {
    margin: 0 7.5px; }
  .bwp-testimonial.layout1 ul.slick-dots li button {
    background: rgba(255, 255, 255, .3); }
  .bwp-testimonial.layout1 ul.slick-dots li.slick-active button {
    background: #D3AD47; }
  @media (max-width: 1199px) {
    .bwp-testimonial.layout1 .block_content {
      padding: 0 30px; } }
  @media (max-width: 480px) {
    .bwp-testimonial.layout1 .block_content {
      padding: 0 15px; }

    .bwp-testimonial.layout1 .testimonial-title h2 {
      font-size: 25px; } }
  .bwp-testimonial.layout2 {
    text-align: center;
    position: relative; }
  .bwp-testimonial.layout2:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-testimonial.layout2 .slick-arrow {
    top: calc(50% - 25px); }
  .bwp-testimonial.layout2 .slick-carousel {
    max-width: 1410px;
    margin: auto; }
  .bwp-testimonial.layout2 .testimonial-title h2 {
    margin: 0 0 35px;
    font-size: 24px; }
  .bwp-testimonial.layout2 .item {
    border: 1px solid #e6e6e6;
    padding: 25px 30px; }
  .bwp-testimonial.layout2 .testimonial-image {
    margin: 0 0 5px; }
  .bwp-testimonial.layout2 .testimonial-image img {
    width: 62px;
    height: 62px;
    margin: auto; }
  .bwp-testimonial.layout2 .icon-quote {
    font-size: 30px;
    color: #D3AD47;
    margin-bottom: 5px;
    display: inline-block; }
  .bwp-testimonial.layout2 .post-excerpt {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px; }
  .bwp-testimonial.layout2 .testimonial-job {
    font-size: 12px;
    margin: 0 0 3px; }
  .bwp-testimonial.layout2 .testimonial-customer-name {
    position: relative;
    margin: 0;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px; }
  .bwp-testimonial.layout2 .star {
    margin-bottom: 5px; }
  .bwp-testimonial.layout2 .star:before, .bwp-testimonial.layout2 .star:after {
    display: inline-block;
    color: #ff9600;
    font-family: "icomoon";
    font-size: 12px;
    letter-spacing: 6px; }
  .bwp-testimonial.layout2 .star:after {
    color: #868686; }
  .bwp-testimonial.layout2 .star.star-1:before {
    content: "\e90c"; }
  .bwp-testimonial.layout2 .star.star-1:after {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-2:before {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-2:after {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-3:before {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-3:after {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-4:before {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout2 .star.star-4:after {
    content: "\e90c"; }
  .bwp-testimonial.layout2 .star.star-5:before {
    content: "\e90c\e90c\e90c\e90c\e90c"; }
  @media (max-width: 1199px) {
    .bwp-testimonial.layout2 .testimonial-title h2 {
      margin: 0 0 25px; } }
  @media (max-width: 480px) {
    .bwp-testimonial.layout2 .item {
      padding: 25px 15px 30px; }

    .bwp-testimonial.layout2 .testimonial-title h2 {
      font-size: 20px; } }
  .bwp-testimonial.layout3 {
    text-align: center; }
  .bwp-testimonial.layout3 .testimonial-item h2 {
    margin: 15px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; }
  .bwp-testimonial.layout3 .icon-quote {
    font-size: 40px;
    color: #fff;
    margin: 0 0 25px;
    display: inline-block; }
  .bwp-testimonial.layout3 .post-excerpt {
    font-size: 22px;
    color: #fff;
    line-height: 28px;
    margin: 0 0 28px; }
  .bwp-testimonial.layout3 .testimonial-image {
    margin: 0 0 5px; }
  .bwp-testimonial.layout3 .testimonial-image img {
    width: 111px;
    height: 111px;
    margin: auto; }
  .bwp-testimonial.layout3 .star {
    margin-bottom: 20px; }
  .bwp-testimonial.layout3 .star:before, .bwp-testimonial.layout3 .star:after {
    display: inline-block;
    color: #fdb313;
    font-family: "icomoon";
    font-size: 15px;
    letter-spacing: 6px; }
  .bwp-testimonial.layout3 .star:after {
    color: #868686; }
  .bwp-testimonial.layout3 .star.star-1:before {
    content: "\e90c"; }
  .bwp-testimonial.layout3 .star.star-1:after {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-2:before {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-2:after {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-3:before {
    content: "\e90c\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-3:after {
    content: "\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-4:before {
    content: "\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout3 .star.star-4:after {
    content: "\e90c"; }
  .bwp-testimonial.layout3 .star.star-5:before {
    content: "\e90c\e90c\e90c\e90c\e90c"; }
  .bwp-testimonial.layout3 ul.slick-dots {
    margin-top: 7px; }
  .bwp-testimonial.layout3 ul.slick-dots li {
    margin: 0 7.5px; }
  .bwp-testimonial.layout3 ul.slick-dots li button {
    background: rgba(255, 255, 255, .3); }
  .bwp-testimonial.layout3 ul.slick-dots li.slick-active button {
    background: #fff; }
/* Bin Brand -----------------------------------------------------------------*/
@media (max-width: 1199px) {
    .bwp-brand .slick-list {
      margin: 0 -7.5px; }
      .bwp-brand .slick-list .item {
        padding: 0 7.5px; } }
  .bwp-brand .item .item-image {
    display: flex;
    justify-content: center; }
  .bwp-brand.default .item-image {
    border: 1px solid #e0e0e0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .bwp-brand.default .item-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .bwp-brand.default .item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-brand.default2 {
    background: #fff;
    border: 1px solid #e0e0e0; }
  .bwp-brand.default2:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-brand.default2 .slick-list {
    margin: 0 -1px; }
  .bwp-brand.default2 .item {
    padding: 0; }
  .bwp-brand.default2 .item-image {
    padding: 45px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0; }
  .rtl .bwp-brand.default2 .item-image {
    border-left: 1px solid #e0e0e0;
    border-right: 0; }
  .bwp-brand.default2 .item-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    max-height: 155px; }
  .bwp-brand.default2 .item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-brand.default2 .slick-arrow {
    background: transparent;
    border: 0;
    font-size: 20px; }
  .bwp-brand.default2 .slick-arrow:hover {
    color: #D3AD47; }
  .bwp-brand.default2 .slick-arrow.fa-angle-left {
    left: -30px; }
  .rtl .bwp-brand.default2 .slick-arrow.fa-angle-left {
    right: -30px;
    left: auto; }
  .bwp-brand.default2 .slick-arrow.fa-angle-right {
    right: -30px; }
  .rtl .bwp-brand.default2 .slick-arrow.fa-angle-right {
    left: -30px;
    right: auto; }
  @media (max-width: 1440px) {
      .bwp-brand.default2 .slick-arrow.fa-angle-left {
        left: -10px; }
        .rtl .bwp-brand.default2 .slick-arrow.fa-angle-left {
          right: -10px;
          left: auto; }
      .bwp-brand.default2 .slick-arrow.fa-angle-right {
        right: -10px; }
        .rtl .bwp-brand.default2 .slick-arrow.fa-angle-right {
          left: -10px;
          right: auto; } }
/* bwp client -----------------------------------------------------------------*/
.bwp-client .item .item-image {
  display: flex;
  justify-content: center; }
  .bwp-client .item-image a img {
    filter: grayscale(100%); }
  .bwp-client .item-image a:hover img {
    filter: grayscale(0%); }
  .bwp-client.default .item-image {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .bwp-client.default .item-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .bwp-client.default .item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-client.slider {
    background: #fff;
    border: 1px solid #dedede; }
  .bwp-client.slider .slick-list {
    margin: 0 -1px; }
  .bwp-client.slider .item {
    padding: 5px 0;
    border-right: 1px solid #dedede; }
  .rtl .bwp-client.slider .item {
    border-left: 1px solid #dedede;
    border-right: 0; }
  .bwp-client.slider .item-image {
    min-height: 200px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  .bwp-client.slider .item-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .bwp-client.slider .item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-client.slider .slick-arrow {
    background: #D3AD47; }
  .bwp-client.slider .slick-arrow:hover {
    background: #025029; }
  .bwp-client.slider .slick-arrow.fa-angle-left {
    left: -12.5px; }
  .rtl .bwp-client.slider .slick-arrow.fa-angle-left {
    right: -12.5px;
    left: auto; }
  .bwp-client.slider .slick-arrow.fa-angle-right {
    right: -12.5px; }
  .rtl .bwp-client.slider .slick-arrow.fa-angle-right {
    left: -12.5px;
    right: auto; }
  .bwp-client.slider2 .item-image {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .bwp-client.slider2 .item-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .bwp-client.slider2 .item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
/* CTA -----------------------------------------------------------------*/
.bwp-cta.default {
  text-align: center;
  border: 1px solid rgba(228, 228, 228, 0.5);
  padding: 30px 25px; }
  .bwp-cta.default:hover .box-image img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-cta.default .count-cta {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    margin-top: 25px; }
  .bwp-cta.default .title-cta {
    font-size: 18px;
    margin-top: 5px; }
/* Block style in footer ------------------------------------------------------------*/
.bwp-footer .widget {
  border: none;
  padding: 0;
  background: transparent;
  margin: 0 0 40px 0; }
  .bwp-footer .widget .widget-title, .bwp-footer .widget .widgettitle, .bwp-footer .widget .wpb_heading {
    color: #fff;
    text-transform: normal;
    margin: 40px 0 17px;
    padding: 0;
    font-size: 16px;
    text-align: left;
    border: none; }
  .rtl .bwp-footer .widget .widget-title, .rtl .bwp-footer .widget .widgettitle, .rtl .bwp-footer .widget .wpb_heading {
    text-align: right; }
  .bwp-footer .widget .widget-title > span, .bwp-footer .widget .widgettitle > span, .bwp-footer .widget .wpb_heading > span {
    position: relative;
    padding: 0 10px; }
  .bwp-footer .widget .widget-title > span:after, .bwp-footer .widget .widgettitle > span:after, .bwp-footer .widget .wpb_heading > span:after, .bwp-footer .widget .widget-title > span:before, .bwp-footer .widget .widgettitle > span:before, .bwp-footer .widget .wpb_heading > span:before {
    content: "";
    height: 0;
    width: 0;
    background: none; }
  .bwp-footer .widget .widget-title > span > span, .bwp-footer .widget .widgettitle > span > span, .bwp-footer .widget .wpb_heading > span > span {
    position: relative;
    padding: 0 10px; }
  .bwp-footer .widget .widget-title > span > span:after, .bwp-footer .widget .widgettitle > span > span:after, .bwp-footer .widget .wpb_heading > span > span:after, .bwp-footer .widget .widget-title > span > span:before, .bwp-footer .widget .widgettitle > span > span:before, .bwp-footer .widget .wpb_heading > span > span:before {
    content: "";
    height: 0;
    width: 0;
    background: none; }
  .bwp-footer .widget .widget-content {
    border: none;
    padding: 0; }
/************************************************************************************************
 WIDGET SEARCH
 *************************************************************************************************/
.widget_search .container {
  padding: 0; }
  .widget_search .container input[type="text"] {
    border: 0;
    padding: 0; }
  .widget_search .form-content {
    position: relative;
    overflow: hidden; }
  .widget_search .form-content input[type="text"] {
    line-height: 45px;
    height: 45px;
    border: 1px solid #a3a3a3;
    padding: 0 70px 0 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: 100%; }
  .rtl .widget_search .form-content input[type="text"] {
    padding: 0 15px 0 70px; }
  .widget_search .form-content #searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px; }
  .rtl .widget_search .form-content #searchsubmit {
    left: 0;
    right: auto; }
  .widget_search .form-content #searchsubmit:hover i {
    color: #D3AD47; }
  .widget_search .search-from .btn, .widget_search .search-from .clear-all {
    background: transparent;
    border: 0;
    line-height: 0; }
/************************************************************************************************
 Bingo Filter Hompage
 *************************************************************************************************/
@media (max-width: 1199px) {
    .bwp-filter-homepage .slick-list {
      margin: 0 -7.5px; }
      .bwp-filter-homepage .slick-list .item-product {
        padding: 0 7.5px !important; } }
  .bwp-filter-homepage .bwp-filter-heading {
    display: inline-block;
    width: 100%;
    vertical-align: top; }
  @media (max-width: 991px) {
    .bwp-filter-homepage .bwp-filter-heading {
      margin-bottom: 30px; } }
  .bwp-filter-homepage .bwp-filter-heading ul {
    list-style-type: none;
    right: 0;
    left: auto;
    padding: 0; }
  .bwp-filter-homepage .bwp-filter-heading ul li {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-filter-homepage .bwp-filter-heading .category-nav {
    display: inline-block;
    text-align: center; }
  .bwp-filter-homepage .bwp-filter-heading ul.filter-category {
    padding: 0; }
  .bwp-filter-homepage .bwp-filter-heading ul.filter-category li {
    display: inline-block; }
  .bwp-filter-homepage .bwp-filter-heading ul.filter-category li:hover, .bwp-filter-homepage .bwp-filter-heading ul.filter-category li.active {
    cursor: pointer; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle {
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    padding: 0 15px 0 35px;
    line-height: 32px;
    border: 2px solid #000;
    position: relative;
    top: 20px; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:before {
    position: absolute;
    content: "\f136";
    font-family: Material;
    font-size: 0;
    color: #e42234;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    left: 15px;
    font-size: 16px;
    top: calc(50% - 8px);
    line-height: 1; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle i {
    font-size: 16px;
    position: absolute;
    top: calc(50% - 8px);
    left: 15px; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle.active i {
    display: none; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle.active:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .bwp-filter-homepage .bwp-filter-heading .bwp-filter-toggle:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by.open > button {
    color: #D3AD47; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by.open > button:before {
    opacity: 1;
    width: 100%; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by.open > button .caret:before {
    content: "\32";
    font-family: ElegantIcons; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by > .dropdown-menu {
    top: calc(100% + 5px);
    padding: 10px 20px;
    line-height: 28px;
    min-width: 200px; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by > button {
    text-transform: uppercase;
    background: transparent;
    border: 0;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    padding: 0; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by > button:focus {
    outline: none; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by > button .caret:before {
    content: "\33";
    font-family: ElegantIcons;
    font-size: 22px;
    font-size: 16px;
    position: relative;
    top: -3px; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by > button:hover {
    color: #D3AD47; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by ul li {
    cursor: pointer; }
  .bwp-filter-homepage .bwp-filter-heading .filter-order-by ul li:hover {
    color: #D3AD47; }
  .bwp-filter-homepage .bwp-filter-attribute {
    display: none;
    width: 100%;
    margin-bottom: 15px; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 30px; }
  @media (max-width: 767px) {
      .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner {
        display: inline-block;
        padding-top: 0; } }
  @media (min-width: 768px) {
      .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner {
        padding: 37px 25px 30px;
        border: 1px solid #e0e0e0;
        margin-bottom: 60px; } }
  @media (max-width: 991px) and (min-width: 768px) {
      .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner {
        padding-top: 20px;
        padding-bottom: 30px; } }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div {
    flex: 1;
    padding: 0 15px; }
  @media (max-width: 991px) {
        .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div {
          flex: 0 0 50%;
          margin-bottom: 30px; } }
  @media (max-width: 767px) {
        .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div {
          width: 100%;
          padding: 0 !important;
          margin-bottom: 25px;
          display: inline-block; } }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul {
    list-style: none;
    padding: 0; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul li {
    float: left;
    width: 50%;
    padding: 5px 0; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul li span {
    color: #868686;
    cursor: pointer; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul li span:hover {
    color: #000; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li span {
    position: relative; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li span:before {
      content: "";
      width: 17px;
      height: 17px;
      cursor: pointer;
      overflow: visible;
      display: inline-block;
      vertical-align: middle;
      border: 1px solid #ccc;
      margin-right: 10px;
      position: relative;
      top: -2px; }
      .rtl .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li span:before {
        margin-left: 10px;
        margin-right: 0; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li.active span {
    color: #000; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li.active span:before {
      border-color: #000; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div ul:not(.pa_color) li.active span:after {
      content: "\f00c";
      font-family: FontAwesome;
      position: absolute;
      top: 4px;
      left: 4px;
      font-size: 11px;
      color: #000; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color {
    order: 1; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li .color {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
    padding: 0;
    -webkit-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
    .rtl .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li .color {
      margin-left: 10px;
      margin-right: 0; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li .color:before {
      content: "";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      top: calc(50% - 11px);
      left: calc(50% - 11px);
      position: absolute;
      border: 1px solid #ccc; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li.active span {
    color: #000; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li.active .color:before {
      border-color: #000; }
    .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color .pa_color li.active .color:after {
      display: none; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color li[data-value="white"] .color {
    border: 1px solid #e0e0e0; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color li[data-value="white"].active .color:before {
    top: -2px;
    left: 5.5px;
    color: #D3AD47; }
    .rtl .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-color li[data-value="white"].active .color:before {
      right: 5.5px;
      left: auto; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price {
    order: 3; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price h2 {
    margin-bottom: 45px; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .bwp_slider_price {
    margin: 0;
    background: transparent;
    -webkit-box-shadow: inset 0px 1px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 1px 3px 3px rgba(0, 0, 0, 0.2);
    height: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: calc(100% - 20px); }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .bwp_slider_price:after, .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .bwp_slider_price:before {
    display: none; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .bwp_slider_price .ui-slider-handle {
    width: 10px;
    height: 14px;
    border: 1px solid #D3AD47;
    background: #D3AD47;
    top: -5px; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .bwp_slider_price .ui-slider-range {
    height: 5px;
    background: #D3AD47;
    position: absolute;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
    width: calc(100% -50px) !important; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .price-input {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-price .price-input > span:not(.text-price-filter) {
    color: #868686;
    font-weight: 400; }
  .bwp-filter-homepage .bwp-filter-attribute .bwp-filter-attribute-inner > div.bwp-filter-brand {
    order: 2; }
  .bwp-filter-homepage .bwp-filter-attribute .clear_all span {
    background: #D3AD47;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 12px;
    display: inline-block; }
  .bwp-filter-homepage .bwp-filter-attribute .clear_all span:hover {
    cursor: pointer;
    background: #000; }
  .bwp-filter-homepage .bwp-filter-attribute h2 {
    color: #000;
    padding: 0 0 15px;
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    margin: 0px 0 40px 0;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid #d7d7d7;
    letter-spacing: 3.2px; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading {
    overflow: unset; }
  .bwp-filter-homepage.filter-default .bwp-filter-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap; }
  .bwp-filter-homepage.filter-default .bwp-filter-heading ul li {
    font-size: 20px;
    margin: 0 25px;
    position: relative;
    padding: 15px 0;
    font-weight: 500; }
  .bwp-filter-homepage.filter-default .bwp-filter-heading ul li:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .bwp-filter-homepage.filter-default .bwp-filter-heading ul li .item-count {
    position: absolute;
    top: 0;
    font-size: 14px;
    right: -10px; }
  .rtl .bwp-filter-homepage.filter-default .bwp-filter-heading ul li .item-count {
    left: -10px;
    right: auto; }
  .bwp-filter-homepage.filter-default .bwp-filter-heading ul li.active, .bwp-filter-homepage.filter-default .bwp-filter-heading ul li:hover {
    color: #000; }
  .bwp-filter-homepage.filter-default .bwp-filter-heading ul li.active:before, .bwp-filter-homepage.filter-default .bwp-filter-heading ul li:hover:before {
    width: 100%; }
  @media (max-width: 991px) {
          .bwp-filter-homepage.filter-default .bwp-filter-heading ul li {
            margin: 0 15px;
            font-size: 16px; } }
  @media (max-width: 991px) {
      .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-content {
        order: 2;
        margin-top: 10px; }
        .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-content a {
          top: 0; } }
  @media (max-width: 767px) {
      .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-content {
        flex: 0 0 100%;
        margin-top: 30px; }
      .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-category {
        flex: 0 0 100%;
        text-align: center; } }
  @media (max-width: 480px) {
      .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-content a {
        width: 100%; }
      .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-category li {
        margin: 0 0 5px;
        width: 100%;
        padding: 10px;
        background: #f5f5f5; }
        .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-category li:before {
          display: none; }
        .bwp-filter-homepage.filter-default .bwp-filter-heading .filter-category li .item-count {
          display: inline-block;
          font-size: 12px;
          position: relative;
          top: -10px;
          right: 0; } }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore {
    margin-top: 30px;
    line-height: 40px;
    height: 44px;
    padding: 0 30px;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    letter-spacing: 0;
    border: 2px solid #000; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore span, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore span {
    padding: 0; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore span:before, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore span:before {
    display: none; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore i, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore i {
    line-height: 1;
    width: 20px;
    height: 15px;
    display: none; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore i:before, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore i:before {
    position: relative;
    left: 1px; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore:hover i, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore:hover i {
    color: #D3AD47 !important; }
  .bwp-filter-homepage.filter-default .products_loadmore .btn.loadmore.loading i, .bwp-filter-homepage.filter-default .products_loadmore .clear-all.loadmore.loading i {
    display: block; }
  @media (max-width: 1199px) {
    .bwp-filter-homepage.tab-category-default .content {
      margin: 0 -7.5px !important; }
      .bwp-filter-homepage.tab-category-default .content .item-product {
        padding: 0 7.5px !important; } }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading {
    margin-bottom: 35px; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category {
    text-align: center; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    margin: 0 5px;
    padding: 10px 30px;
    position: relative;
    background: #dedede; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li a {
    color: #000; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li.active {
    background: #D3AD47;
    color: #fff;
    border-color: #000;
    position: relative;
    display: inline-block; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li.active:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #D3AD47;
    bottom: -3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: calc(50% - 5px); }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li.active a {
    color: #fff; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li:hover {
    color: #fff;
    background: #D3AD47; }
  .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li:hover a {
    color: #fff; }
  @media (max-width: 767px) {
          .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li {
            display: block;
            margin: 0 0 15px; }
            .bwp-filter-homepage.tab-category-default .bwp-filter-heading .filter-category li.active {
              display: block; } }
  .bwp-filter-homepage.tab-category-default .item {
    display: flex;
    width: 100%; }
  .bwp-filter-homepage.tab-category-default .item .item-product {
    padding: 0 15px;
    position: relative; }
  .bwp-filter-homepage.tab-category-default .item .content-product8 {
    display: flex;
    padding: 25px;
    background: #fff;
    position: relative;
    margin: 0 0 30px; }
  @media (max-width: 1199px) {
        .bwp-filter-homepage.tab-category-default .item .content-product8 {
          text-align: center;
          display: block;
          margin: 0 0 15px; }
          .bwp-filter-homepage.tab-category-default .item .content-product8 .products-content {
            width: 100% !important; }
          .bwp-filter-homepage.tab-category-default .item .content-product8 .products-thumb {
            width: 50% !important;
            margin: 0 !important; }
          .bwp-filter-homepage.tab-category-default .item .content-product8 .brands-single {
            justify-content: center; }
          .bwp-filter-homepage.tab-category-default .item .content-product8 .content-button {
            justify-content: center; } }
  @media (max-width: 1199px) and (max-width: 991px) {
              .bwp-filter-homepage.tab-category-default .item .content-product8 .products-thumb {
                width: 100% !important; } }
  @media (max-width: 991px) {
        .bwp-filter-homepage.tab-category-default .item .content-product8 {
          padding: 50px 25px 25px; } }
  .bwp-filter-homepage.tab-category-default .item .btn-atc {
    margin-top: 0 !important; }
  .bwp-filter-homepage.tab-category-default .item .number {
    position: absolute;
    right: 50px;
    width: 25px;
    height: 30px;
    line-height: 20px;
    background: #ff9600;
    text-align: center;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    z-index: 15;
    clip-path: polygon(100% 0, 100% 100%, 50% 62%, 0 100%, 0 0); }
  .rtl .bwp-filter-homepage.tab-category-default .item .number {
    left: 50px;
    right: auto; }
  @media (max-width: 1199px) {
        .bwp-filter-homepage.tab-category-default .item .number {
          right: 35px; }
          .rtl .bwp-filter-homepage.tab-category-default .item .number {
            left: 35px;
            right: auto; } }
  .bwp-filter-homepage.tab-category-default .item.two {
    display: flex; }
  .bwp-filter-homepage.tab-category-default .item.two .item-product {
    width: 50%;
    flex: 50%; }
  .bwp-filter-homepage.tab-category-default .item.two .brands-single {
    margin: 0 0 10px; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button {
    display: flex; }
  .bwp-filter-homepage.tab-category-default .item.two .product-title {
    font-weight: 600 !important;
    font-size: 18px !important; }
  .bwp-filter-homepage.tab-category-default .item.two .woosw-wishlist {
    margin-right: 5px; }
  .rtl .bwp-filter-homepage.tab-category-default .item.two .woosw-wishlist {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-filter-homepage.tab-category-default .item.two .price {
    font-weight: 600 !important;
    margin-bottom: 20px !important; }
  .bwp-filter-homepage.tab-category-default .item.two .products-thumb {
    margin-right: 30px;
    width: 45%; }
  .rtl .bwp-filter-homepage.tab-category-default .item.two .products-thumb {
    margin-left: 30px;
    margin-right: 0; }
  @media (max-width: 767px) {
          .bwp-filter-homepage.tab-category-default .item.two .products-thumb {
            z-index: 16; } }
  .bwp-filter-homepage.tab-category-default .item.two .product-quickview {
    display: none !important; }
  .bwp-filter-homepage.tab-category-default .item.two .products-content {
    margin-top: 25px;
    width: 55%; }
  .bwp-filter-homepage.tab-category-default .item.two .product-button {
    display: flex; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview {
    text-align: center;
    background: #fff;
    font-size: 0;
    display: block;
    white-space: nowrap; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview > a {
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    outline: unset;
    border: 1px solid #040404; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview > a > i {
    font-size: 20px;
    color: #000;
    line-height: 40px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview:hover > a {
    background: #D3AD47;
    border-color: #D3AD47; }
    .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview:hover > a > i {
      color: #fff; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview:hover .loading:before {
    color: #fff; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview .loading i {
    display: none; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview .loading:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 8px; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .product-quickview .loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn {
    font-size: 0;
    background: #fff;
    text-align: center;
    position: relative;
    white-space: nowrap;
    margin-top: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #040404;
    cursor: pointer; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 20px;
    line-height: 40px;
    color: #000;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn.woosw-adding:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 7px;
    left: 0; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn.woosw-adding:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn.woosw-added:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 20px;
    line-height: 40px;
    margin: 0;
    color: #D3AD47;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    position: relative; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosw-btn:hover:before {
    color: #fff; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosc-btn {
    text-align: center;
    background: #fff;
    font-size: 0;
    display: block;
    white-space: nowrap;
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #040404;
    cursor: pointer; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosc-btn:before {
    font-size: 20px;
    color: #000;
    line-height: 40px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    content: "\e909";
    font-family: icomoon;
    margin: 0; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosc-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .bwp-filter-homepage.tab-category-default .item.two .content-button .woosc-btn:hover:before {
    color: #fff; }
  @media (max-width: 991px) {
            .bwp-filter-homepage.tab-category-default .item.two .content-button .woosc-btn {
              display: none; } }
  .bwp-filter-homepage.tab-category-default .item.two .btn-atc {
    margin-right: 5px; }
  .rtl .bwp-filter-homepage.tab-category-default .item.two .btn-atc {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-filter-homepage.tab-category-default .item.two .btn-atc a {
    line-height: 38px !important;
    padding: 0 15px !important;
    min-width: 145px !important; }
  .bwp-filter-homepage.tab-category-default .item.two .btn-atc a:hover:before {
    font-size: 20px !important; }
  @media (max-width: 767px) {
        .bwp-filter-homepage.tab-category-default .item.two {
          display: block; }
          .bwp-filter-homepage.tab-category-default .item.two .item-product {
            width: 100%; } }
  .bwp-filter-homepage.tab-category-default .item.three {
    display: flex; }
  .bwp-filter-homepage.tab-category-default .item.three .products-thumb {
    margin-right: 25px;
    width: 50%; }
  .rtl .bwp-filter-homepage.tab-category-default .item.three .products-thumb {
    margin-left: 25px;
    margin-right: 0; }
  @media (max-width: 1199px) {
          .bwp-filter-homepage.tab-category-default .item.three .products-thumb {
            width: 65% !important; } }
  @media (max-width: 991px) {
          .bwp-filter-homepage.tab-category-default .item.three .products-thumb {
            width: 100% !important;
            z-index: 16; } }
  .bwp-filter-homepage.tab-category-default .item.three .products-content {
    width: 50%; }
  .bwp-filter-homepage.tab-category-default .item.three .item-product {
    width: 33.33%;
    flex: 33.33%; }
  .bwp-filter-homepage.tab-category-default .item.three .price {
    margin-bottom: 15px !important; }
  .bwp-filter-homepage.tab-category-default .item.three .btn-atc a {
    min-width: 145px !important; }
  .bwp-filter-homepage.tab-category-default .item.three .product-button {
    display: none; }
  @media (max-width: 767px) {
        .bwp-filter-homepage.tab-category-default .item.three {
          display: block; }
          .bwp-filter-homepage.tab-category-default .item.three .item-product {
            width: 100%; } }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading {
    margin-bottom: 45px; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category {
    text-align: center; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    margin: 0 5px;
    text-transform: uppercase;
    padding: 5px 25px;
    position: relative; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li a {
    color: #000; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li.active {
    background: #de2828;
    color: #fff;
    border-color: #000;
    display: inline-block; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li.active a {
    color: #fff; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li:hover {
    color: #fff;
    background: #de2828; }
  .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li:hover a {
    color: #fff; }
  @media (max-width: 991px) {
          .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li {
            font-size: 18px;
            padding: 5px 10px; } }
  @media (max-width: 767px) {
          .bwp-filter-homepage.tab_category_slider .bwp-filter-heading .filter-category li {
            display: block;
            width: 100%;
            margin: 0 0 5px;
            text-transform: initial; } }
  .bwp-filter-homepage.tab_category_slider_2 .title-block h2 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600; }
  .bwp-filter-homepage.tab_category_slider_2 .title-block h2:after {
    display: inline-block;
    content: ".";
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading {
    margin-bottom: 30px; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .category-tab-nav {
    display: flex;
    justify-content: center; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li {
    display: inline-block;
    font-weight: 600;
    font-size: 24px;
    margin-right: 30px;
    position: relative; }
  .rtl .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li {
    margin-left: 30px;
    margin-right: 0; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li a {
    color: #000; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li.active {
    color: #D3AD47;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 5px 25px;
    border: 2px dashed #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li.active a {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li.active:before {
    width: 100%; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li:hover {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li:hover a {
    color: #D3AD47; }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li {
      font-size: 16px;
      margin-right: 15px; }
      .rtl .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li {
        margin-left: 15px;
        margin-right: 0; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .category-tab-nav {
        flex-wrap: wrap;
        justify-content: center; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .category-tab-nav > * {
        width: 100%; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .title-block {
        text-align: center;
        margin-bottom: 10px; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category {
        text-align: center; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li {
      font-size: 14px;
      margin: 0 0 5px;
      text-transform: uppercase;
      width: 100%;
      padding: 0;
      line-height: 30px;
      border: 1px solid #e0e0e0; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .filter-category li:before {
        display: none; }
      .bwp-filter-homepage.tab_category_slider_2 .bwp-filter-heading .category-tab-nav {
        border: 0; } }
  .bwp-filter-homepage.tab_category_slider_3 .slick-list {
    margin: 0 -30px !important; }
  .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
    padding: 0 30px !important;
    border-right: 1px solid #e0e0e0; }
  .rtl .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
    border-left: 1px solid #e0e0e0;
    border-right: 0; }
  @media (max-width: 1199px) {
    .bwp-filter-homepage.tab_category_slider_3 .slick-list {
      margin: 0 -15px !important; }
      .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
        padding: 0 15px !important; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
      border-right: 0; }
      .rtl .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
        border-left: 0;
        border-right: 0; } }
  @media (max-width: 480px) {
    .bwp-filter-homepage.tab_category_slider_3 .slick-list {
      margin: 0 -7.5px !important; }
      .bwp-filter-homepage.tab_category_slider_3 .slick-list .item-product {
        padding: 0 7.5px !important; } }
  .bwp-filter-homepage.tab_category_slider_3 .product-wapper {
    margin: 0 !important; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading {
    margin-bottom: 30px; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .category-tab-nav {
    display: flex;
    justify-content: center; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li {
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    padding-bottom: 2px;
    padding: 3px 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li a {
    color: #868686; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li.active {
    color: #D3AD47;
    border: 1px solid #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li.active a {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li:hover {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li:hover a {
    color: #D3AD47; }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .category-tab-nav {
      flex-wrap: wrap;
      justify-content: center; }
      .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .category-tab-nav > * {
        width: 100%; }
      .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .title-block {
        text-align: center;
        margin-bottom: 10px; }
      .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category {
        text-align: center; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading {
      padding: 0 15px; }
      .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li {
        font-size: 14px;
        margin: 0 0 5px;
        text-transform: uppercase;
        width: 100%;
        padding: 0;
        line-height: 30px;
        border: 1px solid #e0e0e0; }
        .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .filter-category li:before {
          display: none; }
      .bwp-filter-homepage.tab_category_slider_3 .bwp-filter-heading .category-tab-nav {
        border: 0; } }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading {
    margin-bottom: 25px; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .category-tab-nav {
    display: flex;
    justify-content: center; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li {
    margin-right: 10px; }
  .rtl .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li.active a {
    border-color: #D3AD47;
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    border: 1px dashed transparent;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 0 15px;
    color: #868686; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li a:hover {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.tab_category_slider_4 .slick-slide {
    padding: 0 7.5px; }
  .bwp-filter-homepage.tab_category_slider_4 .slick-list {
    margin: 0 -7.5px; }
  .bwp-filter-homepage.tab_category_slider_4 .product-wapper {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden; }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li {
      font-size: 16px;
      margin-right: 15px; }
      .rtl .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li {
        margin-left: 15px;
        margin-right: 0; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .category-tab-nav {
        flex-wrap: wrap;
        justify-content: center; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .category-tab-nav > * {
        width: 100%; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .title-block {
        text-align: center;
        margin-bottom: 10px; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category {
        text-align: center; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li {
      font-size: 14px;
      margin: 0 0 5px;
      text-transform: uppercase;
      width: 100%;
      padding: 0; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li a {
        border: 1px dashed #e0e0e0;
        line-height: 30px;
        width: 100%; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .filter-category li:before {
        display: none; }
      .bwp-filter-homepage.tab_category_slider_4 .bwp-filter-heading .category-tab-nav {
        border: 0; } }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading {
    text-align: center;
    margin-bottom: 40px; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li {
    font-size: 18px;
    font-weight: 500;
    margin: 0 12px; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li a {
    color: #868686;
    display: inline-block;
    position: relative; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li a:hover {
    color: #000; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li.active a {
    color: #000; }
  .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading ul li.active a:before {
    width: 100%; }
  .bwp-filter-homepage.tab_category_slider_5 .products-list.grid .product-wapper.content-product5 .products-thumb {
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .bwp-filter-homepage.tab_category_slider_5 .products-list.grid .product-wapper.content-product5 .content-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .bwp-filter-homepage.tab_category_slider_5 .products-list.grid .product-wapper.content-product5 .content-top .cat-products {
    order: 1; }
  .bwp-filter-homepage.tab_category_slider_5 .products-list.grid .product-wapper.content-product5 .content-top .rating {
    order: 2; }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading .filter-category li {
      font-size: 14px;
      margin: 0 0 5px;
      text-transform: uppercase;
      width: 100%;
      padding: 0;
      line-height: 30px;
      background: #f5f5f5; }
      .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading .filter-category li a {
        width: 100%; }
        .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading .filter-category li a:before {
          display: none; }
      .bwp-filter-homepage.tab_category_slider_5 .bwp-filter-heading .category-tab-nav {
        border: 0; } }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading {
    margin-bottom: 60px;
    padding: 0 15px; }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category {
    text-align: center; }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li {
    margin: 0 5px; }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li a {
    font-size: 20px;
    color: #868686;
    display: inline-block;
    border: 1px solid #868686;
    padding: 8px 70px; }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li a:hover {
    border-color: #000;
    color: #000; }
  .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li.active a {
    border-color: #000;
    color: #000; }
  .bwp-filter-homepage.tab_category_scroll .product-content .item-product {
    padding: 0 15px; }
  .bwp-filter-homepage.tab_category_scroll .content-scroll-list {
    overflow: hidden;
    padding-right: 215px; }
  .rtl .bwp-filter-homepage.tab_category_scroll .content-scroll-list {
    padding-left: 215px;
    padding-right: 0; }
  @media (max-width: 1199px) {
      .bwp-filter-homepage.tab_category_scroll .content-scroll-list {
        padding-right: 0; }
        .rtl .bwp-filter-homepage.tab_category_scroll .content-scroll-list {
          padding-left: 0;
          padding-right: 0; } }
  .bwp-filter-homepage.tab_category_scroll .scrollbar {
    margin: 50px 15px 0;
    height: 1px;
    background: #dfdfdf;
    line-height: 0;
    cursor: pointer; }
  .bwp-filter-homepage.tab_category_scroll .scrollbar .handle {
    background: #000;
    height: 3px;
    position: relative;
    top: -1px; }
  .bwp-filter-homepage.tab_category_scroll .scrollbar .mousearea {
    position: absolute;
    top: -37px;
    left: 0;
    width: 100%;
    height: 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    line-height: 20px; }
  .bwp-filter-homepage.tab_category_scroll .scrollbar .mousearea i {
    font-size: 20px;
    line-height: 20px;
    position: relative;
    top: 3px;
    margin-left: 10px; }
  .rtl .bwp-filter-homepage.tab_category_scroll .scrollbar .mousearea i {
    margin-right: 10px;
    margin-left: 0; }
  .bwp-filter-homepage.tab_category_scroll .scrollbar .mousearea:hover {
    color: #D3AD47; }
  .bwp-filter-homepage.tab_category_scroll .controls button {
    position: absolute;
    top: 33%;
    width: 33px;
    height: 33px;
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #000; }
  .bwp-filter-homepage.tab_category_scroll .controls button.prev {
    left: 0; }
  .rtl .bwp-filter-homepage.tab_category_scroll .controls button.prev {
    right: 0;
    left: auto; }
  .bwp-filter-homepage.tab_category_scroll .controls button.next {
    right: 0; }
  .rtl .bwp-filter-homepage.tab_category_scroll .controls button.next {
    left: 0;
    right: auto; }
  .bwp-filter-homepage.tab_category_scroll .controls button.disabled {
    cursor: no-drop;
    opacity: 1; }
  .bwp-filter-homepage.tab_category_scroll .controls button:hover {
    background: #000;
    color: #fff; }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li a {
      font-size: 20px;
      padding: 8px 20px; } }
  @media (max-width: 480px) {
    .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li {
      display: block;
      width: 100%;
      margin: 0 0 5px; }
      .bwp-filter-homepage.tab_category_scroll .bwp-filter-heading .filter-category li a {
        font-size: 20px;
        padding: 8px 20px;
        width: 100%; } }
  .bwp-filter-homepage.loadmore .bwp-filter-heading {
    margin-bottom: 40px; }
  .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by {
    float: unset;
    margin: 0;
    text-align: center; }
  .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #868686;
    text-transform: uppercase;
    margin: 0 25px;
    position: relative;
    padding-bottom: 7px;
    font-weight: 700; }
  .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background: #D3AD47;
    width: 0;
    height: 2px; }
  .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li.active, .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li:hover {
    color: #000; }
  .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li.active:before, .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li:hover:before {
    width: 100%;
    opacity: 1;
    visibility: visible; }
  @media (max-width: 767px) {
            .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li {
              margin: 0;
              width: 100%; }
              .bwp-filter-homepage.loadmore .bwp-filter-heading .filter-order-by ul li:before {
                display: none; } }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore {
    margin-top: 15px;
    height: 45px;
    line-height: 41px;
    padding: 0 30px;
    background: transparent;
    color: #000;
    font-size: 16px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 2px solid #000; }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore span, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore span {
    padding: 0; }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore span:before, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore span:before {
    display: none; }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore i, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore i {
    line-height: 1; }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore:hover, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .bwp-filter-homepage.loadmore .products_loadmore .btn.loadmore:hover i, .bwp-filter-homepage.loadmore .products_loadmore .clear-all.loadmore:hover i {
    color: #fff !important; }
  .bwp-filter-homepage.tab_product_default .content-product-list {
    overflow: hidden; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading {
    margin-bottom: 35px; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby {
    text-align: center; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 2px;
    position: relative;
    color: #010101;
    text-transform: uppercase; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li:first-child {
    margin: 0 30px; }
  @media (max-width: 1199px) {
            .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li:first-child {
              margin: 0 15px 0 45px; }
              .rtl .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li:first-child {
                margin: 0 45px 0 15px; } }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li:before {
    position: absolute;
    bottom: -2px;
    content: "";
    width: 0;
    height: 3px;
    background: #D3AD47;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li.active {
    color: #000;
    border-color: #000; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li.active:before {
    width: 100%; }
  .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li:hover {
    color: #000; }
  @media (max-width: 767px) {
          .bwp-filter-homepage.tab_product_default .bwp-filter-heading .filter-orderby li {
            margin: 0 0 10px !important; } }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_product_default .content {
      margin: 0 -7.5px; }

    .bwp-filter-homepage.tab_product_default .item-product {
      padding: 0 7.5px; } }
  .bwp-filter-homepage.tab_product_slider .content-product-list {
    overflow: hidden; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading {
    margin-bottom: 30px; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby {
    text-align: center;
    display: flex; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
    margin: 0 3.5px;
    padding: 10px 15px;
    color: #000;
    background: #e6e6e6;
    position: relative; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:first-child {
    margin-left: 0; }
  .rtl .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:first-child {
    margin-right: 0;
    margin-left: 0; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li.active {
    color: #fff;
    background: #D3AD47;
    position: relative; }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li.active:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #D3AD47;
    bottom: -3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: calc(50% - 5px); }
  .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 767px) {
        .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby {
          display: block; } }
  .bwp-filter-homepage.tab_product_slider .slick-arrow {
    top: calc(50% - 80px); }
  .bwp-filter-homepage.tab_product_slider .slick-arrow:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-left {
    left: -17.5px; }
  .rtl .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-left {
    right: -17.5px;
    left: auto; }
  .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-right {
    right: -17.5px; }
  .rtl .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-right {
    left: -17.5px;
    right: auto; }
  @media (max-width: 1199px) {
      .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-left {
        left: -15px; }
        .rtl .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-left {
          right: -15px;
          left: auto; }
      .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-right {
        right: -15px; }
        .rtl .bwp-filter-homepage.tab_product_slider .slick-arrow.fa-angle-right {
          left: -15px;
          right: auto; } }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li {
      font-size: 16px;
      margin: 0 10px; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby {
      border: 0; }
      .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li {
        font-size: 14px;
        margin: 0 0 5px;
        text-transform: uppercase;
        width: 100%;
        padding: 0;
        line-height: 30px;
        background: #f5f5f5; }
        .bwp-filter-homepage.tab_product_slider .bwp-filter-heading .filter-orderby li:before {
          display: none; } }
  @media (max-width: 1199px) {
    .bwp-filter-homepage.tab_product_slider_2 .slick-list .item {
      padding: 0 7.5px !important; }
      .bwp-filter-homepage.tab_product_slider_2 .slick-list .item-product {
        padding: 0 !important; } }
  .bwp-filter-homepage.tab_product_slider_2 .content-product-list {
    overflow: hidden; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading {
    margin-bottom: 30px; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby {
    text-align: center;
    display: flex;
    justify-content: center; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 7.5px;
    padding: 5px 15px;
    color: #000;
    position: relative;
    border: 2px solid transparent; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:first-child {
    margin-left: 0; }
  .rtl .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:first-child {
    margin-right: 0;
    margin-left: 0; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li.active {
    color: #D3AD47;
    border-color: #D3AD47;
    position: relative; }
  .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:hover {
    border-color: #D3AD47; }
  @media (max-width: 767px) {
        .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby {
          display: block; } }
  .bwp-filter-homepage.tab_product_slider_2 .slick-arrow {
    top: calc(50% - 80px); }
  .bwp-filter-homepage.tab_product_slider_2 .slick-arrow:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-left {
    left: -17.5px; }
  .rtl .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-left {
    right: -17.5px;
    left: auto; }
  .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-right {
    right: -17.5px; }
  .rtl .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-right {
    left: -17.5px;
    right: auto; }
  @media (max-width: 1199px) {
      .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-left {
        left: -15px; }
        .rtl .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-left {
          right: -15px;
          left: auto; }
      .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-right {
        right: -15px; }
        .rtl .bwp-filter-homepage.tab_product_slider_2 .slick-arrow.fa-angle-right {
          left: -15px;
          right: auto; } }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li {
      font-size: 16px;
      margin: 0 10px; } }
  @media (max-width: 767px) {
    .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby {
      border: 0; }
      .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li {
        font-size: 14px;
        margin: 0 0 5px;
        text-transform: uppercase;
        width: 100%;
        padding: 0;
        line-height: 30px;
        background: #f5f5f5; }
        .bwp-filter-homepage.tab_product_slider_2 .bwp-filter-heading .filter-orderby li:before {
          display: none; } }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category {
    margin-bottom: 50px; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li {
    margin: 0;
    margin-right: 10px;
    padding: 0; }
  .rtl .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li:last-child {
    margin-right: 0; }
  .rtl .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li span {
    font-size: 15px;
    color: #868686;
    text-transform: capitalize;
    padding: 0 20px;
    line-height: 25px;
    font-weight: 600; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li.active span, .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-category li:hover span {
    background: #D3AD47;
    color: #fff; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by {
    margin: 0;
    margin-top: -1px; }
  @media (max-width: 991px) {
          .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by {
            margin-left: 30px; }
            .rtl .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by {
              margin-right: 30px;
              margin-left: 0; } }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by > button {
    font-size: 12px;
    color: #868686;
    line-height: 24px;
    padding: 0 20px;
    border: 1px solid #868686; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by > button .caret {
    line-height: 1; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .filter-order-by > button .caret:before {
    top: 0; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle {
    font-size: 12px;
    color: #868686;
    line-height: 24px;
    padding: 0 20px;
    border: 1px solid #868686;
    margin: 0;
    margin-left: 10px; }
  .rtl .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle {
    margin-right: 10px;
    margin-left: 0; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle:after {
    display: none; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle:before {
    display: none; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle i {
    font-size: 18px;
    top: 5px; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle.active:after {
    display: none; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle.active i {
    display: inline-block; }
  .bwp-filter-homepage.filter.slider .bwp-filter-heading .bwp-filter-toggle.active i:before {
    display: inline-block;
    position: relative;
    top: -3px;
    content: "\f136";
    font-family: Material; }
  @media (max-width: 1199px) {
          .bwp-filter-homepage.filter.slider .bwp-filter-content .slick-dots {
            bottom: 0; } }
  .bwp-filter-homepage.tab_category_image {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px; }
  .bwp-filter-homepage.tab_category_image .box-content {
    display: flex;
    flex-wrap: wrap; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading {
    flex: 0 0 330px;
    width: 330px;
    border-right: 1px solid #e0e0e0; }
  .rtl .bwp-filter-homepage.tab_category_image .bwp-filter-heading {
    border-left: 1px solid #e0e0e0;
    border-right: 0; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li {
    width: 100%;
    border-bottom: 1px solid #e0e0e0; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li:last-child {
    border-bottom: 0; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li.active a {
    background: #f4f4f4; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li.active a img {
    filter: brightness(0.95); }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li.active a span:after {
    opacity: 1;
    visibility: visible; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
    width: 100%;
    padding: 5px 10px; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a img {
    max-width: 100px;
    filter: brightness(1); }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a span {
    display: inline-block; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a span:after {
    content: "\45";
    display: inline-block;
    color: #D3AD47;
    opacity: 0;
    visibility: hidden;
    font-size: 15px;
    font-family: eleganticons;
    position: relative;
    top: 2px; }
  .bwp-filter-homepage.tab_category_image .bwp-filter-content {
    flex: 0 0 calc(100% - 330px);
    width: calc(100% - 330px);
    padding: 30px 30px 0; }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_category_image .bwp-filter-heading {
      margin-bottom: 0;
      flex: 0 0 280px;
      width: 280px; }
      .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a {
        font-size: 14px; }
        .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a img {
          max-width: 80px; }

    .bwp-filter-homepage.tab_category_image .bwp-filter-content {
      flex: 0 0 calc(100% - 280px);
      width: calc(100% - 280px);
      padding: 30px 30px 0; } }
  @media (max-width: 991px) {
    .bwp-filter-homepage.tab_category_image {
      border: 0; }
      .bwp-filter-homepage.tab_category_image .bwp-filter-heading {
        margin-bottom: 0;
        flex: 0 0 100%;
        width: 100%;
        border: 1px solid #e0e0e0;
        margin-bottom: 30px; }
        .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a {
          font-size: 14px; }
          .bwp-filter-homepage.tab_category_image .bwp-filter-heading ul li a img {
            display: none; }
      .bwp-filter-homepage.tab_category_image .bwp-filter-content {
        flex: 0 0 100%;
        width: 100%;
        padding: 0; } }

.main-archive-product .content-products-list {
  position: relative; }
  .main-archive-product .content-products-list.active > .products-list {
    opacity: 0; }
  .main-archive-product .content-products-list > .loading {
    position: absolute;
    top: 0;
    left: calc(50% - 40px); }
  .main-archive-product .content-products-list .products-list.grid .product-wapper .products-thumb {
    width: 100%; }
  .main-archive-product .content-products-list .products-list.grid .product-wapper .products-thumb a > img {
    width: 100%; }
  .main-archive-product.style-1 .content-products-list, .main-archive-product.style-3 .content-products-list {
    overflow: hidden; }
  .main-archive-product.style-4 .content-product5 {
    margin: 0 0 25px !important; }
  .main-archive-product.style-4 .content-product5 .products-content {
    padding: 0 !important; }

.bwp-filter-content, ul.products-list {
  position: relative; }
  .bwp-filter-content > .content, ul.products-list > .content, .bwp-filter-content > .content-product-list, ul.products-list > .content-product-list {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
  .bwp-filter-content > .content .slick-arrow, ul.products-list > .content .slick-arrow, .bwp-filter-content > .content-product-list .slick-arrow, ul.products-list > .content-product-list .slick-arrow {
    opacity: 0;
    visibility: hidden; }
  @media (max-width: 991px) {
      .bwp-filter-content > .content .slick-arrow, ul.products-list > .content .slick-arrow, .bwp-filter-content > .content-product-list .slick-arrow, ul.products-list > .content-product-list .slick-arrow {
        opacity: 1;
        visibility: visible; } }
  @media (max-width: 767px) {
      .bwp-filter-content > .content .slick-arrow, ul.products-list > .content .slick-arrow, .bwp-filter-content > .content-product-list .slick-arrow, ul.products-list > .content-product-list .slick-arrow {
        visibility: hidden; } }
  .bwp-filter-content > .content:hover .slick-arrow, ul.products-list > .content:hover .slick-arrow, .bwp-filter-content > .content-product-list:hover .slick-arrow, ul.products-list > .content-product-list:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-filter-content.active > .content, ul.products-list.active > .content, .bwp-filter-content.active > .content-product-list, ul.products-list.active > .content-product-list, .bwp-filter-content.active > li, ul.products-list.active > li {
    opacity: 0; }
  .bwp-filter-content > .loading-filter, ul.products-list > .loading-filter {
    position: absolute;
    top: 0;
    left: calc(50% - 50px); }
/************************************************************************************************
 Bingo Woo Tab Caterories
 *************************************************************************************************/
.bwp-woo-tab-cat .bwp-category-tab {
  text-align: center;
  margin-bottom: 32px; }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs {
    display: inline-block;
    float: none; }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li {
    padding: 0;
    float: none;
    display: inline-block; }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a {
    font-size: 16px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative; }
  @media (max-width: 480px) {
          .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a {
            padding: 0 10px; } }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a:after {
    top: 0;
    content: "/";
    color: #a3a3a3;
    position: absolute;
    right: -1px; }
  .rtl .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a:after {
    left: -1px;
    right: auto; }
  @media (max-width: 480px) {
            .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a:after {
              display: none; } }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li a:before {
    display: none; }
  .bwp-woo-tab-cat .bwp-category-tab ul.nav-tabs li:last-child a:after {
    display: none; }
  .bwp-woo-tab-cat .tab-content {
    position: relative; }
  .bwp-woo-tab-cat .tab-pane {
    display: block !important; }
  .bwp-woo-tab-cat .tab-pane.active .slick-arrow {
    display: block !important; }
  .bwp-woo-tab-cat.slider .row {
    display: flex;
    align-items: center; }
  @media (max-width: 991px) {
      .bwp-woo-tab-cat.slider .row {
        display: block; } }
  .bwp-woo-tab-cat.slider .category-nav .category {
    position: relative;
    margin-bottom: 30px; }
  .bwp-woo-tab-cat.slider .category-nav .category .name-category {
    position: absolute;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0; }
  .rtl .bwp-woo-tab-cat.slider .category-nav .category .name-category {
    right: 50%;
    left: auto; }
  .bwp-woo-tab-cat.slider .category-nav .category .name-category:hover {
    color: #D3AD47; }
  .bwp-woo-tab-cat.slider .title-block {
    position: absolute;
    z-index: 99; }
  .bwp-woo-tab-cat.slider .title-block h2 {
    font-size: 35px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-top: -7px;
    display: inline-block; }
  .bwp-woo-tab-cat.slider .category {
    padding: 86px 15px; }
  .bwp-woo-tab-cat.slider .category .category-content {
    width: 55%;
    padding: 72px 30px 153px 30px;
    background: #fff;
    background: #fff; }
  .rtl .bwp-woo-tab-cat.slider .category .category-content {
    padding: 72px 30px 153px 30px; }
  .bwp-woo-tab-cat.slider .category .category-content .name-category {
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 35px;
    display: block; }
  .bwp-woo-tab-cat.slider .category .category-content .name-category:hover {
    color: #D3AD47; }
  .bwp-woo-tab-cat.slider .category .category-content .description-category {
    color: #868686; }
  @media (max-width: 991px) {
        .bwp-woo-tab-cat.slider .category .category-content {
          width: 50%; } }
  @media (max-width: 767px) {
        .bwp-woo-tab-cat.slider .category .category-content {
          width: 100%; } }
  .bwp-woo-tab-cat.slider .category .category-img {
    position: absolute;
    top: 0;
    right: 20px;
    -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.25); }
  .rtl .bwp-woo-tab-cat.slider .category .category-img {
    left: 20px;
    right: auto; }
  @media (max-width: 1199px) {
        .bwp-woo-tab-cat.slider .category .category-img {
          max-width: 280px;
          top: 130px; } }
  @media (max-width: 991px) {
        .bwp-woo-tab-cat.slider .category .category-img {
          right: 120px; } }
  @media (max-width: 767px) {
        .bwp-woo-tab-cat.slider .category .category-img {
          display: none; } }
  .bwp-woo-tab-cat.slider .slick-arrow {
    border: none;
    background: #f5f5f5;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    top: auto;
    left: 45px;
    bottom: 27%;
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #868686; }
  .rtl .bwp-woo-tab-cat.slider .slick-arrow {
    right: 45px;
    left: auto; }
  .bwp-woo-tab-cat.slider .slick-arrow.fa-angle-right {
    left: 88px; }
  .rtl .bwp-woo-tab-cat.slider .slick-arrow.fa-angle-right {
    right: 88px;
    left: auto; }
  .bwp-woo-tab-cat.slider .slick-arrow:hover {
    background: #D3AD47;
    color: #fff; }
  .bwp-woo-tab-cat.slider .prodcut-slider .products-list {
    padding-top: 40px;
    padding: 0; }
/************************************************************************************************
 Bingo Woo Caterories
 *************************************************************************************************/
.bwp_widget_woo_categories.widget {
  margin-bottom: 0; }

.bwp-woo-categories.slider {
  position: relative; }
  .bwp-woo-categories.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-woo-categories.slider .slick-slide {
    padding: 0 10px; }
  .bwp-woo-categories.slider .slick-slider {
    overflow: unset; }
  .bwp-woo-categories.slider .item-product-cat-content {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 5px 10px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px; }
  .bwp-woo-categories.slider .item-product-cat-content:hover .item-image, .bwp-woo-categories.slider .item-product-cat-content:hover .item-thumbnail {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider .item-image, .bwp-woo-categories.slider .item-thumbnail {
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px; }
  .bwp-woo-categories.slider .item-image img, .bwp-woo-categories.slider .item-thumbnail img {
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-woo-categories.slider .item-title {
    margin: 0;
    font-size: 13px;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 12px; }
  .rtl .bwp-woo-categories.slider .item-title {
    margin-right: 12px;
    margin-left: 0; }
  .bwp-woo-categories.slider .item-title a {
    color: #000; }
  .bwp-woo-categories.slider .item-title a:hover {
    color: #D3AD47; }
  .bwp-woo-categories.slider .slick-dots {
    margin-top: 30px; }
  .bwp-woo-categories.slider2 .slick-list {
    margin: 0 -7.5px; }
  .bwp-woo-categories.slider2 .slick-list .item {
    padding: 0 7.5px; }
  .bwp-woo-categories.slider2 .item-description {
    line-height: 18px; }
  .bwp-woo-categories.slider2 .item-product-cat-content {
    background: #eee;
    text-align: center;
    padding: 20px 40px 30px; }
  .bwp-woo-categories.slider2 .item-product-cat-content:hover .item-icon i {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider2 .item-product-cat-content:hover .item-image img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider2 .item-image img {
    margin: auto; }
  .bwp-woo-categories.slider2 .item-title {
    margin: 0 0 2px;
    font-size: 18px;
    font-weight: 600; }
  .bwp-woo-categories.slider2 .item-title a {
    color: #000; }
  .bwp-woo-categories.slider2 .item-title a:hover {
    color: #D3AD47; }
  .bwp-woo-categories.slider2 .item-icon {
    color: #fff;
    font-size: 40px; }
  .bwp-woo-categories.slider2 .item-icon a {
    color: #fff; }
  .bwp-woo-categories.slider2 .item-icon a i {
    display: inline-block; }
  @media (max-width: 480px) {
    .bwp-woo-categories.slider2 .item-title {
      padding-left: 10px; }
      .rtl .bwp-woo-categories.slider2 .item-title {
        padding-right: 10px;
        padding-left: 0; }

    .bwp-woo-categories.slider2 .item-icon {
      font-size: 30px; } }
  .bwp-woo-categories.slider3 {
    text-align: center; }
  .bwp-woo-categories.slider3 .item-product-cat-content {
    background: #fff;
    margin-bottom: 30px; }
  .bwp-woo-categories.slider3 .item-product-cat-content:last-child {
    margin-bottom: 0; }
  .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-image:after, .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-thumbnail:after, .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-image:before, .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-thumbnail:before {
    opacity: 1;
    visibility: visible; }
  .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-image img, .bwp-woo-categories.slider3 .item-product-cat-content:hover .item-thumbnail img {
    -webkit-animation-name: rotate2;
    animation-name: rotate2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider3 .item-image, .bwp-woo-categories.slider3 .item-thumbnail {
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    display: inline-block; }
  .bwp-woo-categories.slider3 .item-image:before, .bwp-woo-categories.slider3 .item-thumbnail:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden; }
  .bwp-woo-categories.slider3 .item-image:after, .bwp-woo-categories.slider3 .item-thumbnail:after {
    content: "";
    background-position: center;
    background: url("/wp-content/themes/vapier/images/plus-cate.png") no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 3; }
  .bwp-woo-categories.slider3 .item-image img, .bwp-woo-categories.slider3 .item-thumbnail img {
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-woo-categories.slider3 .product-cat-info {
    padding: 0 15px;
    margin-top: 10px; }
  .bwp-woo-categories.slider3 .item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0; }
  .bwp-woo-categories.slider4 {
    text-align: center; }
  .bwp-woo-categories.slider4 .slick-slider {
    overflow: unset; }
  .bwp-woo-categories.slider4 .item-product-cat-content {
    background: #fff;
    margin-bottom: 30px; }
  .bwp-woo-categories.slider4 .item-product-cat-content:last-child {
    margin-bottom: 0; }
  .bwp-woo-categories.slider4 .item-product-cat-content:hover .item-image, .bwp-woo-categories.slider4 .item-product-cat-content:hover .item-thumbnail {
    border-color: #de2828; }
  .bwp-woo-categories.slider4 .item-product-cat-content:hover .item-image img, .bwp-woo-categories.slider4 .item-product-cat-content:hover .item-thumbnail img {
    -webkit-animation-name: rotate2;
    animation-name: rotate2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider4 .item-image, .bwp-woo-categories.slider4 .item-thumbnail {
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    border: 2px solid #e7e7e7; }
  .bwp-woo-categories.slider4 .item-image img, .bwp-woo-categories.slider4 .item-thumbnail img {
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-woo-categories.slider4 .product-cat-info {
    padding: 0 15px;
    margin-top: 15px; }
  .bwp-woo-categories.slider4 .item-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0; }
  .bwp-woo-categories.slider5 {
    text-align: center; }
  @media (max-width: 1199px) {
    .bwp-woo-categories.slider5 .slick-list {
      margin: 0 -7.5px; }
      .bwp-woo-categories.slider5 .slick-list .item {
        padding: 0 7.5px; } }
  .bwp-woo-categories.slider5 .item-product-cat-content:hover .item-icon i, .bwp-woo-categories.slider5 .item-product-cat-content:hover .item-image i, .bwp-woo-categories.slider5 .item-product-cat-content:hover .item-icon img, .bwp-woo-categories.slider5 .item-product-cat-content:hover .item-image img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider5 .item-title {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase; }
  .bwp-woo-categories.slider5 .item-image {
    margin: 0 0 20px; }
  .bwp-woo-categories.slider5 .item-image img {
    margin: auto;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0 100%, 0 22%); }
  .bwp-woo-categories.slider5 .item-icon {
    color: #fff;
    font-size: 20px; }
  .bwp-woo-categories.slider5 .item-icon a {
    color: #fff; }
  .bwp-woo-categories.slider5 .item-icon a i {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #515151;
    text-align: center;
    line-height: 38px; }
  @media (max-width: 1199px) {
    .bwp-woo-categories.slider6 .slick-list {
      margin: 0 -7.5px; }
      .bwp-woo-categories.slider6 .slick-list .item {
        padding: 0 7.5px; } }
  .bwp-woo-categories.slider6:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-woo-categories.slider6 .item-product-cat-content {
    text-align: center;
    padding: 20px 15px;
    background: #fff; }
  .bwp-woo-categories.slider6 .item-product-cat-content:hover .item-image img, .bwp-woo-categories.slider6 .item-product-cat-content:hover .item-thumbnail img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-woo-categories.slider6 .item-image, .bwp-woo-categories.slider6 .item-thumbnail {
    position: relative;
    display: inline-block;
    overflow: hidden; }
  .bwp-woo-categories.slider6 .item-title {
    margin: 5px 0 0;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px; }
  .bwp-woo-categories.slider6 .item-title:before {
    position: absolute;
    content: "";
    background: #D3AD47;
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .bwp-woo-categories.slider6 .item-title a {
    color: #000; }
  .bwp-woo-categories.slider6 .item-title a:hover {
    color: #D3AD47; }
  .bwp-woo-categories.slider6 .slick-dots {
    margin-top: 15px; }
  .bwp-woo-categories.slider6 .slick-dots li {
    margin: 0 7.5px; }
  .bwp-woo-categories.slider6 .slick-dots li button {
    background: rgba(0, 0, 0, .3); }
  .bwp-woo-categories.slider6 .slick-dots li.slick-active button {
    background: #D3AD47; }
/************************************************************************************************
 Bingo Slider
 *************************************************************************************************/
.bwp-slider.default {
  position: relative; }
  .bwp-slider.default .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 21px;
    height: 21px;
    border: 1px solid #000;
    color: #000;
    font-size: 8px;
    line-height: 18px;
    font-weight: 600;
    top: 6px;
    background: #fff; }
  .bwp-slider.default .slick-arrow:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .bwp-slider.default .slick-arrow.fa-angle-left {
    right: 26px;
    left: auto; }
  .bwp-slider.default .slick-arrow.fa-angle-right {
    right: 0; }
  .bwp-slider.default .content-image {
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 2px solid #e0e0e0; }
  .bwp-slider.default .content-image img {
    margin: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .bwp-slider.default .content-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-slider.default .button-view {
    position: relative;
    top: -2px; }
  .bwp-slider.default .button-view a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp-slider.default .button-view a:hover {
    border-color: #D3AD47; }
  .bwp-slider.default .content-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 60px;
    align-items: center;
    margin-bottom: 30px; }
  .rtl .bwp-slider.default .content-title {
    padding-left: 60px;
    padding-right: 0; }
  .bwp-slider.default .content-title h2 {
    margin: 0;
    font-size: 28px;
    position: relative;
    display: inline-block; }
  @media (max-width: 767px) {
        .bwp-slider.default .content-title h2 {
          font-size: 18px; } }
  .bwp-slider.default .content-title h2 i {
    color: #fff;
    width: 30px;
    height: 30px;
    background: #4bc732;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 13px;
    position: relative;
    top: -5px; }
  .rtl .bwp-slider.default .content-title h2 i {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-slider.default .content-title h2:after {
    display: inline-block;
    content: ".";
    color: #D3AD47; }
  .bwp-slider.slider-homepage1 .content-image img {
    width: 100%; }
  .bwp-slider.slider-homepage1 span {
    display: inline-block; }
  .bwp-slider.slider-homepage1 .slick-dots {
    position: absolute;
    bottom: 0;
    z-index: 10; }
  .bwp-slider.slider-homepage1 .item-info {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: -100px;
    transition-delay: 0.6s;
    display: flex; }
  .bwp-slider.slider-homepage1 .item-info.vertical_middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bwp-slider.slider-homepage1 .item-info.vertical_top {
    top: 0; }
  .bwp-slider.slider-homepage1 .item-info.vertical_bottom {
    bottom: 0; }
  .bwp-slider.slider-homepage1 .item-info.horizontal_center {
    justify-content: center; }
  .bwp-slider.slider-homepage1 .item-info.horizontal_start {
    justify-content: flex-start; }
  .bwp-slider.slider-homepage1 .item-info.horizontal_end {
    justify-content: flex-end; }
  .bwp-slider.slider-homepage1 .item-info.align_left {
    text-align: left; }
  .bwp-slider.slider-homepage1 .item-info.align_right {
    text-align: right; }
  .bwp-slider.slider-homepage1 .item-info.align_center {
    text-align: center; }
  .bwp-slider.slider-homepage1 .item-info.align_justify {
    text-align: justify; }
  .bwp-slider.slider-homepage1 .button-slider {
    display: inline-block; }
  .bwp-slider.slider-homepage1 .button-slider:after {
    content: "\e912";
    font-family: icomoon;
    font-size: 15px;
    font-weight: 400;
    top: 2px;
    display: inline-block;
    position: relative;
    margin-left: 7.5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .rtl .bwp-slider.slider-homepage1 .button-slider:after {
    margin-right: 7.5px;
    margin-left: 0; }
  .bwp-slider.slider-homepage1 .slick-list {
    margin: 0; }
  .bwp-slider.slider-homepage1 .slick-list .item {
    padding: 0; }
  .bwp-slider.slider-homepage1 .slick-current .item-info {
    opacity: 1;
    visibility: visible;
    margin-top: 0; }
  .bwp-slider.slider-homepage1 .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 45px;
    height: 45px;
    line-height: 43px;
    font-size: 15px;
    font-weight: 400; }
  .bwp-slider.slider-homepage1 .slick-arrow.fa-angle-left {
    left: 30px; }
  .bwp-slider.slider-homepage1 .slick-arrow.fa-angle-left:before {
    content: "\e915";
    font-family: "icomoon"; }
  .bwp-slider.slider-homepage1 .slick-arrow.fa-angle-right {
    right: 30px; }
  .bwp-slider.slider-homepage1 .slick-arrow.fa-angle-right:before {
    content: "\e912";
    font-family: "icomoon"; }
  @media (max-width: 991px) {
      .bwp-slider.slider-homepage1 .slick-arrow {
        display: none !important; } }
  .bwp-slider.slider-homepage2 .content-image img {
    width: 100%; }
  .bwp-slider.slider-homepage2 span {
    display: inline-block; }
  .bwp-slider.slider-homepage2 .slick-dots {
    position: absolute;
    bottom: 0;
    z-index: 10; }
  .bwp-slider.slider-homepage2 .item-info {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: -100px;
    transition-delay: 0.6s;
    display: flex; }
  .bwp-slider.slider-homepage2 .item-info.vertical_middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bwp-slider.slider-homepage2 .item-info.vertical_top {
    top: 0; }
  .bwp-slider.slider-homepage2 .item-info.vertical_bottom {
    bottom: 0; }
  .bwp-slider.slider-homepage2 .item-info.horizontal_center {
    justify-content: center; }
  .bwp-slider.slider-homepage2 .item-info.horizontal_start {
    justify-content: flex-start; }
  .bwp-slider.slider-homepage2 .item-info.horizontal_end {
    justify-content: flex-end; }
  .bwp-slider.slider-homepage2 .button-slider {
    display: inline-block; }
  .bwp-slider.slider-homepage2 .button-slider:after {
    content: "\e912";
    font-family: icomoon;
    font-size: 15px;
    font-weight: 400;
    top: 2px;
    display: inline-block;
    position: relative;
    margin-left: 7.5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .rtl .bwp-slider.slider-homepage2 .button-slider:after {
    margin-right: 7.5px;
    margin-left: 0; }
  .bwp-slider.slider-homepage2 .slick-list {
    margin: 0; }
  .bwp-slider.slider-homepage2 .slick-list .item {
    padding: 0; }
  .bwp-slider.slider-homepage2 .slick-current .item-info {
    opacity: 1;
    visibility: visible;
    margin-top: 0; }
  .bwp-slider.slider-homepage2 .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 45px;
    height: 45px;
    line-height: 43px;
    font-size: 15px;
    font-weight: 400; }
  .bwp-slider.slider-homepage2 .slick-arrow.fa-angle-left {
    left: 30px; }
  .bwp-slider.slider-homepage2 .slick-arrow.fa-angle-left:before {
    content: "\e915";
    font-family: "icomoon"; }
  .bwp-slider.slider-homepage2 .slick-arrow.fa-angle-right {
    right: 30px; }
  .bwp-slider.slider-homepage2 .slick-arrow.fa-angle-right:before {
    content: "\e912";
    font-family: "icomoon"; }
  @media (max-width: 991px) {
      .bwp-slider.slider-homepage2 .slick-arrow {
        display: none !important; } }
  @media (max-width: 991px) {
    .bwp-slider.slider-homepage2 .content-image img {
      min-height: 420px;
      object-fit: cover; } }
  .bwp-slider.slider-homepage3 span {
    display: inline-block; }
  .bwp-slider.slider-homepage3 .slick-dots {
    position: absolute;
    bottom: 0;
    z-index: 10; }
  .bwp-slider.slider-homepage3 .item-info {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: -100px;
    transition-delay: 0.6s;
    display: flex; }
  .bwp-slider.slider-homepage3 .item-info.vertical_middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bwp-slider.slider-homepage3 .item-info.vertical_top {
    top: 0; }
  .bwp-slider.slider-homepage3 .item-info.vertical_bottom {
    bottom: 0; }
  .bwp-slider.slider-homepage3 .item-info.horizontal_center {
    justify-content: center; }
  .bwp-slider.slider-homepage3 .item-info.horizontal_start {
    justify-content: flex-start; }
  .bwp-slider.slider-homepage3 .item-info.horizontal_end {
    justify-content: flex-end; }
  .bwp-slider.slider-homepage3 .button-slider {
    display: inline-block; }
  .bwp-slider.slider-homepage3 .button-slider:after {
    content: "\e912";
    font-family: icomoon;
    font-size: 15px;
    font-weight: 400;
    top: 2px;
    display: inline-block;
    position: relative;
    margin-left: 7.5px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .rtl .bwp-slider.slider-homepage3 .button-slider:after {
    margin-right: 7.5px;
    margin-left: 0; }
  .bwp-slider.slider-homepage3 .slick-list {
    margin: 0;
    padding: 0 20.5%; }
  .bwp-slider.slider-homepage3 .slick-list .item {
    padding: 0; }
  .bwp-slider.slider-homepage3 .content-image img {
    width: 100%; }
  .bwp-slider.slider-homepage3 .slick-current .item-info {
    opacity: 1;
    visibility: visible;
    margin-top: 0; }
  .bwp-slider.slider-homepage3 .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 45px;
    height: 45px;
    line-height: 43px;
    font-size: 15px;
    font-weight: 400; }
  .bwp-slider.slider-homepage3 .slick-arrow.fa-angle-left {
    left: 30px; }
  .bwp-slider.slider-homepage3 .slick-arrow.fa-angle-left:before {
    content: "\e915";
    font-family: "icomoon"; }
  .bwp-slider.slider-homepage3 .slick-arrow.fa-angle-right {
    right: 30px; }
  .bwp-slider.slider-homepage3 .slick-arrow.fa-angle-right:before {
    content: "\e912";
    font-family: "icomoon"; }
  @media (max-width: 991px) {
      .bwp-slider.slider-homepage3 .slick-arrow {
        display: none !important; } }
  @media (max-width: 1199px) {
    .bwp-slider.slider-homepage3 .slick-list {
      padding: 0 10%; } }
  @media (max-width: 767px) {
    .bwp-slider.slider-homepage3 .slick-list {
      padding: 0; } }

.social-link {
  padding: 0; }
  .social-link li {
    display: inline-block;
    text-align: center;
    margin: 0 13px; }
  .social-link li:first-child {
    margin-left: 0; }
  .rtl .social-link li:first-child {
    margin-right: 0;
    margin-left: 0; }
  .social-link li:last-child {
    margin-right: 0; }
  .rtl .social-link li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .social-link li a i {
    font-size: 14px;
    color: #000; }
  .social-link li a i.social_instagram {
    color: #bc1a1a; }
  .social-link li a i.social_googleplus {
    color: #dd4b39; }
  .social-link li a i.social_twitter {
    color: #1b80be; }
  .social-link li a i.social_facebook {
    color: #3b5998; }
  .social-link li a i.social_linkedin {
    color: #1da1f2; }
  .social-link li a i.social_pinterest {
    color: #bc1a1a; }
  .social-link li:hover a i {
    color: #fff; }
/************************************************************************************************
 Bingo Woo Countdown
 *************************************************************************************************/
.bwp-countdown.slider {
  border: 2px solid #ff9600 !important;
  padding: 20px 25px !important; }
  .bwp-countdown.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-countdown.slider .slick-list {
    margin: 0 -13px; }
  .bwp-countdown.slider .title-block h2 {
    margin: 0 0 20px;
    font-size: 24px; }
  .bwp-countdown.slider .item-product-content {
    margin: 0 !important;
    flex-wrap: wrap; }
  .bwp-countdown.slider .rating .review-count {
    display: inline-block; }
  .bwp-countdown.slider .products-content {
    text-align: center;
    margin-top: 15px !important; }
  .bwp-countdown.slider .products-content h3 {
    font-size: 16px !important; }
  .bwp-countdown.slider .price {
    font-size: 18px;
    color: #868686;
    margin-bottom: 5px; }
  .bwp-countdown.slider .price ins {
    text-decoration: none; }
  .bwp-countdown.slider .available-box {
    margin-top: 20px; }
  .bwp-countdown.slider .available-box .content-available {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 12px; }
  .bwp-countdown.slider .available-box .content-available label {
    margin-bottom: 0;
    margin-right: 5px;
    color: #a3a3a3; }
  .rtl .bwp-countdown.slider .available-box .content-available label {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-countdown.slider .available-box .content-available .available {
    color: #000; }
  .bwp-countdown.slider .available-box .content-available .sold {
    color: #ff4545; }
  .bwp-countdown.slider .available-box .percent {
    position: relative;
    height: 6px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #e1e1e1;
    margin-bottom: 6px; }
  .bwp-countdown.slider .available-box .percent .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #59b543; }
  .bwp-countdown.slider .item-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap; }
  .bwp-countdown.slider .item-countdown .title-countdown {
    text-align: left; }
  .rtl .bwp-countdown.slider .item-countdown .title-countdown {
    text-align: right; }
  .bwp-countdown.slider .item-countdown .title-countdown h2 {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0; }
  .bwp-countdown.slider .item-countdown .title-countdown span {
    font-size: 12px;
    font-weight: 600;
    color: #969696; }
  .bwp-countdown.slider .item-countdown .countdown-content > span {
    display: inline-block;
    margin-right: 5px;
    text-align: center; }
  .rtl .bwp-countdown.slider .item-countdown .countdown-content > span {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-countdown.slider .item-countdown .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp-countdown.slider .item-countdown .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-countdown.slider .item-countdown .countdown-content > span .countdown-amount {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    background: #D3AD47; }
  .bwp-countdown.slider .item-countdown .countdown-content > span .countdown-text {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: 3px;
    color: #000; }
  @media (max-width: 767px) {
    .bwp-countdown.slider .item-product-content > * {
      width: 100%;
      flex: 0 0 100%; }
      .bwp-countdown.slider .item-product-content .products-content {
        margin-top: 20px !important; } }
  @media (max-width: 480px) {
    .bwp-countdown.slider .title-block h2 {
      font-size: 20px; } }
  @media (max-width: 1199px) {
    .bwp-countdown.slider2 .slick-list {
      margin: 0 -7.5px; }
      .bwp-countdown.slider2 .slick-list .item-product {
        padding: 0 7.5px; } }
  .bwp-countdown.slider2 .item-product-content {
    display: flex;
    background: #fff;
    padding: 20px 10px !important;
    flex-wrap: wrap;
    margin: 0 !important; }
  .bwp-countdown.slider2 .item-product-content > * {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 10px; }
  .bwp-countdown.slider2 .rating {
    margin-bottom: 3px; }
  .bwp-countdown.slider2 .rating .review-count {
    display: inline-block; }
  .bwp-countdown.slider2 .cat-products {
    display: none; }
  .bwp-countdown.slider2 .product-title {
    font-size: 18px !important;
    font-weight: 600 !important; }
  .bwp-countdown.slider2 .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px; }
  .bwp-countdown.slider2 .price ins {
    text-decoration: none; }
  .bwp-countdown.slider2 .available-box {
    margin-top: 20px; }
  .bwp-countdown.slider2 .available-box .content-available {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 12px; }
  .bwp-countdown.slider2 .available-box .content-available label {
    margin-bottom: 0;
    margin-right: 5px;
    color: #a3a3a3; }
  .rtl .bwp-countdown.slider2 .available-box .content-available label {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-countdown.slider2 .available-box .content-available .available {
    color: #000; }
  .bwp-countdown.slider2 .available-box .content-available .sold {
    color: #D3AD47; }
  .bwp-countdown.slider2 .available-box .percent {
    position: relative;
    height: 6px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #e1e1e1;
    margin-bottom: 8px; }
  .bwp-countdown.slider2 .available-box .percent .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #25ab44; }
  .bwp-countdown.slider2 .item-countdown {
    display: flex;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
    text-align: left; }
  .rtl .bwp-countdown.slider2 .item-countdown {
    text-align: right; }
  .bwp-countdown.slider2 .item-countdown .title-countdown {
    margin-right: 10px; }
  .rtl .bwp-countdown.slider2 .item-countdown .title-countdown {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-countdown.slider2 .item-countdown .title-countdown h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 -5px; }
  .bwp-countdown.slider2 .item-countdown .title-countdown span {
    font-size: 12px;
    font-weight: 500;
    color: #a3a3a3; }
  .bwp-countdown.slider2 .item-countdown .countdown-content > span {
    display: inline-block;
    margin-right: 7px;
    text-align: center; }
  .rtl .bwp-countdown.slider2 .item-countdown .countdown-content > span {
    margin-left: 7px;
    margin-right: 0; }
  .bwp-countdown.slider2 .item-countdown .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp-countdown.slider2 .item-countdown .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-countdown.slider2 .item-countdown .countdown-content > span .countdown-amount {
    font-size: 16px;
    font-family: 'Audiowide', cursive;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    background: #de2828; }
  .bwp-countdown.slider2 .item-countdown .countdown-content > span .countdown-text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: 3px;
    color: #000; }
  .bwp-countdown.slider2 ul.slick-dots {
    margin-top: 20px; }
  .bwp-countdown.slider2 ul.slick-dots li {
    margin: 0 7.5px; }
  .bwp-countdown.slider2 ul.slick-dots li button {
    background: rgba(0, 0, 0, .3); }
  .bwp-countdown.slider2 ul.slick-dots li.slick-active button {
    background: #D3AD47; }
  @media (max-width: 767px) {
    .bwp-countdown.slider2 .item-product-content > * {
      width: 100%;
      flex: 0 0 100%; }
      .bwp-countdown.slider2 .item-product-content .products-content {
        margin-top: 20px !important; } }
/************************************************************************************************
 Bingo Image Gallery
 *************************************************************************************************/
.bwp-gallery .slick-slide {
  text-align: center; }
  .bwp-gallery .slick-slide img {
    display: inline-block; }
  .bwp-gallery .slick-dots {
    position: absolute;
    bottom: 15px;
    padding: 0;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%); }
  .bwp-gallery .slick-dots li button {
    border: 0;
    opacity: 0.4;
    background: #000;
    width: 16px;
    height: 16px;
    transform: none; }
  .bwp-gallery .slick-dots li button:hover {
    background: #fff;
    opacity: 1; }
  .bwp-gallery .slick-dots li.slick-active button {
    background: #fff;
    opacity: 1; }
/************************************************************************************************
 Wp Tag Cloud
 *************************************************************************************************/
.vc_wp_tagcloud .widget_tag_cloud h2.widgettitle {
  font-size: 18px;
  border-bottom: 1px solid #343434;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 14px; }

.wpb-portfolio.slider .portfolio-item:first-child {
  margin-bottom: 30px; }
  .wpb-portfolio.slider .portfolio-item-inner {
    position: relative;
    overflow: hidden; }
  .wpb-portfolio.slider .portfolio-item-inner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  .rtl .wpb-portfolio.slider .portfolio-item-inner:before {
    right: 0;
    left: auto; }
  .wpb-portfolio.slider .portfolio-item-inner .portfolio-img img {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease; }
  .wpb-portfolio.slider .portfolio-item-inner:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .wpb-portfolio.slider .portfolio-item-inner:hover .pitem-text a {
    opacity: 1;
    visibility: visible;
    top: -17.5px; }
  .wpb-portfolio.slider .portfolio-item-inner:hover .portfolio-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: inline-block;
    text-align: center;
    z-index: 9;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .rtl .wpb-portfolio.slider .portfolio-item-inner .pitem-text {
    right: 50%;
    left: auto; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text a {
    position: absolute;
    top: -30px;
    opacity: 0;
    visibility: hidden;
    color: #868686;
    background: #fff;
    line-height: 35px;
    z-index: 9;
    text-align: center;
    width: 35px;
    height: 35px;
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text a:hover {
    color: #fff;
    background: #D3AD47; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text a span {
    line-height: 35px; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text .item-more {
    right: calc(50% - 40px); }
  .rtl .wpb-portfolio.slider .portfolio-item-inner .pitem-text .item-more {
    left: calc(50% - 40px);
    right: auto; }
  .wpb-portfolio.slider .portfolio-item-inner .pitem-text .item-popup {
    left: calc(50% - 40px); }
  .rtl .wpb-portfolio.slider .portfolio-item-inner .pitem-text .item-popup {
    right: calc(50% - 40px);
    left: auto; }

.bwp-widget-feature-product {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 25px 15px 20px; }
  .bwp-widget-feature-product .title-feature {
    font-size: 22px;
    margin: 0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px; }
  .bwp-widget-feature-product .title-feature:after {
    content: ".";
    display: inline-block;
    color: #D3AD47; }
  .bwp-widget-feature-product ul {
    padding: 0;
    list-style: none; }
  .bwp-widget-feature-product .item-product {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0; }
  .bwp-widget-feature-product .item-product:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0; }
  .bwp-widget-feature-product .item-thumb {
    flex: 0 0 90px; }
  .bwp-widget-feature-product .content-bottom {
    padding-left: 15px; }
  .rtl .bwp-widget-feature-product .content-bottom {
    padding-right: 15px;
    padding-left: 0; }
  .bwp-widget-feature-product .content-bottom .rating {
    margin-bottom: 0;
    font-size: 14px; }
  .bwp-widget-feature-product .content-bottom .item-title {
    margin-top: 0px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 18px; }
  .bwp-widget-feature-product .content-bottom .item-title a {
    color: #000; }
  .bwp-widget-feature-product .content-bottom .item-title a:hover {
    color: #D3AD47; }
  .bwp-widget-feature-product .content-bottom .price {
    line-height: 100%;
    display: inline-block;
    font-size: 14px; }
  .bwp-widget-feature-product .content-bottom .price del {
    line-height: 100%;
    color: rgba(134, 134, 134, 0.8);
    font-size: 12px; }
  .bwp-widget-feature-product .content-bottom .rating .review-count {
    display: inline-block;
    position: relative;
    top: -3px; }
  .bwp-widget-feature-product .content-bottom .rating .star-rating {
    font-size: 12px; }
  .bwp-widget-feature-product .content-bottom .rating .review-count {
    display: inline-block;
    position: relative;
    top: -3px;
    font-size: 10px; }
  @media (max-width: 1199px) and (min-width: 991px) {
  .bwp-widget-feature-product .title-feature {
    font-size: 16px; }
  .bwp-widget-feature-product .item-thumb {
    flex: 0 0 60px; } }
/* 8. Widget */
/************************************************************************************************
 TOP BANNER LISTING
 ************************************************************************************************ */
.bwp_widget_image {
  margin-bottom: 40px; }
  .bwp_widget_image .container-banner {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bwp_widget_image .container-banner .boxContent {
    max-width: 640px;
    padding: 30px;
    text-align: center;
    color: white; }
  .bwp_widget_image .container-banner .boxContent .boxSubTitle {
    margin: 0px;
    padding: 10px 0;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase; }
  .bwp_widget_image .container-banner .boxContent .boxTitle {
    margin: 0px;
    padding: 10px 0;
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff; }
  .bwp_widget_image .container-banner .boxContent .btn, .bwp_widget_image .container-banner .boxContent .clear-all {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 0;
    padding: 5px 20px;
    height: 42px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease-in-out 0.3s;
    transition: opacity 0.3s ease-in-out 0.3s; }
  .bwp_widget_image .container-banner .boxContent .btn:hover, .bwp_widget_image .container-banner .boxContent .clear-all:hover {
    border-color: #D3AD47;
    background-color: #D3AD47; }
/*
 widget styles
 *------------------------------------
 */
.title_block h4 {
  font-size: 5rem;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 2px;
  padding-bottom: 15px;
  padding-bottom: 20px;
  margin-bottom: 30px; }
  .title_block h4:before, .title_block h4:after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%; }
  .rtl .title_block h4:before, .rtl .title_block h4:after {
    right: 50%;
    left: auto; }
  .title_block h4:before {
    width: 20%;
    margin-left: -10%;
    background-color: #e0e0e0; }
  .rtl .title_block h4:before {
    margin-right: -10%;
    margin-left: 0; }
  .title_block h4:after {
    width: 10%;
    margin-left: -5%;
    background-color: #616161;
    z-index: 1; }
  .rtl .title_block h4:after {
    margin-right: -5%;
    margin-left: 0; }
/*
 Widget Genaral
 *------------------------------------
 */
.widget label {
  font-weight: 400; }
  .widget .widget_sp_image-image-link {
    display: block;
    overflow: hidden;
    position: relative; }
  .widget .widget_sp_image-image-link img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .widget .post-widget .image {
    width: 70px;
    height: 70px;
    margin: 0;
    margin-right: 10px; }
  .rtl .widget .post-widget .image {
    margin-left: 10px;
    margin-right: 0; }
  .widget .post-widget .image img {
    width: 100%;
    height: 100%; }
  .widget.widget_archive ul, .widget.widget_archive ol {
    padding: 0;
    list-style: none; }
  .widget.widget_archive ul li .children > li:before, .widget.widget_archive ol li .children > li:before {
    top: 24px; }
  .widget.widget_archive ul ul li:first-child, .widget.widget_archive ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_pages ul, .widget.widget_pages ol {
    padding: 0;
    list-style: none; }
  .widget.widget_pages ul li .children > li:before, .widget.widget_pages ol li .children > li:before {
    top: 24px; }
  .widget.widget_pages ul ul li:first-child, .widget.widget_pages ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_meta ul, .widget.widget_meta ol {
    padding: 0;
    list-style: none; }
  .widget.widget_meta ul li .children > li:before, .widget.widget_meta ol li .children > li:before {
    top: 24px; }
  .widget.widget_meta ul ul li:first-child, .widget.widget_meta ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_nav_menu ul, .widget.widget_nav_menu ol {
    padding: 0;
    list-style: none; }
  .widget.widget_nav_menu ul li .children > li:before, .widget.widget_nav_menu ol li .children > li:before {
    top: 24px; }
  .widget.widget_nav_menu ul ul li:first-child, .widget.widget_nav_menu ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_rss ul, .widget.widget_rss ol {
    padding: 0;
    list-style: none; }
  .widget.widget_rss ul li .children > li:before, .widget.widget_rss ol li .children > li:before {
    top: 24px; }
  .widget.widget_rss ul ul li:first-child, .widget.widget_rss ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_rss ul li {
    background: none;
    margin-bottom: 10px; }
  .widget.widget_rss ul li a {
    padding: 0; }
  .widget.widget_recent_entries ul, .widget.widget_recent_entries ol {
    padding: 0;
    list-style: none; }
  .widget.widget_recent_entries ul li .children > li:before, .widget.widget_recent_entries ol li .children > li:before {
    top: 24px; }
  .widget.widget_recent_entries ul ul li:first-child, .widget.widget_recent_entries ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_recent_entries ul li {
    background: none; }
  .widget.widget_recent_comments ul, .widget.widget_recent_comments ol {
    padding: 0;
    list-style: none; }
  .widget.widget_recent_comments ul li .children > li:before, .widget.widget_recent_comments ol li .children > li:before {
    top: 24px; }
  .widget.widget_recent_comments ul ul li:first-child, .widget.widget_recent_comments ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_recent_comments ul li {
    background: none; }
  .widget.widget_rss ul, .widget.widget_rss ol {
    padding: 0;
    list-style: none; }
  .widget.widget_rss ul li .children > li:before, .widget.widget_rss ol li .children > li:before {
    top: 24px; }
  .widget.widget_rss ul ul li:first-child, .widget.widget_rss ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_rss ul li {
    background: none; }
  .widget.widget_rss ul li a {
    padding: 0; }
  .widget.widget_rss ul li:before {
    display: none; }
/*
 Widget Contact Us
 *------------------------------------
 */
.contact {
  margin: 0;
  padding: 0; }
  .contact:before, .contact:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .contact:after {
    clear: both; }
  .contact dt {
    float: left;
    width: 30px;
    height: auto; }
  .rtl .contact dt {
    float: right; }
  .contact dd {
    overflow: hidden;
    margin-bottom: 5px; }
  .contact .contact-icon {
    display: block;
    text-align: center;
    background: #D3AD47;
    float: left;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px; }
  .rtl .contact .contact-icon {
    float: right; }
  .contact .contact-icon .fa {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0 4px; }
  .rtl .contact .contact-icon .fa {
    margin: 0 4px 0 0; }
/*
 Widget Newsletter
 *------------------------------------
 */
.wpcf7-form div.wpcf7-validation-errors, .wpcf7-form div.wpcf7-acceptance-missing {
  margin-top: 15px; }

.wpbingo-newsletter-1 {
  background-color: transparent;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .wpbingo-newsletter-1 .title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 25px;
    text-transform: uppercase; }
  .wpbingo-newsletter-1 .sub-title {
    color: #868686; }
  .wpbingo-newsletter-1 .content-newsletter {
    margin-left: 90px;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center; }
  @media (max-width: 1199px) {
    .wpbingo-newsletter-1 .content-newsletter {
      margin-left: 40px; } }
  @media (max-width: 991px) {
    .wpbingo-newsletter-1 .content-newsletter {
      margin-left: 0;
      margin-bottom: 25px; } }
  @media (max-width: 767px) {
    .wpbingo-newsletter-1 .content-newsletter {
      max-width: unset;
      min-width: unset; } }
  .wpbingo-newsletter-1 .content-newsletter input[type="email"] {
    height: 40px;
    line-height: 40px; }
  .wpbingo-newsletter-1 .content-newsletter .clearfix {
    position: relative; }
  .wpbingo-newsletter-1 .content-newsletter .your-email {
    flex: 1; }
  .wpbingo-newsletter-1 input[type="email"] {
    border: 0;
    background: white;
    font-weight: 300;
    width: 100%;
    padding: 0 20px;
    border: none; }
  .wpbingo-newsletter-1 input[type="email"]:-moz-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1 input[type="email"]::-moz-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1 input[type="email"]:-ms-input-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1 input[type="email"]::-webkit-input-placeholder {
    color: #a3a3a3; }
  @media (max-width: 1199px) {
    .wpbingo-newsletter-1 input[type="email"] {
      padding: 0 15px; } }
  .wpbingo-newsletter-1 input[type="email"]::placeholder {
    font-size: 14px; }
  .wpbingo-newsletter-1 input[type="submit"] {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    line-height: 40px;
    padding: 0 15px; }
  .rtl .wpbingo-newsletter-1 input[type="submit"] {
    margin-right: 10px;
    margin-left: 0; }
  .wpbingo-newsletter-1 input[type="submit"]:hover {
    background: #000;
    color: #fff; }
  .wpbingo-newsletter-1 span.wpcf7-not-valid-tip {
    margin-top: 15px; }
  @media (max-width: 991px) {
  .wpbingo-newsletter-1 .title-newsletter {
    width: 100%;
    text-align: center;
    margin-bottom: 25px; } }

.wpbingo-newsletter-1-1 {
  background-color: transparent;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .wpbingo-newsletter-1-1 .content-newsletter {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center; }
  .wpbingo-newsletter-1-1 .content-newsletter input[type="email"] {
    height: 55px;
    line-height: 55px; }
  .wpbingo-newsletter-1-1 .content-newsletter .clearfix {
    position: relative; }
  .wpbingo-newsletter-1-1 .content-newsletter .your-email {
    flex: 1; }
  .wpbingo-newsletter-1-1 input[type="email"] {
    border: 0;
    background: white;
    font-weight: 300;
    width: 100%;
    padding: 0 20px;
    border: none;
    border: 1px solid rgba(163, 163, 163, 0.5); }
  .wpbingo-newsletter-1-1 input[type="email"]:-moz-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1-1 input[type="email"]::-moz-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1-1 input[type="email"]:-ms-input-placeholder {
    color: #a3a3a3; }
  .wpbingo-newsletter-1-1 input[type="email"]::-webkit-input-placeholder {
    color: #a3a3a3; }
  @media (max-width: 1199px) {
    .wpbingo-newsletter-1-1 input[type="email"] {
      padding: 0 15px; } }
  .wpbingo-newsletter-1-1 input[type="email"]::placeholder {
    font-size: 14px; }
  .wpbingo-newsletter-1-1 input[type="submit"] {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    line-height: 55px;
    padding: 0 15px; }
  .wpbingo-newsletter-1-1 input[type="submit"]:hover {
    background: #000;
    color: #fff; }
  .wpbingo-newsletter-1-1 span.wpcf7-not-valid-tip {
    margin-top: 15px; }
  @media (max-width: 991px) {
  .wpbingo-newsletter-1-1 .title-newsletter {
    width: 100%;
    text-align: center;
    margin-bottom: 25px; } }

.wpbingo-newsletter.newsletter-default .content-newsletter {
  max-width: 690px;
  margin: auto;
  display: flex; }
  .wpbingo-newsletter.newsletter-default .content-newsletter .wpcf7-form-control-wrap {
    width: 100%; }
  .wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"] {
    width: 100%;
    border: 0;
    padding: 0 20px;
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    background: #fff; }
  .wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"]::placeholder {
    color: #a8a7a7; }
  @media (max-width: 480px) {
        .wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"] {
          padding: 0 10px; } }
  .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"] {
    border: 0;
    background: #000;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 40px;
    height: 55px;
    line-height: 55px;
    font-weight: 600;
    position: relative;
    top: 0;
    cursor: pointer;
    letter-spacing: 1.5px; }
  .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"]:hover {
    background: #ff9600; }
  @media (max-width: 480px) {
        .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"] {
          padding: 0 20px; } }
  .wpbingo-newsletter.newsletter-default .content-newsletter .clearfix {
    position: relative; }
  .wpbingo-newsletter.newsletter-default .content-newsletter .ajax-loader {
    position: absolute;
    left: calc(50% - 8px); }
  .wpbingo-newsletter.wpbingo-newsletter-sidebar {
    background: #f5f5f5;
    padding: 35px 20px 40px 20px;
    color: #000; }
  .rtl .wpbingo-newsletter.wpbingo-newsletter-sidebar {
    padding: 35px 20px 40px 20px; }
  .wpbingo-newsletter.wpbingo-newsletter-sidebar .content-newsletter {
    display: block; }
  .wpbingo-newsletter.wpbingo-newsletter-sidebar input[type="email"] {
    border: 2px solid #dedede;
    background: #fff;
    margin-bottom: 10px; }
  .wpbingo-newsletter.wpbingo-newsletter-sidebar input[type="submit"] {
    width: 100%; }
/* Owl carousel post */
@media (max-width: 1199px) {
    .bwp-recent-post .slick-list {
      margin: 0 -7.5px; }
      .bwp-recent-post .slick-list .post-grid {
        padding: 0 7.5px; } }
  .bwp-recent-post.slider .bwp-heading-content {
    display: flex;
    justify-content: space-between;
    margin: 0 0 25px; }
  .bwp-recent-post.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-recent-post.slider .title-block h2 {
    margin: 0;
    font-size: 24px; }
  .bwp-recent-post.slider .page-description {
    font-size: 16px; }
  .bwp-recent-post.slider .btn-all a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp-recent-post.slider .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp-recent-post.slider .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-recent-post.slider .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  @media (max-width: 1199px) {
      .bwp-recent-post.slider .slick-arrow.fa-angle-left {
        left: -15px; }
        .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-left {
          right: -15px;
          left: auto; }
      .bwp-recent-post.slider .slick-arrow.fa-angle-right {
        right: -15px; }
        .rtl .bwp-recent-post.slider .slick-arrow.fa-angle-right {
          left: -15px;
          right: auto; } }
  .bwp-recent-post.slider .post-inner {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid #ddd; }
  .bwp-recent-post.slider .post-inner:hover .post-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .bwp-recent-post.slider .post-content {
    padding: 25px 20px;
    background: #fff; }
  .bwp-recent-post.slider .post-image {
    position: relative;
    overflow: hidden; }
  .bwp-recent-post.slider .post-image img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .bwp-recent-post.slider .cat-links {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 20px; }
  .bwp-recent-post.slider .cat-links ul {
    padding: 0;
    list-style: none; }
  .bwp-recent-post.slider .cat-links ul li {
    display: inline-block;
    margin-right: 5px; }
  .rtl .bwp-recent-post.slider .cat-links ul li {
    margin-left: 5px;
    margin-right: 0; }
  @media (max-width: 480px) {
          .bwp-recent-post.slider .cat-links ul li {
            display: block;
            margin: 0 0 5px; } }
  .bwp-recent-post.slider .cat-links a {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #D3AD47;
    line-height: 25px;
    padding: 0 12px;
    display: inline-block; }
  .bwp-recent-post.slider .entry-title {
    font-size: 18px;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0px 0 15px; }
  @media (max-width: 480px) {
      .bwp-recent-post.slider .entry-title {
        font-size: 18px; } }
  .bwp-recent-post.slider .entry-by {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500; }
  .bwp-recent-post.slider .entry-by i {
    color: #000;
    font-size: 15px;
    margin-right: 10px;
    position: relative;
    top: 3px; }
  .rtl .bwp-recent-post.slider .entry-by i {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-recent-post.slider .entry-by a {
    color: #868686; }
  .bwp-recent-post.slider .entry-by a:hover {
    color: #D3AD47; }
  .bwp-recent-post.slider .entry-by .entry-author {
    display: flex;
    align-items: center; }
  .bwp-recent-post.slider .entry-by .entry-author:after {
    content: "";
    width: 1px;
    height: 20px;
    margin: 0 17px;
    display: inline-block;
    background: #c4c4c4; }
  .bwp-recent-post.slider .entry-by .entry-author i {
    top: 2px; }
  @media (max-width: 480px) {
      .bwp-recent-post.slider .entry-by {
        font-size: 12px; }
        .bwp-recent-post.slider .entry-by i {
          margin-right: 5px; }
          .rtl .bwp-recent-post.slider .entry-by i {
            margin-left: 5px;
            margin-right: 0; } }
  @media (max-width: 991px) {
    .bwp-recent-post.slider .bwp-heading-content {
      display: block;
      text-align: center; }

    .bwp-recent-post.slider .title-block h2 {
      font-size: 20px; } }
  .bwp-recent-post.sidebar .post-grid {
    margin: 0; }
  .bwp-recent-post.sidebar .post-grid:last-child .item {
    border-bottom: 0; }
  .bwp-recent-post.sidebar .item {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0; }
  .bwp-recent-post.sidebar .item > * {
    display: table-cell;
    vertical-align: top; }
  @media (max-width: 1199px) and (min-width: 992px) {
        .bwp-recent-post.sidebar .item > * {
          display: block; } }
  .bwp-recent-post.sidebar .item > .post-thumbnail {
    width: 70px;
    position: relative; }
  @media (max-width: 1199px) and (min-width: 992px) {
        .bwp-recent-post.sidebar .item > .post-thumbnail {
          width: 100%; } }
  .bwp-recent-post.sidebar .item > .post-thumbnail .cout {
    width: 24px;
    height: 24px;
    font-size: 10px;
    background: #000;
    color: #fff;
    line-height: 24px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0; }
  .rtl .bwp-recent-post.sidebar .item > .post-thumbnail .cout {
    right: 0;
    left: auto; }
  .bwp-recent-post.sidebar .item .post-content {
    position: relative;
    top: -7px;
    padding-left: 20px; }
  .rtl .bwp-recent-post.sidebar .item .post-content {
    padding-right: 20px;
    padding-left: 0; }
  @media (max-width: 1199px) and (min-width: 992px) {
        .bwp-recent-post.sidebar .item .post-content {
          padding: 0;
          margin-top: 15px; } }
  .bwp-recent-post.sidebar .item .post-content .post-categories {
    margin-bottom: 5px; }
  .bwp-recent-post.sidebar .item .post-content .post-categories a {
    font-size: 11px;
    color: #D3AD47;
    text-transform: uppercase;
    font-weight: 700; }
  .bwp-recent-post.sidebar .item .post-content h2.entry-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    margin-bottom: 3px; }
  .bwp-recent-post.sidebar .item .post-content h2.entry-title a {
    color: #000; }
  .bwp-recent-post.sidebar .item .post-content h2.entry-title a:hover {
    color: #D3AD47; }
  .bwp-recent-post.sidebar .item .post-content span.entry-date {
    display: block;
    text-transform: uppercase; }
  .bwp-recent-post.sidebar .item .post-content span.entry-date time {
    color: #868686;
    font-size: 10px;
    font-weight: 500; }
  .bwp-recent-post.sidebar .item .post-content .entry-link a {
    color: #000; }
  .bwp-recent-post.sidebar .item .post-content .entry-link a:hover {
    color: #D3AD47; }
  .bwp-recent-post.default .post-content {
    margin-top: 10px; }
  .bwp-recent-post.default .categories a {
    color: #D3AD47;
    font-size: 14px; }
  .bwp-recent-post.default .categories a:hover {
    color: #000; }
  .bwp-recent-post.default .entry-title {
    line-height: 1.3;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0; }
  .bwp-recent-post.default .date-cmt {
    display: flex; }
  .bwp-recent-post.default .date-cmt time.entry-date {
    color: #868686;
    font-size: 14px; }
  .bwp-recent-post.default .entry-meta-head {
    font-size: 14px;
    color: #868686; }
  .bwp-recent-post.default .entry-meta-head:before {
    content: "-";
    display: inline-block;
    margin: 0 3px 0 5px; }
  .bwp-recent-post.blog-menu .post-thumbnail {
    display: inline-block;
    max-width: 125px;
    flex: 0 0 125px; }
  .bwp-recent-post.blog-menu .post-thumbnail img {
    max-width: 125px; }
  .bwp-recent-post.blog-menu .item {
    display: flex; }
  .bwp-recent-post.blog-menu .post-content {
    padding-left: 30px; }
  .rtl .bwp-recent-post.blog-menu .post-content {
    padding-right: 30px;
    padding-left: 0; }
  .bwp-recent-post.blog-menu .entry-title {
    font-size: 16px;
    margin: 0 0 5px; }
  .bwp-recent-post.blog-menu .post-grid {
    margin-bottom: 15px; }
  .bwp-recent-post.blog-menu .post-grid:last-child {
    margin-bottom: 0; }
  .bwp-recent-post.blog-menu .day-cmt > * {
    display: inline-block;
    font-size: 14px;
    color: #868686; }
  .bwp-recent-post.blog-menu .day-cmt > *:before {
    content: "|";
    display: inline-block;
    margin: 0 5px;
    color: #d7d7d7; }
  .bwp-recent-post.blog-menu .day-cmt > *:first-child:before {
    display: none; }
  .bwp-recent-post.blog-menu .day-cmt > * a {
    color: #868686; }
  .bwp-recent-post.blog-menu .day-cmt > * time {
    color: #868686; }

.widget_text select {
  width: 100%;
  white-space: pre-wrap; }

.sidebar .widget > ul ul.children {
  padding: 0 20px; }
  .sidebar .widget ul.sub-menu {
    padding: 0 20px; }

.template-news .bwp-sidebar .post-widget .blog-title, .template-news .bwp-sidebar .comment-widget .blog-title, .template-news .bwp-sidebar .post-widget h6, .template-news .bwp-sidebar .comment-widget h6 {
  text-transform: none;
  font-weight: 700;
  font-size: 12px; }

.flickr-gallery img {
  padding: 0;
  margin: 4px;
  width: 60px;
  height: 60px;
  float: left; }
  .rtl .flickr-gallery img {
    float: right; }
/*
 Widget Sidebar
 *------------------------------------
 */
.bwp-sidebar > .widget {
  margin-bottom: 30px;
  padding: 0;
  border: none; }
  .bwp-sidebar > .widget:empty {
    display: none; }
  .bwp-sidebar > .widget:last-child {
    margin-bottom: 0; }
  .bwp-sidebar > .widget.bwp_widget_image {
    padding: 0;
    overflow: hidden;
    border: none; }
  @media (max-width: 991px) {
        .bwp-sidebar > .widget.bwp_widget_image .bwp-image {
          text-align: center; } }
  .bwp-sidebar > .widget.widget_product_categories {
    margin-bottom: 50px; }
  .bwp-sidebar > .widget .bwp-filter-size {
    margin-bottom: 55px !important; }
  .bwp-sidebar > .widget.widget_categories ul li {
    padding: 15px 0 !important;
    font-size: 11px;
    font-weight: 500; }
  .bwp-sidebar > .widget.widget_categories ul li a {
    color: #868686; }
  .bwp-sidebar > .widget.widget_categories ul li a:hover {
    color: #D3AD47; }
  .bwp-sidebar > .widget.widget_categories ul li:last-child {
    border-bottom: 0; }
  .bwp-sidebar > .widget.widget_categories ul li.current-cat a {
    color: #D3AD47; }
  .bwp-sidebar > .widget.widget_categories ul li .children li:last-child {
    padding-bottom: 0; }
  .bwp-sidebar > .widget.widget_rss .rss-widget-icon {
    margin-top: 3px !important; }
  .bwp-sidebar > .widget.widget_rss ul li {
    padding-left: 0 !important; }
  .rtl .bwp-sidebar > .widget.widget_rss ul li {
    padding-right: 0 !important;
    padding-left: 0; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-category-menu ul li {
    padding: 5px 0 !important; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-category-menu ul li a {
    padding: 0 !important;
    border-bottom: 0 !important;
    font-size: 15px !important;
    margin: 0 !important; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-category-menu ul li a:hover {
    color: #D3AD47 !important; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-category-menu #cat-drop-stack ul li:last-child.has-children a {
    border-bottom: 0 !important; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-category-menu #cat-drop-stack > ul li.parent-cat-wrap ul.level-0 {
    background: transparent; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li {
    padding: 0;
    display: flex;
    margin-bottom: 20px; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li:last-child {
    margin-bottom: 0; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li:before {
    display: none; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .product-title {
    font-size: 15px;
    color: #868686;
    font-weight: 400;
    display: block; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .thumbnail-content {
    width: 100%;
    max-width: 100px; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .box-content {
    padding-left: 20px; }
  .rtl .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .box-content {
    padding-right: 20px;
    padding-left: 0; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .woocommerce-Price-amount {
    color: #000;
    font-size: 16px; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li .woocommerce-Price-amount > span {
    color: #000; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li ins {
    text-decoration: none; }
  .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li del .woocommerce-Price-amount {
    color: #868686;
    font-weight: 400;
    font-size: 14px; }
    .bwp-sidebar > .widget.dokan-store-widget.widget_products .product_list_widget li del .woocommerce-Price-amount > span {
      color: #868686;
      font-weight: 400; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-store-contact ul li {
    padding: 0 !important; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-store-contact ul li:before {
    display: none; }
  .bwp-sidebar > .widget.dokan-store-widget.dokan-store-contact .dokan-btn-theme {
    padding: 0 20px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 12px;
    letter-spacing: 2px; }
  .bwp-sidebar > .widget.dokan-store-widget #cat-drop-stack > ul li a {
    color: #868686; }
  .bwp-sidebar > .widget.dokan-store-widget #cat-drop-stack > ul li a:hover {
    color: #D3AD47; }
  .bwp-sidebar > .widget .widgettitle, .bwp-sidebar > .widget .widget-title, .bwp-sidebar > .widget .title_brand h2 {
    color: #000;
    padding: 10px 20px;
    background: #efefef;
    font-weight: 600;
    font-size: 15px;
    margin: 0px 0 25px 0;
    position: relative;
    text-transform: uppercase;
    border: 0;
    border-left: 3px solid #D3AD47;
    line-height: 20px; }
  .rtl .bwp-sidebar > .widget .widgettitle, .rtl .bwp-sidebar > .widget .widget-title, .rtl .bwp-sidebar > .widget .title_brand h2 {
    border-right: 3px solid #D3AD47;
    border-left: 0; }
  .bwp-sidebar > .widget .widgettitle .rsswidget .rss-widget-icon, .bwp-sidebar > .widget .widget-title .rsswidget .rss-widget-icon, .bwp-sidebar > .widget .title_brand h2 .rsswidget .rss-widget-icon {
    margin-top: 5px; }
  .bwp-sidebar > .widget > div > ul:not(.social-link), .bwp-sidebar > .widget > ul {
    padding-left: 0px !important;
    margin-top: -7px;
    margin-bottom: -7px; }
  .rtl .bwp-sidebar > .widget > div > ul:not(.social-link), .rtl .bwp-sidebar > .widget > ul {
    padding-right: 0px !important;
    padding-left: 0; }
  .bwp-sidebar > .widget > div > ul:not(.social-link) > li a, .bwp-sidebar > .widget > ul > li a, .bwp-sidebar > .widget > div > ul:not(.social-link) > li span, .bwp-sidebar > .widget > ul > li span {
    color: #868686; }
  .bwp-sidebar > .widget > div > ul:not(.social-link) > li.current-cat > a, .bwp-sidebar > .widget > ul > li.current-cat > a, .bwp-sidebar > .widget > div > ul:not(.social-link) > li.open > a, .bwp-sidebar > .widget > ul > li.open > a {
    color: #D3AD47; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) {
    background: transparent;
    padding: 0;
    border: none;
    padding-left: 15px; }
  .rtl .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) {
    padding-right: 15px;
    padding-left: 0; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) {
    padding: 5px 0;
    list-style: none;
    color: #868686; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments):first-child {
    padding-top: 0;
    border-top: none; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .count {
    display: inline-block; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) a:not(.rsswidget) {
    color: #868686; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) a:not(.rsswidget):hover, .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) a:not(.rsswidget).active {
    color: #D3AD47; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat {
    color: #D3AD47; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat > a, .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat > span {
    color: #D3AD47;
    cursor: pointer; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat > a .count, .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat > span .count {
    color: #D3AD47; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments).current-cat:before {
    color: #D3AD47 !important; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget).children {
    margin-top: 12px; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget).children li:last-child {
    padding-bottom: 0; }
  .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li.cat-parent .children li {
    padding-left: 20px; }
  .rtl .bwp-sidebar > .widget ul:not(.social-link,.content-products,.product_list_widget) li.cat-parent .children li {
    padding-right: 20px;
    padding-left: 0; }
  .bwp-sidebar > .widget.widget_recent_comments ul li {
    padding: 5px 0;
    list-style: none;
    color: #868686;
    padding-left: 20px; }
  .rtl .bwp-sidebar > .widget.widget_recent_comments ul li {
    padding-right: 20px;
    padding-left: 0; }
  .bwp-sidebar > .widget.widget_recent_comments ul li:first-child {
    padding-top: 0;
    border-top: none; }
  .bwp-sidebar > .widget.widget_recent_comments ul li:before {
    content: "\f0e6";
    font-family: FontAwesome;
    font-size: 13px;
    color: rgba(134, 134, 134, 0.5);
    margin-right: 10px;
    margin-left: -20px; }
  .rtl .bwp-sidebar > .widget.widget_recent_comments ul li:before {
    margin-left: 10px;
    margin-right: 0; }
  .rtl .bwp-sidebar > .widget.widget_recent_comments ul li:before {
    margin-right: -20px;
    margin-left: 0; }
  .bwp-sidebar > .widget.widget_recent_comments ul li a {
    color: #868686;
    word-break: break-word; }
  .bwp-sidebar > .widget.widget_recent_comments ul li a:hover {
    color: #D3AD47; }
  .bwp-sidebar > .widget.widget_search #searchsubmit {
    font-size: 0;
    height: 45px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background: #000;
    padding: 0 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .bwp-sidebar > .widget.widget_search #searchsubmit:hover {
    background: #025029; }
  .bwp-sidebar > .widget.widget_search #searchsubmit:hover i {
    color: #fff; }
  .bwp-sidebar > .widget.widget_search i {
    font-size: 18px;
    line-height: 45px;
    color: #fff; }
  .bwp-sidebar > .widget.widget_search span {
    line-height: 45px;
    color: #fff; }
  .bwp-sidebar > .widget.widget_archive select, .bwp-sidebar > .widget.widget_text select, .bwp-sidebar > .widget.widget_categories select {
    margin-bottom: 10px; }
  .bwp-sidebar > .widget.widget_rss ul li {
    margin-left: 0 !important; }
  .rtl .bwp-sidebar > .widget.widget_rss ul li {
    margin-right: 0 !important;
    margin-left: 0; }
  .bwp-sidebar > .widget.widget_rss ul li > div {
    font-style: italic;
    color: rgba(134, 134, 134, 0.7); }
  .bwp-sidebar > .widget.widget_rss ul li a {
    display: block;
    color: #000; }
  .bwp-sidebar > .widget.widget_rss ul li a:hover {
    color: #D3AD47; }
  .bwp-sidebar > .widget.widget_rss ul li cite:before {
    content: "- "; }
  .bwp-sidebar > .widget.widget_rss ul li cite:after {
    content: " -"; }
  .bwp-sidebar > .widget.widget_tag_cloud .tagcloud a {
    color: #868686;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: transparent;
    padding: 10px 20px;
    text-transform: capitalize;
    position: relative; }
  .bwp-sidebar > .widget.widget_tag_cloud .tagcloud a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #efefef;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .rtl .bwp-sidebar > .widget.widget_tag_cloud .tagcloud a:before {
    right: 0;
    left: auto; }
  .bwp-sidebar > .widget.widget_tag_cloud .tagcloud a:hover {
    border-color: #D3AD47;
    color: #fff; }
  .bwp-sidebar > .widget.widget_tag_cloud .tagcloud a:hover:before {
    width: 100%;
    background: #D3AD47; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget {
    padding: 0;
    list-style: none; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li {
    padding: 20px !important;
    border-bottom: 1px dashed #e0e0e0;
    display: inline-block;
    width: 100%; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li:last-child {
    border-bottom: 0; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li img {
    max-width: 90px;
    float: left;
    margin-right: 20px; }
  .rtl .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li img {
    float: right; }
  .rtl .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li img {
    margin-left: 20px;
    margin-right: 0; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li .product-title {
    font-size: 14px;
    color: #000;
    display: block;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 10px; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li .woocommerce-Price-amount {
    color: #000;
    font-weight: 500;
    font-size: 16px; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    color: #000; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li del .woocommerce-Price-amount {
    color: #868686;
    font-size: 12px; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li del .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    color: #868686; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li ins {
    text-decoration: none; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li ins .woocommerce-Price-amount {
    color: #D3AD47; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li ins .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    color: #D3AD47; }
  .bwp-sidebar > .widget.woocommerce.widget_products .product_list_widget li a:hover .product-title {
    color: #D3AD47; }
  .bwp-sidebar > .widget .bwp-widget-banner {
    text-align: left;
    margin-bottom: 0; }
  .rtl .bwp-sidebar > .widget .bwp-widget-banner {
    text-align: right; }
  .bwp-sidebar ul.social-link li a {
    border: 1px solid #000;
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-sidebar ul.social-link li a i {
    color: #fff; }
  .bwp-sidebar ul.social-link li a:hover {
    background: #fff; }
  .bwp-sidebar ul.social-link li a:hover i {
    color: #000; }
  .bwp-sidebar.sidebar-blog > .widget {
    border: 1px solid #e0e0e0; }
  .bwp-sidebar.sidebar-blog > .widget:not(.bwp_recent_post_widget).widget_categories > form {
    border: 0 !important; }
  .bwp-sidebar.sidebar-blog > .widget:not(.bwp_recent_post_widget).widget_categories > form select {
    padding: 15px 20px;
    border: 0;
    background-position: calc(100% - 24px) calc(1em + 12px), calc(100% - 18px) calc(1em + 12px), calc(100% - 2.5em) 0.5em; }
  .bwp-sidebar.sidebar-blog > .widget:not(.bwp_recent_post_widget).widget_categories > form select:focus {
    background-position: calc(100% - 23px) calc(1em + 12px), calc(100% - 18px) calc(1em + 12px), calc(100% - 2.5em) 0.5em;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-size: 6px 5px, 6px 5px, 0 1.5em; }
  .bwp-sidebar.sidebar-blog > .widget:not(.bwp_recent_post_widget).widget_archive select {
    border: 0;
    padding: 15px 20px;
    background-position: calc(100% - 24px) calc(1em + 12px), calc(100% - 18px) calc(1em + 12px), calc(100% - 2.5em) 0.5em; }
  .bwp-sidebar.sidebar-blog > .widget:not(.bwp_recent_post_widget).widget_archive select:focus {
    background-position: calc(100% - 23px) calc(1em + 12px), calc(100% - 18px) calc(1em + 12px), calc(100% - 2.5em) 0.5em;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-size: 6px 5px, 6px 5px, 0 1.5em; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) {
    margin: 0;
    overflow: hidden;
    padding: 0; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget).children {
    padding: 0; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) {
    font-size: 14px;
    padding: 10px 2px 10px 20px !important;
    position: relative;
    font-weight: 500; }
  .rtl .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) {
    padding: 10px 20px !important 10px 2px; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments):after {
    position: absolute;
    top: 0;
    width: 500px;
    border-top: 1px solid #e0e0e0;
    height: 1px;
    left: calc(50% - 250px);
    content: ""; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments):before {
    content: "\35";
    display: inline-block;
    font-family: eleganticons;
    font-size: 15px;
    margin-right: 3px;
    position: relative;
    top: 1px;
    color: #D3AD47;
    line-height: 1; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .children, .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .sub-menu {
    margin-top: 10px;
    padding: 0;
    overflow: unset;
    position: relative; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .children li:last-child, .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .sub-menu li:last-child {
    padding-bottom: 0 !important; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .children:after, .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) .sub-menu:after {
    position: absolute;
    top: 0;
    width: 1000px;
    border-top: 1px solid #e0e0e0;
    height: 1px;
    left: calc(50% - 500px);
    content: ""; }
  .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments):first-child:after {
    display: none; }
  @media (max-width: 1199px) {
            .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) {
              padding: 10px 2px 10px 10px !important; }
              .rtl .bwp-sidebar.sidebar-blog > .widget:not(.widget_rss) ul:not(.social-link,.content-products,.product_list_widget) li:not(.recentcomments) {
                padding: 10px 10px !important 10px 2px; } }
  .bwp-sidebar.sidebar-blog > .widget.widget_recent_comments ul li {
    color: rgba(134, 134, 134, 0.75); }
  .bwp-sidebar.sidebar-blog > .widget.widget_recent_comments ul li a {
    color: #6d6d6d; }
  .bwp-sidebar.sidebar-blog > .widget.widget_recent_comments ul li a:hover {
    color: #D3AD47; }
  .bwp-sidebar.sidebar-blog > .widget .widget-title {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 11px 20px;
    font-family: 'Montserrat', sans-serif; }
  .bwp-sidebar.sidebar-blog > .widget.widget_tag_cloud > *:not(.widget-title), .bwp-sidebar.sidebar-blog > .widget.widget_recent_comments > *:not(.widget-title), .bwp-sidebar.sidebar-blog > .widget.widget_calendar > *:not(.widget-title), .bwp-sidebar.sidebar-blog > .widget.widget_text > *:not(.widget-title), .bwp-sidebar.sidebar-blog > .widget.widget_rss > *:not(.widget-title), .bwp-sidebar.sidebar-blog > .widget.widget_search > *:not(.widget-title) {
    padding: 20px !important; }
  .bwp-sidebar.sidebar-single-product .policy-single {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background: #f5f5f5 !important; }
  .bwp-sidebar.sidebar-single-product .policy-single li {
    display: flex;
    align-items: center;
    padding: 20px !important;
    border-bottom: 1px solid #e0e0e0; }
  .bwp-sidebar.sidebar-single-product .policy-single li:last-child {
    border-bottom: 0; }
  .bwp-sidebar.sidebar-single-product .policy-single li i {
    font-size: 40px;
    color: #D3AD47; }
  .bwp-sidebar.sidebar-single-product .policy-single li h2 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600; }
  .bwp-sidebar.sidebar-single-product .policy-single li p {
    margin: 0; }
  .bwp-sidebar.sidebar-single-product .policy-single li .content {
    padding-left: 20px; }
  .rtl .bwp-sidebar.sidebar-single-product .policy-single li .content {
    padding-right: 20px;
    padding-left: 0; }
/*
 Widget Newsletter
 *------------------------------------
 */
.widget_mc4wp_widget form {
  margin: 0; }
/*
 Widget Brands
 *------------------------------------
 */
.brands .vc_item {
  opacity: 0.5;
  filter: alpha(opacity=50); }
  .brands .vc_item.vc_active, .brands .vc_item:hover {
    opacity: 1;
    filter: alpha(opacity=100); }
/*
 Social
 *------------------------------------
 */
.list-social {
  margin: 0;
  line-height: 0;
  text-align: center; }
  .list-social li {
    display: inline-block;
    margin-bottom: 0 !important; }
  .list-social li a {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    margin: 0 18px 0 0;
    width: 32px;
    height: 32px;
    overflow: hidden;
    display: block;
    padding: 6px;
    color: #000;
    background: #fff; }
  .list-social li a > * {
    display: block;
    color: #000;
    font-size: 18px; }
  .list-social li a .fa, .list-social li a [class^="icon-"], .list-social li a [class*=" icon-"] {
    z-index: 1;
    position: relative; }
  .list-social li a:hover {
    background: #D3AD47; }
  .list-social li a:hover > * {
    color: #fff; }
  .list-social li a:hover.dribbble {
    background: #f26798; }
  .list-social li a:hover.facebook {
    background: #3b589e; }
  .list-social li a:hover.google-plus {
    background: #d44132; }
  .list-social li a:hover.skype {
    background: #00a8e6; }
  .list-social li a:hover.tumblr {
    background: #465a74; }
  .list-social li a:hover.twitter {
    background: #40bbf7; }
  .list-social li a:hover.youtube {
    background: #f04e43; }
  .list-social li a:hover.linkedin {
    background: #f8659c; }
  .list-social li:last-child a {
    margin: 0; }
/*
 Widget video
 *------------------------------------
 */
.wpb_video_widget .video-description {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 30px;
  font-size: 12px;
  color: #000; }
  .wpb_video_widget .wpb_wrapper .wpb_video_wrapper {
    padding-top: 60.7% !important; }

#block_contact_infos p {
  margin-bottom: 0; }
  #block_contact_infos .ct-adress {
    padding-left: 30px;
    margin-bottom: 10px; }
  .rtl #block_contact_infos .ct-adress {
    padding-right: 30px;
    padding-left: 0; }
  #block_contact_infos .ct-adress:before {
    content: "\f041";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    font-size: 17px; }
  .rtl #block_contact_infos .ct-adress:before {
    right: 0;
    left: auto; }
  #block_contact_infos .ct-phone {
    padding-left: 30px;
    margin-bottom: 10px; }
  .rtl #block_contact_infos .ct-phone {
    padding-right: 30px;
    padding-left: 0; }
  #block_contact_infos .ct-phone:before {
    content: "\f10b";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    font-size: 21px; }
  .rtl #block_contact_infos .ct-phone:before {
    right: 0;
    left: auto; }
  #block_contact_infos .ct-email {
    padding-left: 30px; }
  .rtl #block_contact_infos .ct-email {
    padding-right: 30px;
    padding-left: 0; }
  #block_contact_infos .ct-email:before {
    content: "\f0e0";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    font-size: 13px; }
  .rtl #block_contact_infos .ct-email:before {
    right: 0;
    left: auto; }

.mc4wp-form .btn, .mc4wp-form .clear-all {
  line-height: 20px; }

.bwp-ourteam {
  text-align: center; }
  .bwp-ourteam:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-ourteam .ourteam-customer-name {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: -2px;
    margin-top: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .bwp-ourteam .ourteam-items:hover .ourteam-image:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1); }
  .bwp-ourteam .ourteam-items:hover .ourteam-image .social-link {
    opacity: 1;
    visibility: visible; }
  .bwp-ourteam .slick-dots {
    margin-top: 10px; }
  .bwp-ourteam .ourteam-image {
    position: relative;
    text-align: center;
    padding: 30px;
    margin-bottom: -18px; }
  .bwp-ourteam .ourteam-image:after {
    content: "";
    top: 0;
    left: 0;
    border: 1px solid #D3AD47;
    width: 100%;
    height: 85%;
    position: absolute;
    z-index: -1; }
  .rtl .bwp-ourteam .ourteam-image:after {
    right: 0;
    left: auto; }
  .bwp-ourteam .ourteam-image:before {
    content: "";
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    -o-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  .bwp-ourteam .ourteam-image img {
    width: 100%; }
  @media (max-width: 480px) {
    .bwp-ourteam .ourteam-image {
      padding: 20px;
      margin-bottom: -10px; } }
  .bwp-ourteam .social-link {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2; }
  .bwp-ourteam .social-link li {
    margin: 0 7px; }
  .bwp-ourteam .social-link li a {
    font-size: 12px;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 42px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #000; }
  .bwp-ourteam .social-link li a i {
    font-size: 14px;
    color: #000; }
  .bwp-ourteam .social-link li a:hover {
    background: #D3AD47; }
  .bwp-ourteam .social-link li a:hover i {
    color: #fff; }
/************************************************************************************************
 WIDGET TITLE 
 *************************************************************************************************/
.widget h1.widget-title {
  font-size: 18px;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  margin: 0; }
  .rtl .widget h1.widget-title {
    padding: 0 0 10px 0; }
/************************************************************************************************
 WIDGET BEST SELLER 
 *************************************************************************************************/
.bwp_best_seller .content-best-seller {
  margin-top: 15px; }
  .bwp_best_seller .content-best-seller .post-item {
    margin-bottom: 30px;
    border: 1px solid #f5f5f5;
    display: flex; }
  .bwp_best_seller .content-best-seller .item-img {
    min-width: 95px; }
  .bwp_best_seller .content-best-seller .item-img img {
    width: 95px; }
  .bwp_best_seller .content-best-seller .item-content {
    padding-left: 20px;
    padding-right: 10px; }
  .rtl .bwp_best_seller .content-best-seller .item-content {
    padding-right: 20px;
    padding-left: 0; }
  .rtl .bwp_best_seller .content-best-seller .item-content {
    padding-left: 10px;
    padding-right: 0; }
  .bwp_best_seller .content-best-seller .item-content h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 12px;
    margin-bottom: 7px; }
  .bwp_best_seller .content-best-seller .item-content h4 a {
    color: #868686; }
  .bwp_best_seller .content-best-seller .item-content h4 a:hover {
    color: #D3AD47; }
  .bwp_best_seller .content-best-seller .item-content del > .woocommerce-Price-amount {
    color: #868686;
    font-weight: 300; }
  .bwp_best_seller .content-best-seller .item-content .woocommerce-Price-amount {
    color: #D3AD47;
    font-weight: 500; }
  .bwp_best_seller .content-best-seller .item-content ins {
    color: #868686;
    text-decoration: none;
    margin-left: 5px; }
  .rtl .bwp_best_seller .content-best-seller .item-content ins {
    margin-right: 5px;
    margin-left: 0; }
/************************************************************************************************
 WIDGET BANNER 
 *************************************************************************************************/
.bwp-widget-banner {
  position: relative; }
  @media (max-width: 991px) {
  .bwp-widget-banner .banners .bwp-image img {
    width: 100%; }
    .bwp-widget-banner .banners .bwp-image a {
      display: block; } }
  .bwp-widget-banner.default .bwp-image-subtitle {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    font-family: 'Audiowide', cursive;
    margin-bottom: 12px; }
  .bwp-widget-banner.default .title-banner {
    margin: 0 0 22px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase; }
  .bwp-widget-banner.default .button {
    font-size: 12px;
    line-height: 35px;
    display: inline-block;
    padding: 0 23px;
    color: #000;
    background: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-widget-banner.default .button:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp-widget-banner.default .banner-wrapper-infor {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 15px; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.default .bwp-image-subtitle {
      font-size: 35px;
      line-height: 35px; }

    .bwp-widget-banner.default .title-banner {
      font-size: 13px;
      letter-spacing: 1px; } }
  @media (max-width: 991px) {
    .bwp-widget-banner.default .bwp-image-subtitle {
      font-size: 25px;
      line-height: 25px; }

    .bwp-widget-banner.default .button {
      font-size: 10px;
      padding: 0 20px; } }
  @media (max-width: 480px) {
    .bwp-widget-banner.default .bwp-image-subtitle {
      font-size: 15px;
      line-height: 15px; }

    .bwp-widget-banner.default .title-banner {
      margin: 0 0 15px; } }
  .bwp-widget-banner.layout-1 .banner-wrapper-infor {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 30px;
    bottom: 35px; }
  .bwp-widget-banner.layout-1 .bwp-image-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 0 0 5px; }
  .bwp-widget-banner.layout-1 .title-banner {
    font-size: 26px;
    margin: 0 0 20px;
    font-weight: 400;
    color: #fff;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-1 .button {
    font-size: 12px;
    line-height: 35px;
    display: inline-block;
    padding: 0 23px;
    color: #000;
    background: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-widget-banner.layout-1 .button:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-1 .banner-wrapper-infor {
      padding: 0 15px;
      bottom: 20px; }

    .bwp-widget-banner.layout-1 .bwp-image-subtitle {
      letter-spacing: 1px;
      font-size: 13px; }

    .bwp-widget-banner.layout-1 .title-banner {
      font-size: 20px;
      margin: 0 0 15px; } }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-1 .bwp-image-subtitle {
      letter-spacing: 0; }

    .bwp-widget-banner.layout-1 .title-banner {
      font-size: 15px; }

    .bwp-widget-banner.layout-1 .button {
      font-size: 10px;
      padding: 0 20px; } }
  .bwp-widget-banner.layout-2 .banner-wrapper-infor {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .bwp-widget-banner.layout-2 .info {
    max-width: 400px;
    padding: 0 15px;
    margin-left: auto; }
  .rtl .bwp-widget-banner.layout-2 .info {
    margin-right: auto;
    margin-left: 0; }
  .bwp-widget-banner.layout-2 .bwp-image-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-2 .title-banner {
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'Audiowide', cursive;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff; }
  .bwp-widget-banner.layout-2 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 35px;
    letter-spacing: 1.5px;
    padding: 0 25px;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-2 .button:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-2 .info {
      max-width: 340px; }

    .bwp-widget-banner.layout-2 .title-banner {
      font-size: 25px; } }
  @media (max-width: 480px) {
    .bwp-widget-banner.layout-2 .bwp-image-subtitle {
      font-size: 15px; }

    .bwp-widget-banner.layout-2 .title-banner {
      font-size: 20px;
      margin: 0 0 10px; }

    .bwp-widget-banner.layout-2 .button {
      font-size: 10px;
      line-height: 30px;
      padding: 0 20px; } }
  .bwp-widget-banner.layout-3 .banner-wrapper-infor {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 15px;
    width: 100%;
    left: 0;
    text-align: center; }
  .bwp-widget-banner.layout-3 .bwp-image-subtitle {
    font-size: 28px;
    font-family: 'Audiowide', cursive;
    color: #fff;
    margin: 0 0 5px;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-3 .title-banner {
    margin: 0 0 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; }
  .bwp-widget-banner.layout-3 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 35px;
    letter-spacing: 1.5px;
    padding: 0 25px;
    color: #fff;
    background: #00b9ff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-3 .button:hover {
    background: #D3AD47; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-3 .bwp-image-subtitle {
      font-size: 25px;
      line-height: 30px; } }
  .bwp-widget-banner.layout-4 .banner-wrapper-infor {
    position: absolute;
    bottom: 30px;
    padding: 0 20px;
    width: 100%;
    left: 0; }
  .bwp-widget-banner.layout-4 .title-banner {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; }
  .bwp-widget-banner.layout-4 .bwp-image-subtitle {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-4 .bwp-image-description {
    margin-bottom: 12px; }
  .bwp-widget-banner.layout-4 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1.5px;
    padding: 0 20px;
    color: #fff;
    background: #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-4 .button:hover {
    background: #D3AD47; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-4 .banner-wrapper-infor {
      bottom: 20px; }

    .bwp-widget-banner.layout-4 .bwp-image-subtitle {
      font-size: 20px; } }
  .bwp-widget-banner.layout-5 .banner-wrapper-infor {
    position: absolute;
    bottom: 30px;
    padding: 0 20px;
    width: 100%;
    left: 0; }
  .bwp-widget-banner.layout-5 .title-banner {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; }
  .bwp-widget-banner.layout-5 .bwp-image-subtitle {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-5 .bwp-image-description {
    margin-bottom: 12px; }
  .bwp-widget-banner.layout-5 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1.5px;
    padding: 0 20px;
    color: #fff;
    background: #ff0a3e;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-5 .button:hover {
    background: #D3AD47; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-5 .banner-wrapper-infor {
      bottom: 20px; }

    .bwp-widget-banner.layout-5 .bwp-image-subtitle {
      font-size: 20px; } }
  .bwp-widget-banner.layout-6 .banner-wrapper-infor {
    position: absolute;
    bottom: 45px;
    width: 100%;
    left: 0;
    padding: 0 30px; }
  .bwp-widget-banner.layout-6 .title-banner {
    margin: 0 0 5px;
    font-family: 'Audiowide', cursive;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff; }
  .bwp-widget-banner.layout-6 .bwp-image-description {
    color: #fff;
    line-height: 14px;
    font-size: 14px;
    font-weight: 500; }
  .bwp-widget-banner.layout-6 .button {
    position: absolute;
    right: 0;
    display: inline-block;
    font-size: 12px;
    text-align: right;
    font-weight: 600;
    min-width: 185px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
  .rtl .bwp-widget-banner.layout-6 .button {
    left: 0;
    right: auto; }
  .rtl .bwp-widget-banner.layout-6 .button {
    text-align: left; }
  .bwp-widget-banner.layout-6 .button:after {
    font-family: wpbingofont;
    content: "\e91b";
    font-size: 10px;
    display: inline-block;
    margin-left: 5px;
    position: relative; }
  .rtl .bwp-widget-banner.layout-6 .button:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-widget-banner.layout-6 .button:hover {
    background: #D3AD47; }
  .bwp-widget-banner.layout-6 .button:hover:after {
    right: -3px; }
  .rtl .bwp-widget-banner.layout-6 .button:hover:after {
    left: -3px;
    right: auto; }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-6 .banner-wrapper-infor {
      padding: 0 15px; }

    .bwp-widget-banner.layout-6 .title-banner {
      font-size: 20px; } }
  .bwp-widget-banner.layout-7 .banner-wrapper-infor {
    position: absolute;
    bottom: 40px;
    padding: 0 35px;
    width: 100%;
    left: 0; }
  .bwp-widget-banner.layout-7 .bwp-image-description {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px; }
  .bwp-widget-banner.layout-7 .title-banner {
    font-size: 24px;
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px; }
  .bwp-widget-banner.layout-7 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    padding: 0 25px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-7 .button:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-7 .banner-wrapper-infor {
      bottom: 20px;
      padding: 0 20px; }

    .bwp-widget-banner.layout-7 .title-banner {
      font-size: 20px;
      margin: 0 0 5px; }

    .bwp-widget-banner.layout-7 .bwp-image-description {
      line-height: 18px;
      margin: 0 0 10px; }

    .bwp-widget-banner.layout-7 .button {
      font-size: 10px;
      line-height: 30px;
      padding: 0 20px; } }
  .bwp-widget-banner.layout-8 .banner-wrapper-infor {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 20px;
    left: 0; }
  .bwp-widget-banner.layout-8 .title-banner {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    margin: 0 0 5px; }
  .bwp-widget-banner.layout-8 .button {
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 3px; }
  .bwp-widget-banner.layout-8 .button:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-widget-banner.layout-8 .button:hover:before {
    width: 50%;
    right: 50%; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-8 .title-banner {
      font-size: 15px; }

    .bwp-widget-banner.layout-8 .button {
      font-size: 10px; } }
  .bwp-widget-banner.layout-9 .banner-wrapper-infor {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 0 15px; }
  .bwp-widget-banner.layout-9 .bwp-image-description {
    font-weight: 500;
    color: #fff; }
  .bwp-widget-banner.layout-9 .title-banner {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    color: #fff; }
  .bwp-widget-banner.layout-10 {
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0 100%, 0 18%); }
  .bwp-widget-banner.layout-10 .banner-wrapper-infor {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    padding: 0 90px; }
  .bwp-widget-banner.layout-10 .bwp-image-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff; }
  .bwp-widget-banner.layout-10 .title-banner {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    color: #fff;
    text-transform: uppercase; }
  .bwp-widget-banner.layout-10 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 35px;
    padding: 0 25px;
    background: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-10 .button:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-10 .banner-wrapper-infor {
      padding: 0 50px; }

    .bwp-widget-banner.layout-10 .title-banner {
      font-size: 30px; } }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-10 .banner-wrapper-infor {
      padding: 0 30px; }

    .bwp-widget-banner.layout-10 .title-banner {
      font-size: 25px; }

    .bwp-widget-banner.layout-10 .button {
      font-size: 10px;
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .bwp-widget-banner.layout-10 .title-banner {
      font-size: 20px; }

    .bwp-widget-banner.layout-10 .bwp-image-subtitle {
      font-size: 12px; } }
  .bwp-widget-banner.layout-11 .banner-wrapper-infor {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 60px;
    bottom: 60px; }
  .bwp-widget-banner.layout-11 .title-banner {
    font-size: 70px;
    margin: 0 0 -5px;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    -webkit-text-stroke: 1px #fff;
    color: transparent; }
  .bwp-widget-banner.layout-11 .bwp-image-description {
    margin-bottom: 20px; }
  .bwp-widget-banner.layout-11 .button {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    padding-right: 30px; }
  .rtl .bwp-widget-banner.layout-11 .button {
    padding-left: 30px;
    padding-right: 0; }
  .bwp-widget-banner.layout-11 .button:after {
    position: absolute;
    content: "\e913";
    font-family: icomoon;
    font-size: 15px;
    right: 5px;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .rtl .bwp-widget-banner.layout-11 .button:after {
    left: 5px;
    right: auto; }
  .bwp-widget-banner.layout-11 .button:hover:after {
    right: 3px; }
  .rtl .bwp-widget-banner.layout-11 .button:hover:after {
    left: 3px;
    right: auto; }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-11 .banner-wrapper-infor {
      padding: 0 30px;
      bottom: 30px; }

    .bwp-widget-banner.layout-11 .title-banner {
      font-size: 45px; }

    .bwp-widget-banner.layout-11 .button {
      padding-right: 25px;
      font-size: 12px; }
      .rtl .bwp-widget-banner.layout-11 .button {
        padding-left: 25px;
        padding-right: 0; }
      .bwp-widget-banner.layout-11 .button:after {
        font-size: 12px; } }
  @media (max-width: 767px) {
    .bwp-widget-banner.layout-11 .title-banner {
      font-size: 35px;
      margin: 0; } }
  .bwp-widget-banner.layout-12 .banner-wrapper-infor {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 75px; }
  .bwp-widget-banner.layout-12 .bwp-image-description {
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px; }
  .bwp-widget-banner.layout-12 .title-banner {
    font-size: 50px;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    color: #fff;
    margin: 0 0 5px; }
  .bwp-widget-banner.layout-12 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    padding: 0 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-12 .button:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 1441px) {
    .bwp-widget-banner.layout-12 .title-banner {
      font-size: 45px; } }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-12 .banner-wrapper-infor {
      padding: 0 50px; }

    .bwp-widget-banner.layout-12 .title-banner {
      font-size: 30px; }

    .bwp-widget-banner.layout-12 .bwp-image-description {
      font-size: 11px; } }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-12 .banner-wrapper-infor {
      padding: 0 30px; }

    .bwp-widget-banner.layout-12 .title-banner {
      font-size: 25px; }

    .bwp-widget-banner.layout-12 .button {
      font-size: 10px;
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .bwp-widget-banner.layout-12 .title-banner {
      font-size: 20px; } }
  .bwp-widget-banner.layout-13 .banner-wrapper-infor {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 75px; }
  .bwp-widget-banner.layout-13 .bwp-image-description {
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px; }
  .bwp-widget-banner.layout-13 .title-banner {
    font-size: 34px;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    color: #fff;
    margin: 0 0 5px; }
  .bwp-widget-banner.layout-13 .button {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    padding: 0 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-widget-banner.layout-13 .button:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 1199px) {
    .bwp-widget-banner.layout-13 .bwp-image-description {
      font-size: 11px; }

    .bwp-widget-banner.layout-13 .banner-wrapper-infor {
      padding: 0 50px; }

    .bwp-widget-banner.layout-13 .title-banner {
      font-size: 30px; } }
  @media (max-width: 991px) {
    .bwp-widget-banner.layout-13 .banner-wrapper-infor {
      padding: 0 30px; }

    .bwp-widget-banner.layout-13 .title-banner {
      font-size: 25px; }

    .bwp-widget-banner.layout-13 .button {
      font-size: 10px;
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .bwp-widget-banner.layout-13 .title-banner {
      font-size: 20px; }

    .bwp-widget-banner.layout-13 .bwp-image-description {
      margin: 0 0 5px; } }
  .bwp-widget-banner.banner-product-countdown {
    text-align: center; }
  .bwp-widget-banner.banner-product-countdown .title-banner {
    color: #fff;
    margin: 0 0 -5px;
    text-transform: uppercase;
    font-size: 24px; }
  .bwp-widget-banner.banner-product-countdown .product-title {
    font-size: 50px;
    font-weight: 500; }
  .bwp-widget-banner.banner-product-countdown .product-title a {
    color: #fff; }
  .bwp-widget-banner.banner-product-countdown .product-title a:hover {
    color: #D3AD47; }
  .bwp-widget-banner.banner-product-countdown .product-price {
    color: #fff;
    font-size: 30px;
    margin-bottom: 26px; }
  .bwp-widget-banner.banner-product-countdown .product-price del {
    font-size: 18px;
    color: #fff; }
  .bwp-widget-banner.banner-product-countdown .product-price ins {
    text-decoration: none; }
  .bwp-widget-banner.banner-product-countdown .countdown {
    margin-bottom: 34px; }
  .bwp-widget-banner.banner-product-countdown .countdown .countdown-content > span {
    display: inline-block;
    margin: 0 10px; }
  .bwp-widget-banner.banner-product-countdown .countdown .countdown-content .countdown-amount {
    width: 65px;
    height: 65px;
    background: #D3AD47;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 65px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px; }
  .bwp-widget-banner.banner-product-countdown .countdown .countdown-content .countdown-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600; }
  .bwp-widget-banner.banner-product-countdown .btn-banner {
    font-size: 12px;
    font-weight: 500;
    line-height: 45px;
    padding: 0 50px;
    background: #fff;
    text-transform: uppercase;
    display: inline-block; }
  .bwp-widget-banner.banner-product-countdown .btn-banner:hover {
    background: #D3AD47;
    color: #fff; }
  @media (max-width: 767px) {
    .bwp-widget-banner.banner-product-countdown .title-banner {
      font-size: 16px;
      margin-bottom: 15px; }

    .bwp-widget-banner.banner-product-countdown .product-title {
      font-size: 25px;
      line-height: 30px; }

    .bwp-widget-banner.banner-product-countdown .product-price {
      font-size: 16px; }
      .bwp-widget-banner.banner-product-countdown .product-price del {
        font-size: 13px; }

    .bwp-widget-banner.banner-product-countdown .countdown .countdown-content > span {
      margin: 0 5px; }
      .bwp-widget-banner.banner-product-countdown .countdown .countdown-content .countdown-amount {
        width: 60px;
        height: 60px;
        line-height: 60px; } }
  .bwp-widget-banner.banner-countdown {
    text-align: center; }
  .bwp-widget-banner.banner-countdown .title-banner h2 {
    margin: 0 0 7px;
    color: #fff;
    font-family: 'Audiowide', cursive;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 400; }
  .bwp-widget-banner.banner-countdown label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px; }
  .bwp-widget-banner.banner-countdown .countdown-content > span {
    margin-right: 8px;
    display: inline-block;
    text-align: center; }
  .rtl .bwp-widget-banner.banner-countdown .countdown-content > span {
    margin-left: 8px;
    margin-right: 0; }
  .bwp-widget-banner.banner-countdown .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp-widget-banner.banner-countdown .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp-widget-banner.banner-countdown .countdown-amount {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    color: #fff;
    margin-bottom: 5px; }
  .bwp-widget-banner.banner-countdown .countdown-text {
    display: block;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase; }
  @media (max-width: 767px) {
    .bwp-widget-banner.banner-countdown .title-banner h2 {
      font-size: 30px; } }
/************************************************************************************************
 BWP INSTAGRAM WIDGET
 *************************************************************************************************/
.bwp-instagram.default {
  text-align: center; }
  .bwp-instagram.default .instagram-title {
    background: #D3AD47;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  .bwp-instagram.default .instagram-title h2 {
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 0 10px;
    letter-spacing: 1.6px;
    position: relative;
    padding-top: 115px;
    color: #fff; }
  .bwp-instagram.default .instagram-title h2:before {
    content: "\e911";
    font-family: icomoon;
    font-size: 90px;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  @media (max-width: 1199px) {
        .bwp-instagram.default .instagram-title h2 {
          padding-top: 80px;
          letter-spacing: 0; }
          .bwp-instagram.default .instagram-title h2:before {
            font-size: 50px; } }
  .bwp-instagram.default .instagram-title .subtitle {
    font-size: 16px;
    color: #fff; }
  @media (max-width: 991px) {
      .bwp-instagram.default .instagram-title {
        position: unset;
        padding: 20px; } }
  @media (min-width: 992px) {
    .bwp-instagram.default .image-instagram:nth-child(3) {
      opacity: 0;
      visibility: hidden; } }
  .bwp-instagram.default .content_instagram.row {
    margin: 0; }
  .bwp-instagram.default .content_instagram.row .image-instagram {
    padding: 0;
    margin: 0; }
  .bwp-instagram.default .content_instagram.row .image-instagram a {
    margin: 0; }
  .bwp-instagram a.instagram {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    vertical-align: top;
    overflow: hidden; }
  .bwp-instagram a.instagram img {
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease; }
  @media (max-width: 767px) {
      .bwp-instagram a.instagram img {
        width: 100%; } }
  .bwp-instagram a.instagram:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(37, 37, 37, 0.45);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 1; }
  .bwp-instagram a.instagram:after {
    content: "\f16d";
    color: #fff;
    font-family: "FontAwesome";
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    top: calc(50% - 13px);
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
  .bwp-instagram a.instagram:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  .bwp-instagram a.instagram:hover:before, .bwp-instagram a.instagram:hover:after {
    opacity: 1;
    visibility: visible; }
  .bwp-instagram.slider {
    position: relative; }
  .bwp-instagram.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp-instagram.slider a.instagram {
    margin-bottom: 0; }
  .bwp-instagram.slider .slick-list {
    margin: 0 -7.5px; }
  .bwp-instagram.slider .image-instagram {
    padding: 0 7.5px; }
  .bwp-instagram.slider2 {
    position: relative; }
  .bwp-instagram.slider2 .slick-list {
    margin: 0; }
  .bwp-instagram.slider2 .slick-slide {
    padding: 0; }
  .bwp-instagram.slider2 a.instagram {
    margin-bottom: 0; }
  .bwp-instagram.slider3 .instagram-title {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 25px; }
  .bwp-instagram.slider3 .instagram-title h2 {
    margin: 0;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase; }
  .bwp-instagram.slider3 .instagram-title h2:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 72px;
    height: 2px;
    background: #D3AD47; }
  .rtl .bwp-instagram.slider3 .instagram-title h2:before {
    right: 0;
    left: auto; }
  .bwp-instagram.slider3 .slick-list {
    margin: 0 -5px; }
  .bwp-instagram.slider3 .item-instagram {
    padding: 0 5px; }
  .bwp-instagram.slider3 a.instagram {
    margin-bottom: 10px; }
  .bwp-instagram.slider3 .image-instagram:last-child a.instagram {
    margin-bottom: 0; }
/************************************************************************************************
 BWP POLICY WIDGET
 *************************************************************************************************/
.bwp-policy.default {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1; }
  .bwp-policy.default:before {
    position: absolute;
    content: "";
    background: #1f2425;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0% 0%, 86% 0, 100% 40%, 100% 100%, 0% 100%); }
  .bwp-policy.default .image {
    text-align: center; }
  .bwp-policy.default:hover .policy-icon i, .bwp-policy.default:hover .policy-icon img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .bwp-policy.default .title-policy {
    margin: 0 0 5px;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase; }
  .bwp-policy.default .desc-policy {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff; }
  .bwp-policy.default .policy-icon i {
    font-size: 54px;
    color: #000;
    display: inline-block; }
  .bwp-policy.default .policy-info {
    padding: 15px 20px;
    margin-left: -20px; }
  .rtl .bwp-policy.default .policy-info {
    margin-right: -20px;
    margin-left: 0; }
  .bwp-policy.default.style1 .image {
    width: 35%;
    flex: 0 0 35%; }
  .bwp-policy.default.style1 .image img {
    margin: -58px 0 7px; }
  .bwp-policy.default.style2:before {
    background: #ff9600; }
  .bwp-policy.default.style2 .image {
    width: 35%;
    flex: 0 0 35%; }
  .bwp-policy.default.style2 .image img {
    margin: -50px 0 15px; }
  .bwp-policy.default.style3:before {
    background: #0e55d8; }
  .bwp-policy.default.style3 .image {
    width: 35%;
    flex: 0 0 35%; }
  .bwp-policy.default.style3 .image img {
    margin: -66px 0 25px; }
  @media (max-width: 1199px) {
    .bwp-policy.default .image {
      padding: 0 15px; }

    .bwp-policy.default .title-policy {
      font-size: 15px; }

    .bwp-policy.default.style1 .image {
      width: 45.5%;
      flex: 0 0 45.5%; }
      .bwp-policy.default.style1 .image img {
        margin: -55px 0 0px; }

    .bwp-policy.default.style2 .image img {
      margin: -55px 0 12px; }

    .bwp-policy.default.style3 .image {
      width: 31.5%;
      flex: 0 0 31.5%; }
      .bwp-policy.default.style3 .image img {
        margin: -65px 0 10px; } }
  @media (max-width: 991px) {
    .bwp-policy.default .image {
      padding: 0 10px; }

    .bwp-policy.default .desc-policy {
      display: none; } }
  @media (max-width: 767px) {
    .bwp-policy.default.style1 .image {
      width: 35%;
      flex: 0 0 35%; }

    .bwp-policy.default.style2 .image {
      width: 30%;
      flex: 0 0 30%; }

    .bwp-policy.default.style3 .image {
      width: 30%;
      flex: 0 0 30%; }

    .bwp-policy.default .desc-policy {
      display: block; } }

.border-policy > .wpb_column .bwp-policy.layout2 {
  background: transparent; }

.border-policy-2 {
  margin: 0 !important; }
  @media (min-width: 768px) {
  .border-policy-2 {
    display: flex; } }
  .border-policy-2 > .wpb_column {
    border: 1px solid rgba(163, 163, 163, 0.3);
    padding-top: 100px;
    padding-bottom: 93px; }
  @media (min-width: 768px) {
      .border-policy-2 > .wpb_column:not(:last-child) {
        border-right: 0; } }
  @media (max-width: 767px) {
      .border-policy-2 > .wpb_column:not(:last-child) {
        border-bottom: 0; } }
/************************************************************************************************
 BWP video WIDGET
 *************************************************************************************************/
.bwp-widget-video.default {
  position: relative; }
  .bwp-widget-video.default .content-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5); }
  .bwp-widget-video.default .content-video .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .bwp-widget-video.default .content-video .modal-dialog iframe {
    min-height: 60vh;
    width: 70vw; }
  .bwp-widget-video.default .bwp-video-btn {
    display: inline-block;
    width: 90px;
    height: 90px;
    color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 18px;
    line-height: 86px;
    text-indent: 3px;
    position: relative;
    text-align: center;
    border: 2px solid #000;
    letter-spacing: 0;
    font-weight: 400;
    margin-right: 15px;
    cursor: pointer; }
  .rtl .bwp-widget-video.default .bwp-video-btn {
    margin-left: 15px;
    margin-right: 0; }
  .bwp-widget-video.default .bwp-video {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px; }
  .bwp-widget-video.default .bwp-video:hover .bwp-video-btn {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .bwp-widget-video.default2 {
    position: relative; }
  .bwp-widget-video.default2 .bwp-video {
    display: inline-block;
    width: 110px;
    height: 110px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 18px;
    line-height: 110px;
    text-indent: 3px;
    position: absolute;
    text-align: center;
    top: calc(50% - 55px);
    left: calc(50% - 55px); }
  .bwp-widget-video.default2 .bwp-video:before {
    content: "";
    position: absolute;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation-name: scale2;
    animation-name: scale2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .bwp-widget-video.default2 .bwp-video:after {
    content: "";
    position: absolute;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation-name: scale2;
    animation-name: scale2;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-delay: 1s; }
  .bwp-widget-video.default2 .bwp-video:hover {
    background: #D3AD47;
    color: #fff; }
  .bwp-widget-video.default2 .bwp-video:hover:before, .bwp-widget-video.default2 .bwp-video:hover:after {
    border-color: #D3AD47; }
  @media (max-width: 767px) {
    .bwp-widget-video.default2 .title-video {
      font-size: 30px; } }
  .bwp-widget-video.layout1 {
    text-align: center;
    position: relative; }
  .bwp-widget-video.layout1:before {
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 70%;
    background: #f8f8f8;
    left: 0;
    z-index: -1; }
  .bwp-widget-video.layout1 .title-video {
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    margin: 30px 0 10px; }
  .bwp-widget-video.layout1 .description-video {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px; }
  .bwp-widget-video.layout1 .bwp-video {
    display: inline-block;
    width: 106px;
    height: 106px;
    background: #D3AD47;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 18px;
    line-height: 106px;
    text-indent: 3px;
    position: relative; }
  .bwp-widget-video.layout1 .bwp-video:before {
    content: "";
    position: absolute;
    top: calc(50% - 53px);
    left: calc(50% - 53px);
    width: 106px;
    height: 106px;
    border: 2px solid #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .bwp-widget-video.layout1 .bwp-video:after {
    content: "";
    position: absolute;
    top: calc(50% - 53px);
    left: calc(50% - 53px);
    width: 106px;
    height: 106px;
    border: 2px solid #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-delay: 1s; }
  .bwp-widget-video.layout1 .bwp-video:hover {
    background: #025029; }
  .bwp-widget-video.layout1 .bwp-video:hover:before, .bwp-widget-video.layout1 .bwp-video:hover:after {
    border-color: #025029; }
  .bwp-widget-video.layout1 .button-video a {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 45px;
    padding: 0 40px;
    border: 1px solid #fff;
    color: #fff; }
  .bwp-widget-video.layout1 .button-video a:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  @media (max-width: 480px) {
    .bwp-widget-video.layout1 .title-video {
      font-size: 30px; } }
/*
 *  Shortcode
 */
.grid-system .cell {
  border: 1px solid #e0e0e0;
  background: #dfdfdf;
  text-align: center !important;
  margin: 0 0px 10px 0;
  padding: 8px 0 8px 0; }
  .rtl .grid-system .cell {
    margin: 0 0 10px 0px; }
  .rtl .grid-system .cell {
    padding: 8px 0 8px 0; }
  .grid-system > div {
    padding: 0 5px 0 5px; }
  .rtl .grid-system > div {
    padding: 0 5px 0 5px; }

.features-btn .table > thead > tr > th, .features-btn .table > thead > tr > td, .features-btn .table > tbody > tr > th, .features-btn .table > tbody > tr > td, .features-btn .table > tfoot > tr > th, .features-btn .table > tfoot > tr > td {
  vertical-align: middle; }

.icon .input-group-addon {
  background: #fff; }
  .icon .input-group-addon .fa, .icon .input-group-addon .icon {
    color: #000; }

.icons-examples {
  padding-bottom: 20px;
  min-height: 130px; }
  .icons-examples .fa {
    font-size: 24px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center; }
  .rtl .icons-examples .fa {
    text-align: right; }

.shortcode_sourcecode {
  margin: 10px 0; }
  .shortcode_sourcecode code {
    white-space: normal; }
/************************************************************************************************
 EDITOR STYLE
 *************************************************************************************************/
/**
 * Table of Contents:
 *
 * 1.0 - Body
 * 2.0 - Headings
 * 3.0 - Text Elements
 * 4.0 - Links
 * 5.0 - Alignment
 * 6.0 - Tables
 * 7.0 - Images
 * 8.0 - Galleries
 * 9.0 - Audio/Video
 * 10.0 - RTL
 */
/**
 * 5.0 Alignment
 */
html {
  font-size: 14px; }

.alignnone {
  margin: 20px 0 20px 0; }

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  clear: both; }

.alignright {
  float: right;
  margin: 5px 0 20px 15px;
  clear: both; }
  .rtl .alignright {
    float: left; }

.alignleft {
  float: left;
  margin: 5px 30px 20px 0;
  clear: both; }
  .rtl .alignleft {
    float: right; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 15px; }

a img.alignnone {
  margin: 5px 0px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 15px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  text-align: center;
  max-width: 100%; }

.wp-caption.alignnone {
  margin: 5px 0 20px 0; }

.wp-caption.alignleft {
  margin: 5px 15px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 15px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto; }

.wp-caption .wp-caption-text {
  font-size: 12px;
  margin: 0;
  padding: 10px 4px 5px;
  font-style: italic;
  margin-bottom: 20px; }
/**
 * 8.0 Gallery
 * -----------------------------------------------------------------------------
 */
.gallery-slider.carousel .carousel-control {
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #fff;
  opacity: 0.7; }
  .gallery-slider.carousel .carousel-control:hover {
    opacity: 1; }

.gallery {
  margin: 0 -5px; }

.gallery .gallery-item {
  float: left;
  overflow: hidden;
  position: relative;
  margin: 5px; }
  .rtl .gallery .gallery-item {
    float: right; }
  .gallery .gallery-item img {
    width: 100%; }

.gallery-columns-1 .gallery-item {
  max-width: 100%;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 48%;
  max-width: -webkit-calc(50% - 14px);
  max-width: calc(50% - 14px);
  width: 100%; }

.gallery-columns-3 .gallery-item {
  max-width: 32%;
  max-width: -webkit-calc(33.3% - 11px);
  max-width: calc(33.3% - 11px);
  width: 100%; }

.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 9px);
  max-width: calc(25% - 9px);
  width: 100%; }

.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 8px);
  max-width: calc(20% - 8px);
  width: 100%; }

.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 7px);
  max-width: calc(16.7% - 7px);
  width: 100%; }

.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 7px);
  max-width: calc(14.28% - 7px);
  width: 100%; }

.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 6px);
  max-width: calc(12.5% - 6px);
  width: 100%; }

.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 6px);
  max-width: calc(11.1% - 6px);
  width: 100%; }

.gallery .gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%; }
  .rtl .gallery .gallery-caption {
    text-align: right; }

.gallery .gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.gallery-item:hover .gallery-caption {
  opacity: 1; }

.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
  display: none; }
/**
 * 9.0 Audio/Video
 * ----------------------------------------------------------------------------
 */
.mejs-mediaelement, .mejs-container .mejs-controls {
  background: #000; }

.mejs-controls .mejs-time-rail .mejs-time-loaded, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #fff; }

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #24890d; }

.mejs-controls .mejs-time-rail .mejs-time-total, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: rgba(255, 255, 255, .33); }

.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  border-radius: 0; }

.mejs-overlay-loading {
  background: transparent; }
/**
 * 10.0 RTL
 * ----------------------------------------------------------------------------
 */
html .mceContentBody.rtl {
  direction: rtl;
  unicode-bidi: embed; }

.rtl .wp-caption, .rtl tr th {
  text-align: right; }
  .rtl .rtl .wp-caption, .rtl .rtl tr th {
    text-align: left; }

.rtl td {
  text-align: right; }
  .rtl .rtl td {
    text-align: left; }
/************************************************************************************************
 OWL CAROULSEL
 *************************************************************************************************/
.bg-primary {
  background-color: #000; }

.bg-success {
  background-color: #000; }

.bg-info {
  background-color: #000; }

.bg-warning {
  background-color: #000; }

.bg-danger {
  background-color: #000; }

.text-primary {
  color: #000; }

.text-success {
  color: #57bf6d; }

.text-info {
  color: #33aebd; }

.text-warning {
  color: #fbaf3f; }

.text-danger {
  color: #e42234; }

.text-skin {
  color: #D3AD47; }

.text-hightlight {
  color: #000; }

.box-advert > div {
  background: #fff;
  padding: 20px; }

.heading-padding-large .widget-title {
  padding-bottom: 20px; }

.box-header {
  display: table;
  margin-top: 20px; }
  .box-header > div {
    float: left; }
  .box-header .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #f99b17;
    text-align: center;
    line-height: 44px;
    margin-right: 5px;
    margin-top: 6px; }
  .box-header .icon i {
    font-size: 30px;
    color: #f99b17;
    width: 13px; }
  .box-header .text-sm {
    font-size: 11px;
    font-weight: 300;
    color: #868686;
    display: block; }
  .box-header .text-large {
    font-size: 18px;
    font-weight: 300;
    color: #f99b17;
    display: block; }

.caret {
  border: none;
  font-family: "FontAwesome";
  font-size: 11px;
  width: auto;
  height: auto; }
  .caret:before {
    content: "\f107"; }
/*
 Tabs
 *-------------------------------------------------------------
 */
.tabs-list {
  border: 0;
  text-align: left; }
  .rtl .tabs-list {
    text-align: right; }
/*
 Breadcrumbs
 *-------------------------------------------------------------
 */
.breadcrumb > .fa {
  margin: 0 5px 0 5px; }
  .rtl .breadcrumb > .fa {
    margin: 0 5px 0 5px; }
/*
 Customize Live Theme Editor
 *-------------------------------------------------------------
 */
/*
 Modal
 *-------------------------------------------------------------
 */
.modal-content {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }

.modal-lg {
  width: 900px; }
  .modal-lg.modal-min-width {
    width: 500px;
    height: auto;
    min-height: 90px; }
  .modal-lg.modal-min-width .modal-content {
    border: 0; }
  .modal-lg .total, .modal-lg .buttons {
    text-align: center; }
/*
 Pagination
 *-------------------------------------------------------------
 */
.bwp-pagination:before, .bwp-pagination:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }
  .bwp-pagination:after {
    clear: both; }
  .bwp-pagination .pagination, .bwp-pagination .page-numbers {
    margin: 0;
    border: 0; }
  .bwp-pagination .pagination.current, .bwp-pagination .page-numbers.current {
    background-color: #D3AD47;
    color: #fff; }

.result-count {
  padding: 5px 0;
  margin: 0; }
/*
 Mobile
 *-------------------------------------------------------------
 */
.active-mobile {
  width: 44px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  position: relative;
  cursor: default;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  padding-top: 4px; }
  .active-mobile:before {
    background-color: #0d0d0d;
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    left: 0;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    display: none; }
  .rtl .active-mobile:before {
    right: 0;
    left: auto; }
  .active-mobile:first-child:before {
    display: none; }
  .active-mobile:hover {
    background-color: #0d0d0d !important;
    cursor: pointer; }
  .active-mobile:hover:before {
    display: none; }
  .active-mobile:hover .active-content {
    left: auto; }
  .rtl .active-mobile:hover .active-content {
    right: auto;
    left: auto; }
  .active-mobile > .fa, .active-mobile > .icon {
    color: #fff; }
  .active-mobile.cart-popup {
    background: url("/wp-content/themes/vapier/images/cart-m.svg") no-repeat center center; }
  .active-mobile.cart-popup .fa, .active-mobile.cart-popup .icon {
    display: none; }
  .active-mobile .active-content {
    position: absolute;
    top: 100%;
    z-index: 9999;
    color: #868686;
    padding: 20px;
    background-color: #0d0d0d;
    left: -10000px;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    min-width: 270px;
    visibility: hidden;
    right: 0;
    text-align: left;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s; }
  .rtl .active-mobile .active-content {
    right: -10000px;
    left: auto; }
  .rtl .active-mobile .active-content {
    left: 0;
    right: auto; }
  .rtl .active-mobile .active-content {
    text-align: right; }
  .active-mobile.cart-popup .active-content {
    background-color: #0d0d0d;
    min-width: 320px; }
  .active-mobile .title {
    color: #fff;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a1a1a; }
  .rtl .active-mobile .title {
    margin: 0 0 10px 0; }
  .active-mobile ul {
    padding: 0; }
  .active-mobile ul li {
    display: block;
    margin: 0;
    padding: 10px 0;
    line-height: normal;
    text-transform: none;
    font-size: 1rem; }
  .active-mobile .navbar-toggle {
    position: static;
    background: none;
    border: medium none;
    margin: 0;
    padding: 0;
    position: static; }
/*
 Custom Panel
 *-------------------------------------------------------------
 */
.custom-panel {
  border: 0; }
  .custom-panel .panel-footer {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #e0e0e0; }

.pricing-tables .panel-heading {
  border-color: #e0e0e0; }
  .pricing-tables .panel-footer {
    border-top: 0px; }
/*
 Box service footer
 *-------------------------------------------------------------
 */
.box-service {
  overflow: hidden;
  padding: 0 16.6667%; }
  .box-service .box-content {
    overflow: hidden;
    padding: 95px 0 75px; }
  .box-service .box-content .small-text, .box-service .box-content .tiny-text {
    display: inline-block;
    font-size: -1rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 0 15px; }
  .box-service .box-content .small-text:after, .box-service .box-content .tiny-text:after, .box-service .box-content .small-text:before, .box-service .box-content .tiny-text:before {
    height: 1px;
    width: 500px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    content: ""; }
  .box-service .box-content .small-text:after, .box-service .box-content .tiny-text:after {
    left: 100%; }
  .box-service .box-content .small-text:before, .box-service .box-content .tiny-text:before {
    right: 100%; }
  .box-service .box-content .large-text {
    font-size: 30px;
    font-weight: 900;
    padding: 15px 0;
    display: block;
    color: #D3AD47; }
  .box-service .box-content .large-text.yellow {
    color: #e9c931; }
  .box-service .box-content .tiny-text {
    text-transform: none; }
/*
 Carousel
 *-------------------------------------------------------------
 */
.carousel.slide {
  position: relative; }
/*
 Tabs
 *-------------------------------------------------------------
 */
.tabs-left > .nav-tabs {
  border-bottom: 0;
  float: left;
  margin-right: 0;
  padding-right: 10px;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: auto;
  min-width: 16.6667%; }
  .tabs-left > .nav-tabs:after, .tabs-left > .nav-tabs:before {
    content: none; }
  .tabs-left > .nav-tabs li {
    float: none;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0e0e0; }
  .tabs-left > .nav-tabs li a {
    margin-right: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    margin-right: -1px;
    background: transparent; }
  .tabs-left > .nav-tabs li a:after, .tabs-left > .nav-tabs li a:before {
    content: none; }
  .tabs-left > .nav-tabs li a:hover, .tabs-left > .nav-tabs li a:focus {
    background: transparent;
    color: #D3AD47;
    font-weight: 400; }
  .tabs-left > .nav-tabs li:hover {
    border-color: #D3AD47; }
  .tabs-left > .nav-tabs li.active {
    border-color: #D3AD47;
    background: transparent; }
  .tabs-left > .nav-tabs li.active a, .tabs-left > .nav-tabs li.active a:hover, .tabs-left > .nav-tabs li.active a:focus {
    font-weight: 400;
    color: #D3AD47; }

.tabbable {
  overflow: hidden; }

.back-top {
  width: 40px;
  height: 40px;
  line-height: 49px;
  text-align: center;
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 9;
  color: #000;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #000; }
  .rtl .back-top {
    left: 30px;
    right: auto; }
  @media (max-width: 767px) {
  .back-top {
    display: none; } }
  .back-top i {
    font-size: 26px;
    display: block;
    line-height: 36px; }
  .back-top i:before {
    margin-right: 1px; }
  .rtl .back-top i:before {
    margin-left: 1px;
    margin-right: 0; }
  .back-top:hover {
    cursor: pointer;
    background: #D3AD47;
    color: white;
    border-color: #D3AD47; }
  .back-top.button-show {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1; }

.wpml-languages img {
  margin-right: 5px; }

#_atssh {
  overflow: hidden; }
/************************************************************************************************
 FORM 
 *************************************************************************************************/
.wpb_button_a .wpb_button {
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  color: #252525;
  border: none;
  font-size: 19px; }
  .wpb_button_a .wpb_button:hover {
    color: #D3AD47;
    background: transparent; }

.btn-outline {
  color: #fff;
  background-color: #D3AD47;
  border: 1px solid #D3AD47;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active {
    color: #fff;
    background-color: #000;
    border: 1px solid #000; }
  .btn-outline .fa, .btn-outline .icon {
    font-size: 14px;
    margin: 0; }
  .btn-outline:hover {
    background: #000 !important;
    border-color: #000 !important; }

.btn-outline-lg {
  padding: 21px 48px;
  font-size: 14px;
  line-height: 3;
  border-radius: 4px; }

.btn-outline-sm {
  padding: 8px 18px;
  font-size: 11px;
  line-height: 1.3;
  border-radius: 3px; }

.btn-outline-xs {
  padding: 5px 15px;
  font-size: 11px;
  line-height: 1.2;
  border-radius: 3px; }

.btn-outline-inverse, .btn-cart a {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-outline-inverse:hover, .btn-cart a:hover, .btn-outline-inverse:focus, .btn-cart a:focus, .btn-outline-inverse:active, .btn-cart a:active, .btn-outline-inverse.active, .btn-cart a.active {
    color: #fff;
    background-color: #D3AD47;
    border: 1px solid #fff; }
  .btn-outline-inverse .fa, .btn-cart a .fa, .btn-outline-inverse .icon, .btn-cart a .icon {
    font-size: 14px;
    margin: 0; }
  .btn-outline-inverse:hover, .btn-cart a:hover {
    background: #D3AD47 !important;
    border-color: #fff !important; }

.btn-inverse {
  color: #000;
  background-color: #fff;
  border: #e0e0e0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active {
    color: #fff;
    background-color: #000;
    border: #e0e0e0; }
  .btn-inverse .fa, .btn-inverse .icon {
    font-size: 14px;
    margin: 0; }
  .btn-inverse:hover {
    background: #D3AD47 !important;
    border-color: #D3AD47 !important; }

.btn-action, .btn-cart a {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 0;
  padding: 0px 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  vertical-align: middle;
  white-space: nowrap; }
/* Search ------------------------------------------------*/
.searchform {
  position: relative; }
  .searchform ul.result-search-products {
    display: none;
    position: absolute;
    top: 41px;
    background: #fff;
    left: 0;
    padding: 30px;
    z-index: 9;
    width: 100%;
    color: #000;
    list-style-type: none;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 60px;
    max-height: 260px;
    text-align: left;
    -webkit-box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3);
    box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3); }
  .rtl .searchform ul.result-search-products {
    right: 0;
    left: auto; }
  .rtl .searchform ul.result-search-products {
    text-align: right; }
  .searchform ul.result-search-products.loading:before {
    position: absolute;
    left: 50%;
    top: calc(50% - 17px);
    display: inline-block;
    content: "\e02d";
    width: auto;
    height: auto;
    color: #D3AD47;
    margin-left: 0;
    font-family: 'ElegantIcons';
    background-color: transparent !important;
    background: none;
    font-size: 20px;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround; }
  .rtl .searchform ul.result-search-products.loading:before {
    right: 50%;
    left: auto; }
  .rtl .searchform ul.result-search-products.loading:before {
    margin-right: 0;
    margin-left: 0; }
  .searchform ul.result-search-products.loading span {
    position: initial;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  @media (max-width: 991px) {
    .searchform ul.result-search-products {
      padding: 20px; } }
  @media (min-width: 992px) {
    .searchform ul.result-search-products {
      max-height: 282px; } }
  .searchform ul.result-search-products li {
    display: flex;
    margin-bottom: 20px;
    width: 33.33333%;
    padding-right: 20px;
    float: left; }
  .rtl .searchform ul.result-search-products li {
    padding-left: 20px;
    padding-right: 0; }
  .rtl .searchform ul.result-search-products li {
    float: right; }
  @media (max-width: 991px) {
      .searchform ul.result-search-products li {
        width: 50%; } }
  @media (max-width: 767px) {
      .searchform ul.result-search-products li {
        width: 100%; } }
  .searchform ul.result-search-products li:last-child {
    border: none;
    padding: 0;
    margin: 0; }
  .searchform ul.result-search-products li .item-image {
    min-width: 80px; }
  .searchform ul.result-search-products li .item-image img {
    width: 80px; }
  .searchform ul.result-search-products li .item-content {
    text-transform: capitalize;
    padding-left: 20px; }
  .rtl .searchform ul.result-search-products li .item-content {
    padding-right: 20px;
    padding-left: 0; }
  .searchform ul.result-search-products li .item-content .price {
    margin-top: 10px; }

.search-box {
  cursor: pointer;
  text-align: center; }

.search-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #fff;
  color: #000;
  right: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-top: 90px; }
  .rtl .search-overlay {
    left: 0;
    right: auto; }
  @media (max-width: 480px) {
  .search-overlay {
    padding-top: 100px; } }
  .search-overlay.search-visible {
    opacity: 1;
    visibility: visible; }
  .search-overlay .search-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px; }
  .search-overlay .search-top h2 {
    margin: 0 0 10px;
    font-size: 18px; }
  @media (max-width: 480px) {
    .search-overlay .search-top {
      margin-bottom: 15px; } }
  .search-overlay .close-search {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600; }
  .search-overlay .close-search i {
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: 3px;
    margin-left: 5px; }
  .rtl .search-overlay .close-search i {
    margin-right: 5px;
    margin-left: 0; }
  .search-overlay .close-search:hover {
    cursor: pointer;
    color: #D3AD47; }
  @media (max-width: 480px) {
    .search-overlay .close-search {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 0;
      width: 30px;
      height: 30px;
      border: 1px solid #e0e0e0;
      border-radius: 50%;
      line-height: 28px;
      text-align: center; }
      .rtl .search-overlay .close-search {
        left: 20px;
        right: auto; }
      .search-overlay .close-search i {
        margin: 0; } }
  .search-overlay .search-from {
    margin: auto;
    display: flex;
    position: relative; }
  @media (max-width: 1199px) {
    .search-overlay .search-from {
      width: auto; } }
  .search-overlay .search-from .select_category {
    line-height: 50px; }
  @media (max-width: 767px) {
      .search-overlay .search-from .select_category {
        display: none; } }
  .search-overlay .search-from .select_category:after {
    content: "|";
    color: rgba(255, 255, 255, 0.5);
    margin: 0 30px; }
  .search-overlay .search-from .select_category .pwb-dropdown-toggle {
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
    margin-right: 5px; }
  .rtl .search-overlay .search-from .select_category .pwb-dropdown-toggle {
    margin-left: 5px;
    margin-right: 0; }
  .search-overlay .search-from .select_category ul {
    padding: 15px 30px;
    max-height: 350px;
    overflow: auto; }
  .search-overlay .search-from .select_category ul li {
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    line-height: 1.3;
    padding: 15px 0; }
  .search-overlay .search-from .select_category ul li:last-child {
    border-bottom: 0; }
  .search-overlay .search-from .select_category ul li:hover, .search-overlay .search-from .select_category ul li.active {
    color: #D3AD47; }
  .search-overlay .search-from .caret:before {
    content: "\f0d7";
    font-size: 14px; }
  .search-overlay .search-from .search-box {
    text-align: left;
    flex: 1; }
  .rtl .search-overlay .search-from .search-box {
    text-align: right; }
  .search-overlay .search-from .search-box input[type="text"] {
    border: 0;
    padding: 0;
    line-height: 50px;
    width: 100%;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
    margin-bottom: 50px; }
  .search-overlay .search-from .search-box input[type="text"]:-moz-placeholder {
    color: #868686; }
  .search-overlay .search-from .search-box input[type="text"]::-moz-placeholder {
    color: #868686; }
  .search-overlay .search-from .search-box input[type="text"]:-ms-input-placeholder {
    color: #868686; }
  .search-overlay .search-from .search-box input[type="text"]::-webkit-input-placeholder {
    color: #868686; }
  @media (max-width: 767px) {
        .search-overlay .search-from .search-box input[type="text"] {
          font-size: 15px;
          padding-bottom: 5px;
          margin-bottom: 10px;
          line-height: 35px; } }
  .search-overlay .search-from .search-box #searchsubmit {
    position: absolute;
    top: 15px;
    background: transparent;
    color: #000;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    border: 0;
    padding: 0;
    right: 0; }
  .rtl .search-overlay .search-from .search-box #searchsubmit {
    left: 0;
    right: auto; }
  .search-overlay .search-from .search-box #searchsubmit:hover {
    color: #D3AD47; }
  .search-overlay .search-from .search-box #searchsubmit > .icon-search {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .search-overlay .search-from .search-box #searchsubmit > span {
    display: none; }
  @media (max-width: 767px) {
        .search-overlay .search-from .search-box #searchsubmit {
          font-size: 18px;
          top: 20px; } }
  @media (max-width: 480px) {
        .search-overlay .search-from .search-box #searchsubmit {
          font-size: 18px;
          top: 8px; } }
  @media (max-width: 1199px) {
      .search-overlay .search-from .search-box {
        width: auto; } }
  .search-overlay .search-from .result-search-products {
    display: flex !important;
    flex-wrap: wrap;
    z-index: 10000;
    position: relative;
    background: #fff;
    overflow-y: auto;
    padding: 0;
    overflow-x: hidden;
    left: 0;
    list-style: none;
    margin: 0 -15px;
    height: calc(100vh - 275px); }
  .search-overlay .search-from .result-search-products::-webkit-scrollbar-track {
    background-color: #f5f5f5; }
  .search-overlay .search-from .result-search-products::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5; }
  .search-overlay .search-from .result-search-products::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1); }
  .search-overlay .search-from .result-search-products .no-result-item {
    color: #000;
    padding: 0 15px; }
  .search-overlay .search-from .result-search-products .item-search {
    list-style: none;
    padding: 0 15px;
    display: inline-block;
    width: 25%;
    margin-bottom: 30px; }
  @media (max-width: 1199px) {
        .search-overlay .search-from .result-search-products .item-search {
          width: 33.33%; } }
  @media (max-width: 767px) {
        .search-overlay .search-from .result-search-products .item-search {
          width: 50%; } }
  .search-overlay .search-from .result-search-products .item-content > a {
    font-size: 16px;
    margin-top: 20px;
    text-transform: capitalize;
    display: inline-block;
    color: #868686; }
  .search-overlay .search-from .result-search-products .item-content > a:hover {
    color: #D3AD47; }
  .search-overlay .search-from .result-search-products .price {
    font-size: 16px;
    font-weight: 600; }
  .search-overlay .search-from .result-search-products .price del {
    font-size: 13px; }
  .search-overlay .search-from .result-search-products.loading:before {
    position: absolute;
    left: 50%;
    top: 0;
    display: inline-block;
    content: "\f110";
    width: auto;
    height: auto;
    color: #D3AD47;
    margin-left: 0;
    font-family: FontAwesome;
    background-color: transparent !important;
    background: none;
    font-size: 20px;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround; }
  .search-overlay .form-content {
    position: relative; }
/* Select, Input ------------------------------------------------*/
input[type="text"], input[type="number"], input[type="email"], input[type="password"], input[type="tel"], textarea, select {
  border: 1px solid #e0e0e0;
  padding: 5px 6px;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -o-appearance: none;
  -webkit-appearance: none; }

select {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 18px) calc(1em + 1px), calc(100% - 13px) calc(1em + 1px), calc(100% - 2.5em) 0.5em;
  background-size: 6px 5px, 6px 5px, 0 1.5em;
  background-repeat: no-repeat;
  width: 100%; }
  select:focus {
    background-image: linear-gradient(45deg, #000 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #000 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 13px) 1em, calc(100% - 19px) 1em, calc(100% - 2.5em) 0.5em;
    background-size: 6px 5px, 5px 5px, 0 1.5em;
    background-repeat: no-repeat;
    border-color: #000;
    outline: 0; }

.chosen-container {
  width: 100% !important; }

.input-group-form {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background: transparent;
  margin: 0 0 5px 0; }
  .input-group-form .form-control-reversed {
    border: 0px;
    background: #2e2e2e;
    color: #ccc;
    font-size: 14px;
    height: 34px; }
  .input-group-form .form-control-reversed:hover, .input-group-form .form-control-reversed:focus {
    -webkit-box-shadow: none;
    box-shadow: none; }
  .input-group-form .input-group-addon {
    border: 0;
    background: #2e2e2e;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }

.select {
  overflow: hidden;
  width: 180px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  border: 1px solid #e0e0e0; }
  .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    width: 200px;
    border: 0;
    cursor: pointer;
    background: transparent url("/wp-content/themes/vapier/images/arrow.png") no-repeat 85% center; }
  .select select:hover, .select select:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none; }
/************************************************************************************************
 OFF-CANVAS  
 *************************************************************************************************/
.off-canvas-toggle {
  border: 0 none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 100;
  display: block;
  right: 140px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 68px;
  height: 68px;
  border-left: 1px solid #0d0d0d;
  top: -172px; }
  .rtl .off-canvas-toggle {
    left: 140px;
    right: auto; }
  .off-canvas-toggle .icon-bar {
    color: #fff;
    background: #fff !important;
    margin: 24px 24px 0;
    height: 4px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .off-canvas-toggle:hover, .off-canvas-toggle:active, .off-canvas-toggle:focus {
    background: transparent !important; }

.navbar-offcanvas {
  background-color: #f5f5f5;
  border: none; }
  .navbar-offcanvas .navbar-brand {
    color: #868686; }
  .navbar-offcanvas .navbar-brand:hover, .navbar-offcanvas .navbar-brand:focus {
    color: #fff;
    background-color: transparent; }
  .navbar-offcanvas .navbar-text {
    color: #000; }
  .navbar-offcanvas .navbar-nav > li {
    margin: 0; }
  .navbar-offcanvas .navbar-nav > li > a {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 14px;
    text-transform: none;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #000;
    font-weight: 700;
    text-transform: uppercase; }
  .navbar-offcanvas .navbar-nav > li > a:hover, .navbar-offcanvas .navbar-nav > li > a:focus {
    color: #0281ab;
    background-color: transparent; }
  .navbar-offcanvas .navbar-nav > .active > a {
    color: #0281ab; }
  .navbar-offcanvas .navbar-nav > .active > a, .navbar-offcanvas .navbar-nav > .active > a:hover, .navbar-offcanvas .navbar-nav > .active > a:focus {
    color: #0281ab; }
  .navbar-offcanvas .navbar-nav > .disabled > a, .navbar-offcanvas .navbar-nav > .disabled > a:hover, .navbar-offcanvas .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }

.navbar-toggle:hover, .navbar-toggle:focus {
  background-color: transparent; }
  .navbar-toggle .icon-bar {
    background-color: #000; }

.navbar-collapse, .navbar-form {
  border-color: #e3e3e3;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0; }

.navbar-nav a {
  border-color: rgba(0, 0, 0, 0.1); }
  .navbar-nav a:hover, .navbar-nav a:focus {
    background-color: transparent; }

.dropdown > a:hover .caret {
  border-top-color: #0281ab;
  border-bottom-color: #0281ab; }

.dropdown > a .caret {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
  top: 15px;
  right: 20px;
  position: absolute;
  color: #000; }
  .rtl .dropdown > a .caret {
    left: 20px;
    right: auto; }
  .dropdown > a .caret:before {
    content: "\f105";
    color: #000;
    font-size: 1rem;
    font-family: 'icomoon'; }

.dropdown-menu {
  display: block;
  padding: 10px;
  float: none;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #fff;
  left: auto !important; }
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible; }
  .dropdown-menu .caret {
    top: 5px; }

@media (max-width: 767px) {
  .open .dropdown-menu {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible; }
    .open .dropdown-menu > .dropdown-header {
      border-color: rgba(0, 0, 0, 0.1); }
    .open .dropdown-menu > li > a {
      color: #868686; }
      .open .dropdown-menu > li > a:hover, .open .dropdown-menu > li > a:focus {
        color: #0281ab;
        background-color: transparent; }
    .open .dropdown-menu > .disabled > a:hover, .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }

.navbar-link {
  color: #868686; }
  .navbar-link:hover {
    color: #0281ab; }

.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%; }

.comment-form-comment textarea#comment {
  width: 100%; }

.elementor-page #main-content > .container {
  width: 100%;
  padding: 0;
  max-width: 100%; }
  .elementor-page #bwp-main > .container {
    width: 100%;
    padding: 0;
    max-width: 100%; }
  .elementor-page #bwp-main > .container > .row {
    margin: 0; }
  .elementor-page #bwp-main > .container > .row > .col-lg-12.col-md-12 {
    padding: 0; }

.woocommerce-pagination > ul.page-numbers, .loop-pagination > ul.page-numbers {
  vertical-align: top;
  float: none;
  padding: 0;
  text-align: left; }
  .rtl .woocommerce-pagination > ul.page-numbers, .rtl .loop-pagination > ul.page-numbers {
    text-align: right; }
  .woocommerce-pagination > ul.page-numbers li, .loop-pagination > ul.page-numbers li {
    display: inline-block;
    margin-left: 5px; }
  .rtl .woocommerce-pagination > ul.page-numbers li, .rtl .loop-pagination > ul.page-numbers li {
    margin-right: 5px;
    margin-left: 0; }
  .woocommerce-pagination > ul.page-numbers li a, .loop-pagination > ul.page-numbers li a, .woocommerce-pagination > ul.page-numbers li span, .loop-pagination > ul.page-numbers li span {
    display: table-cell;
    padding: 0;
    float: none;
    width: 32px;
    height: 32px;
    line-height: normal;
    text-indent: 1px;
    text-align: center;
    vertical-align: middle;
    color: #868686;
    font-size: 12px;
    border: 1px solid #e0e0e0;
    -webkit-transition: none;
    transition: none;
    text-transform: uppercase; }
  .woocommerce-pagination > ul.page-numbers li a:hover, .loop-pagination > ul.page-numbers li a:hover, .woocommerce-pagination > ul.page-numbers li span:hover, .loop-pagination > ul.page-numbers li span:hover, .woocommerce-pagination > ul.page-numbers li a.current, .loop-pagination > ul.page-numbers li a.current, .woocommerce-pagination > ul.page-numbers li span.current, .loop-pagination > ul.page-numbers li span.current, .woocommerce-pagination > ul.page-numbers li a:focus, .loop-pagination > ul.page-numbers li a:focus, .woocommerce-pagination > ul.page-numbers li span:focus, .loop-pagination > ul.page-numbers li span:focus {
    color: #fff;
    background: #000;
    border-color: #000; }
  .woocommerce-pagination > ul.page-numbers li a.next, .loop-pagination > ul.page-numbers li a.next, .woocommerce-pagination > ul.page-numbers li span.next, .loop-pagination > ul.page-numbers li span.next, .woocommerce-pagination > ul.page-numbers li a.prev, .loop-pagination > ul.page-numbers li a.prev, .woocommerce-pagination > ul.page-numbers li span.prev, .loop-pagination > ul.page-numbers li span.prev {
    font-size: 0;
    color: #868686; }
  .woocommerce-pagination > ul.page-numbers li a.next:before, .loop-pagination > ul.page-numbers li a.next:before, .woocommerce-pagination > ul.page-numbers li span.next:before, .loop-pagination > ul.page-numbers li span.next:before, .woocommerce-pagination > ul.page-numbers li a.prev:before, .loop-pagination > ul.page-numbers li a.prev:before, .woocommerce-pagination > ul.page-numbers li span.prev:before, .loop-pagination > ul.page-numbers li span.prev:before {
    font-size: 20px;
    font-family: eleganticons; }
  .woocommerce-pagination > ul.page-numbers li a.next:hover:before, .loop-pagination > ul.page-numbers li a.next:hover:before, .woocommerce-pagination > ul.page-numbers li span.next:hover:before, .loop-pagination > ul.page-numbers li span.next:hover:before, .woocommerce-pagination > ul.page-numbers li a.prev:hover:before, .loop-pagination > ul.page-numbers li a.prev:hover:before, .woocommerce-pagination > ul.page-numbers li span.prev:hover:before, .loop-pagination > ul.page-numbers li span.prev:hover:before, .woocommerce-pagination > ul.page-numbers li a.next:focus:before, .loop-pagination > ul.page-numbers li a.next:focus:before, .woocommerce-pagination > ul.page-numbers li span.next:focus:before, .loop-pagination > ul.page-numbers li span.next:focus:before, .woocommerce-pagination > ul.page-numbers li a.prev:focus:before, .loop-pagination > ul.page-numbers li a.prev:focus:before, .woocommerce-pagination > ul.page-numbers li span.prev:focus:before, .loop-pagination > ul.page-numbers li span.prev:focus:before {
    color: #fff; }
  .woocommerce-pagination > ul.page-numbers li a.prev:before, .loop-pagination > ul.page-numbers li a.prev:before, .woocommerce-pagination > ul.page-numbers li span.prev:before, .loop-pagination > ul.page-numbers li span.prev:before {
    content: "\34"; }
  .woocommerce-pagination > ul.page-numbers li a.next:before, .loop-pagination > ul.page-numbers li a.next:before, .woocommerce-pagination > ul.page-numbers li span.next:before, .loop-pagination > ul.page-numbers li span.next:before {
    content: "\35"; }
  .woocommerce-pagination > ul.page-numbers li:first-child, .loop-pagination > ul.page-numbers li:first-child {
    margin-left: 0px; }
  .rtl .woocommerce-pagination > ul.page-numbers li:first-child, .rtl .loop-pagination > ul.page-numbers li:first-child {
    margin-right: 0px;
    margin-left: 0; }

.page-links .page-links-title {
  text-transform: capitalize;
  color: #868686;
  margin-right: 5px; }
  .rtl .page-links .page-links-title {
    margin-left: 5px;
    margin-right: 0; }
  .page-links > span:not(.page-links-title) {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #D3AD47;
    display: inline-block;
    margin-right: 5px;
    color: #fff;
    background: #D3AD47; }
  .rtl .page-links > span:not(.page-links-title) {
    margin-left: 5px;
    margin-right: 0; }
  .page-links a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid rgba(163, 163, 163, 0.5);
    display: inline-block;
    margin-right: 5px;
    color: #868686; }
  .rtl .page-links a {
    margin-left: 5px;
    margin-right: 0; }
  .page-links a:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }

.fancybox-close {
  background-color: #D3AD47; }
  .fancybox-close:hover {
    background-color: #000; }

button:focus {
  box-shadow: unset !important;
  outline: 0; }

.wp-block-button {
  color: #fff;
  margin-bottom: 1.5em; }

.wp-block-button__link:hover {
  text-decoration: underline !important; }

.wp-block-button__link {
  background-color: #313440;
  border: none;
  border-radius: 6px;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: break-word; }

.is-style-outline {
  color: #313440; }
  .is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid; }

.wp-block-cover {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; }

.wp-block-cover-image {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; }
  .wp-block-cover-image.has-parallax {
    background-attachment: fixed; }

.wp-block-cover.has-parallax {
  background-attachment: fixed; }

@supports (-webkit-overflow-scrolling: touch) {
  .wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
    background-attachment: scroll; } }

@media (prefers-reduced-motion: reduce) {
  .wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
    background-attachment: scroll; } }

.wp-block-cover-image.has-background-dim:before, .wp-block-cover.has-background-dim:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: inherit;
  opacity: 0.5;
  z-index: 1; }

.wp-block-cover-image.has-background-dim.has-background-dim-10:before, .wp-block-cover.has-background-dim.has-background-dim-10:before {
  opacity: 0.1; }

.wp-block-cover-image.has-background-dim.has-background-dim-20:before, .wp-block-cover.has-background-dim.has-background-dim-20:before {
  opacity: 0.2; }

.wp-block-cover-image.has-background-dim.has-background-dim-30:before, .wp-block-cover.has-background-dim.has-background-dim-30:before {
  opacity: 0.3; }

.wp-block-cover-image.has-background-dim.has-background-dim-40:before, .wp-block-cover.has-background-dim.has-background-dim-40:before {
  opacity: 0.4; }

.wp-block-cover-image.has-background-dim.has-background-dim-50:before, .wp-block-cover.has-background-dim.has-background-dim-50:before {
  opacity: 0.5; }

.wp-block-cover-image.has-background-dim.has-background-dim-60:before, .wp-block-cover.has-background-dim.has-background-dim-60:before {
  opacity: 0.6; }

.wp-block-cover-image.has-background-dim.has-background-dim-70:before, .wp-block-cover.has-background-dim.has-background-dim-70:before {
  opacity: 0.7; }

.wp-block-cover-image.has-background-dim.has-background-dim-80:before, .wp-block-cover.has-background-dim.has-background-dim-80:before {
  opacity: 0.8; }

.wp-block-cover-image.has-background-dim.has-background-dim-90:before, .wp-block-cover.has-background-dim.has-background-dim-90:before {
  opacity: 0.9; }

.wp-block-cover-image.has-background-dim.has-background-dim-100:before, .wp-block-cover.has-background-dim.has-background-dim-100:before {
  opacity: 1; }

.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright {
  max-width: 305px;
  width: 100%; }

.wp-block-cover.alignleft, .wp-block-cover.alignright {
  max-width: 305px;
  width: 100%; }

.wp-block-cover-image:after, .wp-block-cover:after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-cover-image:after, .wp-block-cover:after {
    content: none; } }

.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft, .wp-block-cover-image.alignright {
  display: flex; }

.wp-block-cover.aligncenter, .wp-block-cover.alignleft, .wp-block-cover.alignright {
  display: flex; }

.wp-block-cover-image .wp-block-cover__inner-container, .wp-block-cover .wp-block-cover__inner-container {
  width: calc(100% - 70px);
  z-index: 1;
  color: #f8f9f9; }

.wp-block-cover-image .wp-block-subhead:not(.has-text-color), .wp-block-cover-image h1:not(.has-text-color), .wp-block-cover-image h2:not(.has-text-color), .wp-block-cover-image h3:not(.has-text-color), .wp-block-cover-image h4:not(.has-text-color), .wp-block-cover-image h5:not(.has-text-color), .wp-block-cover-image h6:not(.has-text-color), .wp-block-cover-image p:not(.has-text-color) {
  color: inherit; }

.wp-block-cover .wp-block-subhead:not(.has-text-color), .wp-block-cover h1:not(.has-text-color), .wp-block-cover h2:not(.has-text-color), .wp-block-cover h3:not(.has-text-color), .wp-block-cover h4:not(.has-text-color), .wp-block-cover h5:not(.has-text-color), .wp-block-cover h6:not(.has-text-color), .wp-block-cover p:not(.has-text-color) {
  color: #fff !important; }

.wp-block-cover__video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover; }

.wp-block-cover-image-text, .wp-block-cover-text, section.wp-block-cover-image h2 {
  color: #fff; }

.wp-block-cover-image-text a {
  color: #fff; }
  .wp-block-cover-image-text a:active, .wp-block-cover-image-text a:focus, .wp-block-cover-image-text a:hover {
    color: #fff; }

.wp-block-cover-text a {
  color: #fff; }
  .wp-block-cover-text a:active, .wp-block-cover-text a:focus, .wp-block-cover-text a:hover {
    color: #fff; }

section.wp-block-cover-image h2 a {
  color: #fff; }
  section.wp-block-cover-image h2 a:active, section.wp-block-cover-image h2 a:focus, section.wp-block-cover-image h2 a:hover {
    color: #fff; }

.wp-block-cover.has-left-content {
  justify-content: flex-start; }
  .wp-block-cover.has-right-content {
    justify-content: flex-end; }

.wp-block-cover-image.has-left-content .wp-block-cover-image-text {
  margin-left: 0;
  text-align: left; }

.wp-block-cover.has-left-content .wp-block-cover-text, section.wp-block-cover-image.has-left-content > h2 {
  margin-left: 0;
  text-align: left; }

.wp-block-cover-image.has-right-content .wp-block-cover-image-text, .wp-block-cover.has-right-content .wp-block-cover-text, section.wp-block-cover-image.has-right-content > h2 {
  margin-right: 0;
  text-align: right; }

.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, section.wp-block-cover-image > h2 {
  font-size: 2em;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 610px;
  padding: 14px;
  text-align: center; }
  .wp-block-cover-image .wp-block-cover-image-text strong, .wp-block-cover .wp-block-cover-text strong, section.wp-block-cover-image > h2 strong {
    font-size: inherit !important;
    color: inherit !important;
    font-weight: 500; }

.wp-block-image .aligncenter {
  clear: both; }

.wp-block-gallery {
  margin-bottom: 1rem; }

@media (max-width: 991px) {
  /* Main Menu */
    .bwp-navigation {
      display: none; }
    .rtl .bwp-canvas-navigation .menu li .mm-next::before {
      content: "\f177"; }
    .mm-btn {
      height: 50px; }
    .bwp-canvas-navigation, .bwp-canvas-vertical {
      position: fixed;
      top: 0px;
      left: 0;
      bottom: 0px;
      background-color: #fff;
      width: 280px;
      z-index: 999999;
      overflow-x: hidden;
      overflow-y: auto;
      visibility: hidden;
      border-width: 1px 0 0 1px;
      -webkit-transform: translate3d(-280px, 0, 0);
      -moz-transform: translate3d(-280px, 0, 0);
      -ms-transform: translate3d(-280px, 0, 0);
      -o-transform: translate3d(-280px, 0, 0);
      transform: translate3d(-280px, 0, 0);
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .bwp-canvas-navigation .remove-megamenu, .bwp-canvas-vertical .remove-megamenu {
        padding: 10px;
        z-index: 10;
        cursor: pointer;
        display: none;
        text-align: right; }
      .bwp-canvas-navigation .remove-megamenu, .bwp-canvas-vertical .remove-megamenu {
        display: block;
        padding: 0;
        background: #D3AD47;
        padding: 10px 20px 20px;
        color: #fff;
        text-transform: uppercase;
        font-size: 13px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif; }
        .bwp-canvas-navigation .remove-megamenu::after, .bwp-canvas-vertical .remove-megamenu::after {
          content: "\4d";
          font-family: eleganticons;
          color: #fff;
          font-size: 25px;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          display: inline-block;
          text-align: center;
          line-height: 25px;
          margin-left: 5px;
          position: relative;
          top: 5px; }
          .rtl .bwp-canvas-navigation .remove-megamenu::after, .rtl .bwp-canvas-vertical .remove-megamenu::after {
            margin-right: 5px;
            margin-left: 0; }
        .bwp-canvas-navigation .remove-megamenu:hover::before, .bwp-canvas-vertical .remove-megamenu:hover::before {
          color: #868686; }
      .bwp-canvas-navigation.active, .bwp-canvas-vertical.active {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3);
        box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3); }
      .bwp-canvas-navigation .mm-menu, .bwp-canvas-vertical .mm-menu {
        background: #fff;
        z-index: 999;
        top: 68px; }
        .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview, .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview {
          margin: 0;
          margin-top: 0px; }
          .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview .vertical-menu, .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview .vertical-menu {
            background-image: none !important; }
          .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > a, .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > a, .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > span, .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > span {
            padding: 0;
            text-align: left; }
            .rtl .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > a, .rtl .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > a, .rtl .bwp-canvas-navigation .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > span, .rtl .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li.level-0 > span {
              text-align: right; }
        .bwp-canvas-navigation .mm-menu .title, .bwp-canvas-vertical .mm-menu .title {
          margin-bottom: 17px; }
          .bwp-canvas-navigation .mm-menu .title h2, .bwp-canvas-vertical .mm-menu .title h2 {
            font-size: 15px;
            padding-bottom: 5px !important;
            position: relative;
            font-weight: 600; }
        .bwp-canvas-navigation .mm-menu .mm-listview, .bwp-canvas-vertical .mm-menu .mm-listview {
          margin: 0;
          padding: 0; }
          .bwp-canvas-navigation .mm-menu .mm-listview > li:not(.mm-divider):after, .bwp-canvas-vertical .mm-menu .mm-listview > li:not(.mm-divider):after {
            display: none; }
        .bwp-canvas-navigation .mm-menu .mm-navbar, .bwp-canvas-vertical .mm-menu .mm-navbar {
          height: 50px;
          line-height: 30px;
          border: none; }
          .bwp-canvas-navigation .mm-menu .mm-navbar a, .bwp-canvas-vertical .mm-menu .mm-navbar a {
            color: #D3AD47;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 16px; }
        .bwp-canvas-navigation .mm-menu .menu-item-image, .bwp-canvas-vertical .mm-menu .menu-item-image {
          border-bottom: none;
          text-align: center;
          margin-top: 10px; }
          .bwp-canvas-navigation .mm-menu .menu-item-image > span.title, .bwp-canvas-vertical .mm-menu .menu-item-image > span.title, .bwp-canvas-navigation .mm-menu .menu-item-image > a, .bwp-canvas-vertical .mm-menu .menu-item-image > a {
            display: none; }
        .bwp-canvas-navigation .mm-menu .sub-menu li, .bwp-canvas-vertical .mm-menu .sub-menu li {
          border: 0;
          padding: 0px; }
          .bwp-canvas-navigation .mm-menu .sub-menu li > a:not(.mm-next), .bwp-canvas-vertical .mm-menu .sub-menu li > a:not(.mm-next), .bwp-canvas-navigation .mm-menu .sub-menu li span.title, .bwp-canvas-vertical .mm-menu .sub-menu li span.title {
            text-transform: capitalize;
            font-size: 13px;
            color: #868686; }
        .bwp-canvas-navigation .mm-menu ul > li, .bwp-canvas-vertical .mm-menu ul > li, .bwp-canvas-navigation .mm-menu ul > li.level-0, .bwp-canvas-vertical .mm-menu ul > li.level-0 {
          display: inline-block;
          width: 100%;
          position: relative !important;
          padding-top: 8px;
          padding-bottom: 6px !important;
          border-bottom: 1px solid rgba(224, 224, 224, 0.5); }
          .bwp-canvas-navigation .mm-menu ul > li.current_page_item > a > span.menu-item-text, .bwp-canvas-vertical .mm-menu ul > li.current_page_item > a > span.menu-item-text, .bwp-canvas-navigation .mm-menu ul > li.level-0.current_page_item > a > span.menu-item-text, .bwp-canvas-vertical .mm-menu ul > li.level-0.current_page_item > a > span.menu-item-text {
            font-weight: 500;
            color: #D3AD47; }
          .bwp-canvas-navigation .mm-menu ul > li .mm-next, .bwp-canvas-vertical .mm-menu ul > li .mm-next, .bwp-canvas-navigation .mm-menu ul > li.level-0 .mm-next, .bwp-canvas-vertical .mm-menu ul > li.level-0 .mm-next {
            position: absolute;
            top: 0;
            right: 0;
            width: 30px;
            height: 43px;
            text-align: center; }
            .rtl .bwp-canvas-navigation .mm-menu ul > li .mm-next, .rtl .bwp-canvas-vertical .mm-menu ul > li .mm-next, .rtl .bwp-canvas-navigation .mm-menu ul > li.level-0 .mm-next, .rtl .bwp-canvas-vertical .mm-menu ul > li.level-0 .mm-next {
              left: 0;
              right: auto; }
            .bwp-canvas-navigation .mm-menu ul > li .mm-next:before, .bwp-canvas-vertical .mm-menu ul > li .mm-next:before, .bwp-canvas-navigation .mm-menu ul > li.level-0 .mm-next:before, .bwp-canvas-vertical .mm-menu ul > li.level-0 .mm-next:before {
              display: none; }
            .bwp-canvas-navigation .mm-menu ul > li .mm-next:after, .bwp-canvas-vertical .mm-menu ul > li .mm-next:after, .bwp-canvas-navigation .mm-menu ul > li.level-0 .mm-next:after, .bwp-canvas-vertical .mm-menu ul > li.level-0 .mm-next:after {
              right: 17px; }
            .rtl .bwp-canvas-navigation .mm-menu ul > li .mm-next:after, .rtl .bwp-canvas-vertical .mm-menu ul > li .mm-next:after, .rtl .bwp-canvas-navigation .mm-menu ul > li.level-0 .mm-next:after, .rtl .bwp-canvas-vertical .mm-menu ul > li.level-0 .mm-next:after {
              left: 17px;
              right: auto; }
          .bwp-canvas-navigation .mm-menu ul > li > a:not(.mm-next), .bwp-canvas-vertical .mm-menu ul > li > a:not(.mm-next), .bwp-canvas-navigation .mm-menu ul > li.level-0 > a:not(.mm-next), .bwp-canvas-vertical .mm-menu ul > li.level-0 > a:not(.mm-next), .bwp-canvas-navigation .mm-menu ul > li span.title, .bwp-canvas-vertical .mm-menu ul > li span.title, .bwp-canvas-navigation .mm-menu ul > li.level-0 span.title, .bwp-canvas-vertical .mm-menu ul > li.level-0 span.title {
            color: #000;
            padding: 0;
            line-height: 30px;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 400; }
          .bwp-canvas-navigation .mm-menu ul > li:last-child, .bwp-canvas-vertical .mm-menu ul > li:last-child, .bwp-canvas-navigation .mm-menu ul > li.level-0:last-child, .bwp-canvas-vertical .mm-menu ul > li.level-0:last-child {
            border-bottom: 0; }
        .bwp-canvas-navigation .mm-menu ul.link-vertical li a, .bwp-canvas-vertical .mm-menu ul.link-vertical li a {
          color: #868686; }
          .bwp-canvas-navigation .mm-menu ul.link-vertical li a:hover, .bwp-canvas-vertical .mm-menu ul.link-vertical li a:hover {
            color: #D3AD47; }
        .bwp-canvas-navigation .mm-menu .elementor-top-column, .bwp-canvas-vertical .mm-menu .elementor-top-column {
          width: 100% !important;
          margin-bottom: 30px; }
          .bwp-canvas-navigation .mm-menu .elementor-top-column ul, .bwp-canvas-vertical .mm-menu .elementor-top-column ul {
            padding: 0; }
        .bwp-canvas-navigation .mm-menu .elementor-row, .bwp-canvas-vertical .mm-menu .elementor-row {
          flex-wrap: wrap; }
    .bwp-canvas-vertical {
      right: 0;
      left: auto;
      -webkit-transform: translate3d(280px, 0, 0);
      -moz-transform: translate3d(280px, 0, 0);
      -ms-transform: translate3d(280px, 0, 0);
      -o-transform: translate3d(280px, 0, 0);
      transform: translate3d(280px, 0, 0); }
      .bwp-canvas-vertical .remove-verticalmenu {
        text-align: left; }
      .bwp-canvas-vertical .menu-item-desc {
        display: none; }
      .bwp-canvas-vertical .more-wrap {
        display: none; }
      .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li > a > span > i {
        margin-right: 8px;
        width: 20px;
        font-size: 16px;
        position: relative;
        top: 2px; }
        .rtl .bwp-canvas-vertical .mm-menu .mm-panels > .mm-panel > .mm-listview > li > a > span > i {
          margin-left: 8px;
          margin-right: 0; }
      .bwp-canvas-vertical .remove-verticalmenu {
        display: block;
        padding: 0;
        background: #D3AD47;
        padding: 10px 20px 20px;
        text-align: left;
        color: #fff;
        text-transform: uppercase;
        color: #fff;
        font-size: 13px;
        font-family: 'Montserrat', sans-serif; }
        .rtl .bwp-canvas-vertical .remove-verticalmenu {
          text-align: right; }
        .bwp-canvas-vertical .remove-verticalmenu::after {
          content: "\4d";
          font-family: eleganticons;
          color: #fff;
          font-size: 25px;
          line-height: 25px;
          margin-left: 5px;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          display: inline-block;
          position: relative;
          top: 5px; }
        .rtl .bwp-canvas-vertical .remove-verticalmenu::after {
          margin-right: 5px;
          margin-left: 0; }
        .bwp-canvas-vertical .remove-verticalmenu:hover::after {
          color: #868686; } }
  @media (max-width: 991px) and (max-width: 991px) {
          .bwp-canvas-navigation .mm-menu .sub-menu > div > div > div > section, .bwp-canvas-vertical .mm-menu .sub-menu > div > div > div > section {
            background: transparent !important; }
          .bwp-canvas-navigation .mm-menu .sub-menu .wpb-col-sm-100.elementor-column, .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column {
            margin-bottom: 30px !important; }
            .bwp-canvas-navigation .mm-menu .sub-menu .wpb-col-sm-100.elementor-column:last-child, .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column:last-child {
              margin-bottom: 0 !important; }
            .bwp-canvas-navigation .mm-menu .sub-menu .wpb-col-sm-100.elementor-column .elementor-column-wrap, .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column .elementor-column-wrap {
              padding: 0; }
          .bwp-canvas-navigation .mm-menu .sub-menu ul li a, .bwp-canvas-vertical .mm-menu .sub-menu ul li a {
            position: relative;
            color: #868686; }
            .bwp-canvas-navigation .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text), .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text) {
              line-height: 17px;
              font-size: 8px;
              color: #fff;
              text-transform: uppercase;
              background: #45c03b;
              padding: 0 5px;
              position: absolute;
              top: -15px;
              right: -24px;
              margin: 0;
              min-width: auto;
              border-radius: 0;
              -webkit-border-radius: 0;
              -moz-border-radius: 0;
              -ms-border-radius: 0;
              -o-border-radius: 0; }
              .rtl .bwp-canvas-navigation .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text), .rtl .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text) {
                left: -24px;
                right: auto; }
              .bwp-canvas-navigation .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text):before, .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text):before {
                content: "";
                position: absolute;
                bottom: -4px;
                border-style: solid;
                border-width: 2px 3.5px;
                border-color: #45c03b;
                border-right-color: transparent;
                border-bottom-color: transparent; }
              .bwp-canvas-navigation .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot, .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot {
                background: #ff4a4a; }
                .bwp-canvas-navigation .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot:before, .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot:before {
                  border-color: #ff4a4a;
                  border-right-color: transparent;
                  border-bottom-color: transparent; } }
  @media (max-width: 991px) and (max-width: 991px) {
          .bwp-canvas-navigation .mm-menu .mm-listview ul, .bwp-canvas-vertical .mm-menu .mm-listview ul {
            padding: 0;
            margin-bottom: 30px; }
          .bwp-canvas-navigation .mm-menu .mm-listview .title h2, .bwp-canvas-vertical .mm-menu .mm-listview .title h2 {
            display: inline-block;
            color: #000;
            font-weight: 700;
            margin-top: 0px;
            margin-bottom: 17px;
            text-transform: uppercase;
            font-size: 15px; } }
  @media (max-width: 991px) and (max-width: 991px) {
          .bwp-canvas-vertical .mm-menu .sub-menu > div > div > div > section {
            background: transparent !important; }
            .bwp-canvas-vertical .mm-menu .sub-menu > div > div > div > section .elementor-inner-section {
              padding: 20px 0 0 !important; }
            .bwp-canvas-vertical .mm-menu .sub-menu > div > div > div > section .elementor-column-wrap {
              background: #fff !important; }
          .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column {
            margin-bottom: 30px !important; }
            .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column:last-child {
              margin-bottom: 0 !important; }
            .bwp-canvas-vertical .mm-menu .sub-menu .wpb-col-sm-100.elementor-column .elementor-column-wrap {
              padding: 0; }
          .bwp-canvas-vertical .mm-menu .sub-menu ul li a {
            position: relative;
            color: #868686; }
            .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text) {
              line-height: 17px;
              font-size: 8px;
              color: #fff;
              text-transform: uppercase;
              background: #45c03b;
              padding: 0 5px;
              position: absolute;
              top: -15px;
              right: -24px;
              margin: 0;
              min-width: auto;
              border-radius: 0;
              -webkit-border-radius: 0;
              -moz-border-radius: 0;
              -ms-border-radius: 0;
              -o-border-radius: 0; }
              .rtl .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text) {
                left: -24px;
                right: auto; }
              .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text):before {
                content: "";
                position: absolute;
                bottom: -4px;
                border-style: solid;
                border-width: 2px 3.5px;
                border-color: #45c03b;
                border-right-color: transparent;
                border-bottom-color: transparent; }
              .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot {
                background: #ff4a4a; }
                .bwp-canvas-vertical .mm-menu .sub-menu ul li a > span:not(.elementor-icon-list-text).hot:before {
                  border-color: #ff4a4a;
                  border-right-color: transparent;
                  border-bottom-color: transparent; } }

.wpbingo-menu-wrapper .navbar-default {
  border: none;
  background: transparent; }

.wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation {
  display: block; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation span.grower {
    display: block;
    opacity: 1;
    position: absolute;
    right: 0;
    cursor: pointer;
    font-family: ElegantIcons;
    font-size: 18px;
    top: 10px;
    text-align: center;
    color: #868686;
    background: transparent;
    width: 18px;
    height: 18px;
    line-height: 18px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .rtl .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation span.grower {
    left: 0;
    right: auto; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation span.grower:before {
    content: "\35"; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation span.grower.open {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg); }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0 {
    float: none;
    font-size: 16px;
    padding: 12px 0 !important;
    position: relative !important;
    border-bottom: 1px solid rgba(163, 163, 163, 0.4); }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0:last-child {
    padding-bottom: 12px !important;
    border-bottom: 0; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0 > a {
    margin: 0; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0 > ul.sub-menu li a {
    font-weight: 400; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.mega-menu > ul.sub-menu > li {
    margin-bottom: 0; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.mega-menu .menu-item-has-children span.title, .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.mega-menu .menu-item-has-children > a {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0 > span.grower {
    top: 14px;
    color: #868686; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0 a:before {
    display: none; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.menu-item-has-children > .sub-menu {
    position: initial;
    display: none;
    width: auto;
    opacity: 1;
    visibility: inherit;
    margin-top: 0px;
    float: none;
    min-width: auto !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 20px !important;
    padding: 0;
    background: transparent;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.menu-item-has-children > .sub-menu li {
    border: none; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.menu-item-has-children > .sub-menu li.level-1 {
    padding: 0; }
    .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu > li.level-0.menu-item-has-children > .sub-menu li.level-1.menu-item-has-children > a {
      padding: 0;
      font-size: 14px;
      font-weight: 400;
      text-transform: capitalize; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li {
    width: 100%;
    position: relative;
    padding: 3px 0 !important; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li:last-child {
    padding-bottom: 0 !important; }
  .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li.menu-item-has-children > a > span:after, .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li.menu-item-has-children > a:after {
    display: none; }
  @media (min-width: 768px) {
              .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li.menu-hide-title:not(.menu-item-image) > span.title, .wpbingo-menu-mobile.wpbingo-menu-sidebar .bwp-navigation ul.menu li.menu-hide-title:not(.menu-item-image) > a {
                display: block !important; } }

.bwp-navigation {
  float: none; }
  .bwp-navigation > .open > a {
    color: #000; }
  .bwp-navigation > .open > a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #D3AD47;
    left: 0;
    bottom: -1px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .bwp-navigation > .open > a:hover, .bwp-navigation > .open > a:focus {
    color: #000; }
  .bwp-navigation ul {
    padding: 0;
    list-style: none;
    float: none;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    margin: 0; }
  .bwp-navigation ul li {
    text-align: left; }
  .rtl .bwp-navigation ul li {
    text-align: right; }
  .bwp-navigation ul li.parent {
    position: relative; }
  .bwp-navigation ul li.dropdown-submenu {
    position: relative; }
  .bwp-navigation ul li.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    right: auto;
    position: absolute; }
  @media (min-width: 768px) {
          .bwp-navigation ul li.menu-hide-title > span.title, .bwp-navigation ul li.menu-hide-title > a {
            display: none !important; } }
  .bwp-navigation ul > li.level-0 {
    position: relative;
    display: table;
    float: left;
    padding: 0 15px;
    line-height: 24px; }
  .rtl .bwp-navigation ul > li.level-0 {
    float: right; }
  .bwp-navigation ul > li.level-0:first-child-child {
    padding-left: 0; }
  .rtl .bwp-navigation ul > li.level-0:first-child-child {
    padding-right: 0;
    padding-left: 0; }
  .bwp-navigation ul > li.level-0:last-child {
    padding-right: 0; }
  .rtl .bwp-navigation ul > li.level-0:last-child {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 1350px) {
      .bwp-navigation ul > li.level-0 {
        padding: 0 10px; } }
  .bwp-navigation ul > li.level-0:not(.mega-menu) ul.sub-menu li.level-1:first-child {
    padding-top: 0; }
  .bwp-navigation ul > li.level-0:not(.mega-menu) ul.sub-menu li.level-1.sub-menu-left ul.sub-menu {
    right: calc(100% - 10px) !important;
    left: auto !important; }
  .bwp-navigation ul > li.level-0 > a {
    position: relative;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    background-color: transparent;
    color: #000;
    display: table;
    white-space: nowrap;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s; }
  .bwp-navigation ul > li.level-0 > a .caret {
    color: #000; }
  .bwp-navigation ul > li.level-0 > a:hover {
    color: #000; }
  .bwp-navigation ul > li.level-0 > a > span {
    position: relative;
    display: inline-block; }
  @media (max-width: 1350px) {
        .bwp-navigation ul > li.level-0 > a {
          font-size: 12px; } }
  .bwp-navigation ul > li.level-0.menu-item-has-children > a {
    position: relative; }
  .bwp-navigation ul > li.level-0.menu-item-has-children > a:after {
    content: "\f2f9";
    font-family: "Material";
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    top: -1px; }
  .rtl .bwp-navigation ul > li.level-0.menu-item-has-children > a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-navigation ul > li.level-0.menu-item-has-children > a:before {
    content: "";
    position: absolute;
    bottom: -25px;
    width: 100%;
    height: 25px;
    left: 0; }
  .bwp-navigation ul > li.level-0.menu-item-has-children > a > span {
    position: relative; }
  .bwp-navigation ul > li.level-0.menu-item-has-children > a > span:before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: calc(50% - 5px);
    border-color: transparent;
    border-width: 6px 5px;
    border-style: solid;
    border-bottom-color: #D3AD47;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.1s linear, bottom 0.1s linear;
    transition: opacity 0.1s linear, bottom 0.1s linear; }
  .bwp-navigation ul > li.level-0 .menu-item-has-children > a:after {
    content: "\f2f9";
    font-family: "Material";
    font-size: 14px;
    display: inline-block;
    margin-left: 5px; }
  .rtl .bwp-navigation ul > li.level-0 .menu-item-has-children > a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp-navigation ul > li.level-0:hover > a {
    color: #000; }
  .bwp-navigation ul > li.level-0.current_page_item > a, .bwp-navigation ul > li.level-0:hover > a, .bwp-navigation ul > li.level-0.current-menu-item > a, .bwp-navigation ul > li.level-0.current-menu-ancestor > a {
    color: #000; }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li, .bwp-navigation ul > li.level-0 div.sub-menu li {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative; }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li:last-child, .bwp-navigation ul > li.level-0 div.sub-menu li:last-child {
    border: none;
    padding-bottom: 0; }
  @media (max-width: 991px) {
          .bwp-navigation ul > li.level-0 > ul.sub-menu li.menu-item-image, .bwp-navigation ul > li.level-0 div.sub-menu li.menu-item-image {
            margin-bottom: 10px; }
            .bwp-navigation ul > li.level-0 > ul.sub-menu li.menu-item-image > span.title, .bwp-navigation ul > li.level-0 div.sub-menu li.menu-item-image > span.title, .bwp-navigation ul > li.level-0 > ul.sub-menu li.menu-item-image > a, .bwp-navigation ul > li.level-0 div.sub-menu li.menu-item-image > a {
              display: none; } }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li a, .bwp-navigation ul > li.level-0 div.sub-menu li a {
    color: #868686;
    font-weight: 400;
    position: relative;
    font-size: 14px; }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li a:hover, .bwp-navigation ul > li.level-0 div.sub-menu li a:hover {
    color: #D3AD47; }
  @media (min-width: 992px) {
            .bwp-navigation ul > li.level-0 > ul.sub-menu li a, .bwp-navigation ul > li.level-0 div.sub-menu li a {
              position: relative;
              -webkit-transition: all 0.2s ease;
              transition: all 0.2s ease; } }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li a > span:not(.elementor-icon-list-text), .bwp-navigation ul > li.level-0 div.sub-menu li a > span:not(.elementor-icon-list-text) {
    line-height: 17px;
    font-size: 8px;
    color: #fff;
    text-transform: uppercase;
    background: #45c03b;
    padding: 0 5px;
    position: absolute;
    top: -15px;
    right: -24px;
    margin: 0;
    min-width: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .rtl .bwp-navigation ul > li.level-0 > ul.sub-menu li a > span:not(.elementor-icon-list-text), .rtl .bwp-navigation ul > li.level-0 div.sub-menu li a > span:not(.elementor-icon-list-text) {
    left: -24px;
    right: auto; }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li a > span:not(.elementor-icon-list-text):before, .bwp-navigation ul > li.level-0 div.sub-menu li a > span:not(.elementor-icon-list-text):before {
    content: "";
    position: absolute;
    bottom: -4px !important;
    border-style: solid;
    border-width: 2px 3.5px;
    border-color: #45c03b;
    border-right-color: transparent;
    border-bottom-color: transparent; }
  .bwp-navigation ul > li.level-0 > ul.sub-menu li a > span:not(.elementor-icon-list-text).hot, .bwp-navigation ul > li.level-0 div.sub-menu li a > span:not(.elementor-icon-list-text).hot {
    background: #ff4a4a; }
    .bwp-navigation ul > li.level-0 > ul.sub-menu li a > span:not(.elementor-icon-list-text).hot:before, .bwp-navigation ul > li.level-0 div.sub-menu li a > span:not(.elementor-icon-list-text).hot:before {
      border-color: #ff4a4a;
      border-right-color: transparent;
      border-bottom-color: transparent; }
  @media (min-width: 991px) {
        .bwp-navigation ul > li.level-0 > ul.sub-menu li.level-1 .sub-menu, .bwp-navigation ul > li.level-0 div.sub-menu li.level-1 .sub-menu {
          left: calc(100% - 20px);
          margin-top: -40px; }
          .rtl .bwp-navigation ul > li.level-0 > ul.sub-menu li.level-1 .sub-menu, .rtl .bwp-navigation ul > li.level-0 div.sub-menu li.level-1 .sub-menu {
            right: calc(100% - 20px);
            left: auto; } }
  .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width {
    position: static; }
  .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width > .sub-menu {
    left: 0;
    -webkit-transform: translateY(40px) !important;
    -moz-transform: translateY(40px) !important;
    -ms-transform: translateY(40px) !important;
    -o-transform: translateY(40px) !important;
    transform: translateY(40px) !important;
    padding: 0;
    -webkit-box-shadow: 3px 3px 45px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 3px 3px 45px 0px rgba(0, 0, 0, 0.05);
    min-width: 650px;
    padding: 0 15px;
    font-size: 13px; }
  .rtl .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width > .sub-menu {
    right: 0;
    left: auto; }
  .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width:hover {
    position: static; }
  .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width:hover > .sub-menu {
    -webkit-transform: translateY(13px) !important;
    -moz-transform: translateY(13px) !important;
    -ms-transform: translateY(13px) !important;
    -o-transform: translateY(13px) !important;
    transform: translateY(13px) !important; }
  .bwp-navigation ul > li.level-0.mega-menu .title {
    margin-bottom: 10px; }
  .bwp-navigation ul > li.level-0.mega-menu .title h2 {
    font-size: 15px;
    position: relative;
    font-weight: 600; }
  .bwp-navigation ul > li.level-0.mega-menu .menu-homepage a {
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    display: inline-block; }
  .bwp-navigation ul > li.level-0.mega-menu .menu-homepage a:hover {
    color: #D3AD47; }
  .bwp-navigation ul > li.level-0.mega-menu .menu-homepage .mega-menu-image {
    display: inline-block;
    border: 1px solid rgba(163, 163, 163, 0.25); }
  .bwp-navigation ul > li.level-0.mega-menu .menu-homepage .mega-menu-image > a {
    margin-bottom: 0; }
  .bwp-navigation ul > li.level-0.mega-menu .menu-homepage .mega-menu-image:hover {
    border: 1px solid #D3AD47; }
  @media (min-width: 991px) {
          .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu {
            min-width: 340px; } }
  .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.menu-item-has-children, .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.menu-item-image {
    border: none; }
  .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.level-1 .sub-menu {
    margin-top: 0;
    position: inherit;
    left: 0;
    margin-left: 0;
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .rtl .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.level-1 .sub-menu {
    right: 0;
    left: auto; }
  .rtl .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.level-1 .sub-menu {
    margin-right: 0;
    margin-left: 0; }
  @include transform(none !important)
							li.level-2 {
              .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu li.level-1 .sub-menu .mega-menu-image {
                display: inline-block;
                padding-bottom: 10px; } }
  @media (min-width: 768px) {
          .bwp-navigation ul > li.level-0.mega-menu > ul.sub-menu > li {
            margin-bottom: 30px; } }
  .bwp-navigation ul > li.level-0.mega-menu:hover > ul.sub-menu li.level-1 .sub-menu {
    opacity: 1 !important;
    visibility: visible !important; }
  .bwp-navigation ul > li.level-0.mega-menu.mega-menu-fullwidth-width .sub-menu {
    padding: 30px 15px; }
  .bwp-navigation ul > li.level-0.mega-menu .sub-menu li.level-1 {
    padding: 0px 15px; }
  .bwp-navigation ul > li.level-0.mega-menu .sub-menu li.level-1 > a {
    padding: 0px 0px 8px;
    display: block;
    font-size: 16px;
    color: #000;
    position: relative;
    font-weight: bold;
    text-transform: uppercase; }
  @media (max-width: 991px) {
            .bwp-navigation ul > li.level-0.mega-menu .sub-menu li.level-1 > a {
              font-size: 14px; } }
  .bwp-navigation ul > li.level-0 .sub-menu {
    display: block;
    min-width: 225px;
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.1s linear, transform 0.1s linear;
    transition: opacity 0.1s linear, transform 0.1s linear;
    -webkit-transform: translate(0px, 40px);
    -moz-transform: translate(0px, 40px);
    -ms-transform: translate(0px, 40px);
    -o-transform: translate(0px, 40px);
    transform: translate(0px, 40px);
    border-top: 2px solid #D3AD47; }
  .bwp-navigation ul > li.level-0 .sub-menu .menu-item-has-children {
    position: relative; }
  .bwp-navigation ul > li.level-0 ul.sub-menu {
    padding: 22px 0; }
  .bwp-navigation ul > li.level-0 ul.sub-menu li {
    padding: 5px 30px; }
  .bwp-navigation ul ul.sub-menu, .bwp-navigation ul div.sub-menu {
    padding: 22px 30px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1); }
  .bwp-navigation > .active a {
    color: #000; }
  .bwp-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translate(0px, 13px) !important;
    -moz-transform: translate(0px, 13px) !important;
    -ms-transform: translate(0px, 13px) !important;
    -o-transform: translate(0px, 13px) !important;
    transform: translate(0px, 13px) !important;
    display: block; }
  .bwp-navigation .menu-item-has-children:hover a > span:before {
    bottom: -15px !important;
    opacity: 1 !important;
    visibility: visible !important; }
  .bwp-navigation .menu-item-new-badge > a, .bwp-navigation .menu-item-sale-badge > a {
    position: relative; }
  .bwp-navigation .menu-item-new-badge > a > .sale-badge, .bwp-navigation .menu-item-sale-badge > a > .sale-badge, .bwp-navigation .menu-item-new-badge > a .new-badge, .bwp-navigation .menu-item-sale-badge > a .new-badge {
    position: absolute;
    top: -17px;
    font-size: 12px;
    text-transform: capitalize;
    color: #fff;
    padding: 0 5px; }
  .bwp-navigation .menu-item-new-badge > a > .sale-badge:before, .bwp-navigation .menu-item-sale-badge > a > .sale-badge:before, .bwp-navigation .menu-item-new-badge > a .new-badge:before, .bwp-navigation .menu-item-sale-badge > a .new-badge:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    position: absolute;
    top: 14px; }
  .bwp-navigation .menu-item-new-badge > a > .new-badge {
    background: #3a9be6;
    left: calc(100% + 5px); }
  .bwp-navigation .menu-item-new-badge > a > .new-badge:before {
    left: 0;
    border-color: transparent transparent transparent #3a9be6; }
  .bwp-navigation .menu-item-sale-badge > a > .sale-badge {
    right: calc(100% + 5px);
    background: red; }
  .bwp-navigation .menu-item-sale-badge > a > .sale-badge:before {
    border-color: transparent transparent transparent red;
    right: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.menu li.menu-item-loggedin {
  display: none !important; }

.logged-in .menu li.menu-item-loggedin {
  display: block !important; }
/*
 Inline block
 *-------------------------------------------
 */
.inline-block {
  display: inline-block;
  vertical-align: middle; }
  .lt-ie8 .inline-block {
    display: inline;
    zoom: 1; }
/*
 Clear Box
 *-------------------------------------------
 */
/*
 Clear List Style
 *-------------------------------------------
 */
.clear-list {
  padding: 0;
  list-style: none; }

.hidden, .no-sidebar-left .col-lg-2 .product-grid .onsale, .no-sidebar-right .col-lg-2 .product-grid .onsale, .no-sidebar-left .col-md-2 .product-grid .onsale, .no-sidebar-right .col-md-2 .product-grid .onsale, .no-sidebar-left .col-lg-2 .product-grid .button-groups, .no-sidebar-right .col-lg-2 .product-grid .button-groups, .no-sidebar-left .col-md-2 .product-grid .button-groups, .no-sidebar-right .col-md-2 .product-grid .button-groups, .no-sidebar-left .col-lg-2 .product-grid .category, .no-sidebar-right .col-lg-2 .product-grid .category, .no-sidebar-left .col-md-2 .product-grid .category, .no-sidebar-right .col-md-2 .product-grid .category, .no-sidebar-left .col-lg-2 .product-grid .price, .no-sidebar-right .col-lg-2 .product-grid .price, .no-sidebar-left .col-md-2 .product-grid .price, .no-sidebar-right .col-md-2 .product-grid .price, .no-sidebar-left .col-lg-2 .product-grid .rating, .no-sidebar-right .col-lg-2 .product-grid .rating, .no-sidebar-left .col-md-2 .product-grid .rating, .no-sidebar-right .col-md-2 .product-grid .rating, .products .product-list .button-groups .feedback, .product-info .cart .button .fa, .product-info .cart .button [class^="icon-"], .product-info .cart .button [class*=" icon-"] {
  display: none !important;
  visibility: hidden !important; }
/*
 Clear heading style
 *-------------------------------------------
 */
.no-heading-style:after {
  display: none !important; }
/*
 Text Transform
 *-------------------------------------------
 */
.text-none {
  text-transform: none !important; }

.text-uppercase {
  text-transform: uppercase !important; }
/*
 Align
 *-------------------------------------------
 */
.text-align-center {
  text-align: center; }

.separator_align_center {
  text-align: center !important; }

.separator_align_left {
  text-align: left !important; }

.separator_align_right {
  text-align: right !important; }
/*
 Wrapper
 *-------------------------------------------
 */
.well.no-margin {
  margin-bottom: 0; }
  .well.no-padding {
    padding-bottom: 0; }
/*
 Font size heading title
 *-------------------------------------------
 */
.font-size-lg {
  font-size: 2rem; }

.font-size-md {
  font-size: 35px; }

.font-size-sm {
  font-size: 1rem; }

.font-size-xs {
  font-size: 1rem; }
/*
 rounded
 *-------------------------------------------
 */
.rounded {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; }

.no-rounded {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px; }
/*------------------- content layout -----------------*/
.content-icon-box h3 {
  margin: 0; }

.policy-left .elementor-icon-box-wrapper {
  text-align: left !important;
  display: flex;
  align-items: center; }
  .policy-left .elementor-icon-box-wrapper .elementor-icon-box-icon {
    margin-right: 10px !important; }
  .rtl .policy-left .elementor-icon-box-wrapper .elementor-icon-box-icon {
    margin-left: 10px !important;
    margin-right: 0; }

@media (max-width: 991px) {
  .content-icon-box .elementor-icon-box-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; }
    .content-icon-box .elementor-icon-box-wrapper > * {
      width: 100%;
      text-align: center; }
    .content-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon {
      margin: 0 0 10px !important;
      justify-content: center; } }

@media (min-width: 991px) {
  .content-vertical-menu {
    width: 270px !important; }

  .content-vertical-slider {
    width: calc(100% - 270px) !important; } }

@media (min-width: 991px) {
  .content-vertical-menu-2 {
    width: 260px !important; }

  .content-vertical-slider-2 {
    width: calc(100% - 260px) !important; } }

.vertical-1 .widget-title {
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px; }

.vertical-2 .categories-vertical-menu > div {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0; }
  .vertical-2 .categories-vertical-menu .widget-title {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    line-height: 50px;
    height: 50px; }
  .vertical-2 .categories-vertical-menu .bwp-vertical-navigation > div ul.menu li.level-0 > a {
    padding: 8.5px 0; }
  .vertical-2 .categories-vertical-menu .bwp-vertical-navigation > div ul.menu .more-wrap {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }

.vertical-3 .categories-vertical-menu > div {
  background: transparent; }
  .vertical-3 .categories-vertical-menu .widget-title {
    background: transparent;
    padding: 0; }
  .vertical-3 .categories-vertical-menu .widget-title i {
    background: #D3AD47;
    margin: 26px 35px 0 0; }
  .rtl .vertical-3 .categories-vertical-menu .widget-title i {
    margin: 26px 0 0 35px; }
  .vertical-3 .categories-vertical-menu .widget-title i:before, .vertical-3 .categories-vertical-menu .widget-title i:after {
    background: #D3AD47; }
  .vertical-3 .categories-vertical-menu .widget-custom-menu > div {
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-box-shadow: 0px 4px 12px 2px rgba(144, 144, 144, 0.15);
    box-shadow: 0px 4px 12px 2px rgba(144, 144, 144, 0.15); }

.col-toggle {
  max-width: 600px;
  margin-left: auto; }
  .rtl .col-toggle {
    margin-right: auto;
    margin-left: 0; }

.wpb-toggle .elementor-toggle-item {
  padding: 10px 20px 20px 40px;
  border: 1px solid #fff;
  position: relative; }
  .rtl .wpb-toggle .elementor-toggle-item {
    padding: 10px 40px 20px 20px; }
  .wpb-toggle .elementor-toggle-item:before {
    content: "\f04b";
    font-family: FontAwesome;
    color: #de2828;
    position: absolute;
    left: 20px;
    font-size: 12px;
    top: 23px;
    line-height: 1; }
  .wpb-toggle .elementor-toggle-item .elementor-toggle-icon {
    width: 16px !important; }
  .wpb-toggle .elementor-toggle-item .elementor-tab-content {
    margin-top: 10px; }
  @media (max-width: 480px) {
    .wpb-toggle .elementor-toggle-item {
      padding: 10px 10px 16px; }
      .wpb-toggle .elementor-toggle-item:before {
        display: none; }
      .wpb-toggle .elementor-toggle-item .elementor-toggle-icon {
        width: 10px !important; } }

.content-icon-left {
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%); }
  @media (max-width: 1199px) {
  .content-icon-left {
    clip-path: inherit; } }

.content-icon-right {
  clip-path: polygon(8% 0, 100% 0%, 100% 100%, 0% 100%); }
  @media (max-width: 1199px) {
  .content-icon-right {
    clip-path: inherit; } }

.list-link-block-1 .elementor-icon-list-items li {
  padding-left: 15px;
  padding-right: 15px; }
  .list-link-block-1 .elementor-icon-list-items li .elementor-icon-list-icon {
    display: none; }
  .list-link-block-1 .elementor-icon-list-items li a:hover .elementor-icon-list-icon {
    display: block; }

.overflow-hidden {
  overflow: hidden; }
  .overflow-hidden > div {
    overflow: hidden; }

.icon-box-xs-left .elementor-widget-container .elementor-icon-box-wrapper {
  display: flex;
  text-align: left;
  align-items: center; }
  .rtl .icon-box-xs-left .elementor-widget-container .elementor-icon-box-wrapper {
    text-align: right; }
  .icon-box-xs-left .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-icon {
    margin-right: 20px !important; }
  .rtl .icon-box-xs-left .elementor-widget-container .elementor-icon-box-wrapper .elementor-icon-box-icon {
    margin-left: 20px !important;
    margin-right: 0; }

.social-link-contact a {
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block; }
  .social-link-contact a:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
/*------------------- end content layout -----------------*/
/*------------------- Content newsletter -----------------*/
.newsletter-default-2 .wpbingo-newsletter.newsletter-default .content-newsletter {
  max-width: 510px;
  margin: 0; }
  @media (max-width: 991px) {
        .newsletter-default-2 .wpbingo-newsletter.newsletter-default .content-newsletter {
          margin: auto; } }

.newsletter-default-3 .wpbingo-newsletter.newsletter-default .content-newsletter {
  max-width: 510px; }
  .newsletter-default-3 .wpbingo-newsletter.newsletter-default .content-newsletter input[type="submit"] {
    background: #D3AD47; }
  @media (max-width: 991px) {
        .newsletter-default-3 .wpbingo-newsletter.newsletter-default .content-newsletter {
          margin: auto; } }

.slider-outline .title-slider {
  -webkit-text-stroke: 1px #fff;
  color: transparent; }
/*------------------- End content newsletter -----------------*/
/*------------------- Other layout -----------------*/
.marginright-auto > .elementor-container {
  margin-left: 0 !important; }

.marginleft-auto > .elementor-container {
  margin-right: 0 !important; }

@media (min-width: 991px) {
  .marginright-sm-auto > .elementor-container {
    margin-left: 0 !important; }

  .marginleft-sm-auto > .elementor-container {
    margin-right: 0 !important; } }

@media (max-width: 991px) {
  .marginright-xs-auto > .elementor-container {
    margin-left: 0 !important; }

  .marginleft-xs-auto > .elementor-container {
    margin-right: 0 !important; } }

.elementor-icon-box-title {
  margin-top: 0; }

.elementor-widget-icon-box:hover .svg-icon path {
  animation: svg-animation 1.5s linear forwards; }
/*------------------- End layout -----------------*/
@media (max-width: 1770px) and (min-width: 1199px) {
    .elementor-section:not(.elementor-section-full_width,.elementor-inner-section) {
      padding-left: 15px;
      padding-right: 15px; } }
/*============Preloading Screen==================*/
.loader-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000111;
  opacity: 1;
  transition: all 2s linear 0s; }

.loader-content.loader-off, body.loaded .loader-content {
  opacity: 0;
  visibility: hidden; }
/* The loader container */
#loader {
  position: absolute;
  top: 0;
  width: 0%;
  height: 3px;
  background: #D3AD47;
  transition: width 1s ease;
  animation-name: pre-loader;
  animation-duration: 2s;
  animation-fill-mode: forwards; }
  #loader.pre-loading {
    animation-name: pre-loading;
    animation-duration: 1s;
    animation-fill-mode: forwards; }

.zoom-2 {
  overflow: hidden; }
  .zoom-2 img {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center; }
  .zoom-2:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.filter-grayscale, .widget .widget_sp_image-image-link img, .category-image img {
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s; }
  .filter-grayscale:hover, .widget .widget_sp_image-image-link img:hover, .category-image img:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%); }

.filter-brightness {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; }
  .filter-brightness:hover {
    filter: brightness(0.4);
    -webkit-filter: brightness(0.4);
    -moz-filter: brightness(0.4);
    -o-filter: brightness(0.4);
    -ms-filter: brightness(0.4); }

.filter-blur {
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s; }
  .filter-blur:hover {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px); }

.tab-pane {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 0;
  overflow: hidden;
  display: none; }
  .tab-pane.active {
    height: auto;
    display: block;
    overflow: visible; }

.close .fa {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }
  .close:hover .fa {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); }

.image-overlay-1:after, .image-overlay-1:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .rtl .image-overlay-1:after, .rtl .image-overlay-1:before {
    right: 0;
    left: auto; }
  .image-overlay-1:after {
    top: -100%; }
  .image-overlay-1:before {
    bottom: -100%; }
  .image-overlay-1:hover:after {
    top: -50%;
    opacity: 1;
    filter: alpha(opacity=100); }
  .image-overlay-1:hover:before {
    bottom: -50%;
    opacity: 1;
    filter: alpha(opacity=100); }

.image-plus-1 {
  position: relative; }
  .image-plus-1::before {
    overflow: hidden;
    position: absolute;
    top: 0;
    content: "";
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(0.5) rotateY(180deg);
    -moz-transform: scale(0.5) rotateY(180deg);
    -ms-transform: scale(0.5) rotateY(180deg);
    -o-transform: scale(0.5) rotateY(180deg);
    transform: scale(0.5) rotateY(180deg);
    background: url("/wp-content/themes/vapier/images/plus.png") no-repeat scroll center center / 60px 60px rgba(0, 0, 0, .6); }
  .rtl .image-plus-1::before {
    right: 0;
    left: auto; }
  .image-plus-1:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1) rotateY(0deg);
    -moz-transform: scale(1) rotateY(0deg);
    -ms-transform: scale(1) rotateY(0deg);
    -o-transform: scale(1) rotateY(0deg);
    transform: scale(1) rotateY(0deg); }

.image-plus-2 {
  position: relative; }
  .image-plus-2::before {
    content: "";
    z-index: 199;
    top: 0;
    position: absolute;
    background: url("/wp-content/themes/vapier/images/plus.png") no-repeat scroll center center / 60px 60px rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-background-size: 10px 10px, 100% 100%;
    -moz-background-size: 10px 10px, 100% 100%;
    -ms-background-size: 10px 10px, 100% 100%;
    -o-background-size: 10px 10px, 100% 100%;
    background-size: 10px 10px, 100% 100%;
    -webkit-background-origin: padding-box, padding-box;
    -moz-background-origin: padding-box, padding-box;
    -ms-background-origin: padding-box, padding-box;
    -o-background-origin: padding-box, padding-box;
    background-origin: padding-box, padding-box; }
  .rtl .image-plus-2::before {
    right: 0;
    left: auto; }
  .image-plus-2:hover::before {
    opacity: 0.6;
    visibility: visible;
    -webkit-background-size: 60px 60px, 100% 100%;
    -moz-background-size: 60px 60px, 100% 100%;
    -ms-background-size: 60px 60px, 100% 100%;
    -o-background-size: 60px 60px, 100% 100%;
    background-size: 60px 60px, 100% 100%; }

.image-plus-3 {
  position: relative; }
  .image-plus-3::before {
    content: "";
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    -webkit-transform: scale(0.5) rotateX(180deg);
    -moz-transform: scale(0.5) rotateX(180deg);
    -ms-transform: scale(0.5) rotateX(180deg);
    -o-transform: scale(0.5) rotateX(180deg);
    transform: scale(0.5) rotateX(180deg);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: rgba(0, 0, 0, .8); }
  .rtl .image-plus-3::before {
    right: 0;
    left: auto; }
  .image-plus-3:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1) rotateX(0deg);
    -moz-transform: scale(1) rotateX(0deg);
    -ms-transform: scale(1) rotateX(0deg);
    -o-transform: scale(1) rotateX(0deg);
    transform: scale(1) rotateX(0deg); }

.icon-effect-1 {
  position: relative; }
  .icon-effect-1:before {
    content: "";
    display: block;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent; }
  .icon-effect-1:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1); }

.ih-item.square {
  position: relative; }
  .ih-item.square .info {
    backface-visibility: hidden;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    background: #333;
    color: #fff; }
  .ih-item.square .info > * {
    color: #fff; }
  .ih-item.square .info h3 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 10px;
    background: #111;
    margin: 30px 0 0 0;
    font-size: 2rem; }
  .ih-item.square .info p {
    font-style: italic;
    position: relative;
    color: #bbb;
    padding: 20px 20px 20px;
    text-align: center;
    font-size: 1rem; }

.ih-item.square.effect2 {
  overflow: hidden; }
  .ih-item.square.effect2.colored .info {
    background: #333; }
  .ih-item.square.effect2.colored .info h3 {
    background: #111; }
  .ih-item.square.effect2 .img {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  .ih-item.square.effect2 .info {
    background: #333;
    visibility: hidden;
    -webkit-transition: all 0.35s 0.3s ease-in-out;
    transition: all 0.35s 0.3s ease-in-out; }
  .ih-item.square.effect2 .info h3 {
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: all 0.35s 0.6s ease-in-out;
    transition: all 0.35s 0.6s ease-in-out; }
  .ih-item.square.effect2 .info p {
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: all 0.35s 0.5s linear;
    transition: all 0.35s 0.5s linear; }
  .ih-item.square.effect2 a:hover .img {
    -webkit-transform: rotate(720deg) scale(0);
    -moz-transform: rotate(720deg) scale(0);
    -ms-transform: rotate(720deg) scale(0);
    -o-transform: rotate(720deg) scale(0);
    transform: rotate(720deg) scale(0);
    opacity: 0; }
  .ih-item.square.effect2 a:hover .info {
    visibility: visible; }
  .ih-item.square.effect2 a:hover .info h3, .ih-item.square.effect2 a:hover .info p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect3.bottom_to_top {
  overflow: hidden; }
  .ih-item.square.effect3.bottom_to_top .info {
    top: auto;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .ih-item.square.effect3.bottom_to_top .img {
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .ih-item.square.effect3.bottom_to_top a:hover .img {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px); }
  .ih-item.square.effect3.bottom_to_top a:hover .info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect5 .img {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }
  .ih-item.square.effect5 .info {
    background: #111;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect5 a:hover .img {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-delay: 0, 0;
    -moz-transition-delay: 0, 0;
    -ms-transition-delay: 0, 0;
    -o-transition-delay: 0, 0;
    transition-delay: 0, 0; }
  .ih-item.square.effect5 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition-delay: 0.3s, 0.3s;
    -moz-transition-delay: 0.3s, 0.3s;
    -ms-transition-delay: 0.3s, 0.3s;
    -o-transition-delay: 0.3s, 0.3s;
    transition-delay: 0.3s, 0.3s; }

.ih-item.square.effect5.left_to_right .info {
  -webkit-transform: scale(0) rotate(-180deg);
  -moz-transform: scale(0) rotate(-180deg);
  -ms-transform: scale(0) rotate(-180deg);
  -o-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg); }

.ih-item.square.effect6 {
  overflow: hidden; }
  .ih-item.square.effect6 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect6 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect6 .info h3 {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect6 .info p {
    -webkit-transition: all 0.35s 0.1s linear;
    transition: all 0.35s 0.1s linear; }
  .ih-item.square.effect6 a:hover .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  .ih-item.square.effect6 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect6.bottom_to_top .info h3 {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }
  .ih-item.square.effect6.bottom_to_top .info p {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }
  .ih-item.square.effect6.bottom_to_top a:hover .info h3, .ih-item.square.effect6.bottom_to_top a:hover .info p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect7 {
  overflow: hidden; }
  .ih-item.square.effect7 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect7 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect7 .info h3 {
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -ms-transform: scale(4);
    -o-transform: scale(4);
    transform: scale(4);
    -webkit-transition: all 0.35s 0.1s ease-in-out;
    transition: all 0.35s 0.1s ease-in-out; }
  .ih-item.square.effect7 .info p {
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    -webkit-transition: all 0.35s 0.3s linear;
    transition: all 0.35s 0.3s linear; }
  .ih-item.square.effect7 a:hover .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  .ih-item.square.effect7 a:hover .info {
    visibility: visible;
    opacity: 1; }
  .ih-item.square.effect7 a:hover .info h3, .ih-item.square.effect7 a:hover .info p {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect8 {
  overflow: hidden; }
  .ih-item.square.effect8 .img {
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect8 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect8 .info h3 {
    -webkit-transition: all 0.35s 0.1s ease-in-out;
    transition: all 0.35s 0.1s ease-in-out; }
  .ih-item.square.effect8 .info p {
    -webkit-transition: all 0.35s 0.15s linear;
    transition: all 0.35s 0.15s linear; }
  .ih-item.square.effect8 a:hover .img {
    opacity: 0; }
  .ih-item.square.effect8 a:hover .info {
    visibility: visible;
    opacity: 1; }
  .ih-item.square.effect8.scale_up .img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect8.scale_up .info {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  .ih-item.square.effect8.scale_up .info h3, .ih-item.square.effect8.scale_up .info p {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  .ih-item.square.effect8.scale_up a:hover .img {
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5); }
  .ih-item.square.effect8.scale_up a:hover .info {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect8.scale_up a:hover .info h3, .ih-item.square.effect8.scale_up a:hover .info p {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect10 {
  overflow: hidden; }
  .ih-item.square.effect10 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect10 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect10 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect10.left_to_right .img {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }
  .ih-item.square.effect10.left_to_right .info {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  .ih-item.square.effect10.left_to_right a:hover .img {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  .ih-item.square.effect10.left_to_right a:hover .info {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }

.ih-item.square.effect12 {
  overflow: hidden; }
  .ih-item.square.effect12 .img {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info h3 {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info p {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0.2s, 0.2s;
    -moz-transition-delay: 0.2s, 0.2s;
    -ms-transition-delay: 0.2s, 0.2s;
    -o-transition-delay: 0.2s, 0.2s;
    transition-delay: 0.2s, 0.2s; }
  .ih-item.square.effect12 a:hover .info h3 {
    -webkit-transition-delay: 0.3s, 0.3s;
    -moz-transition-delay: 0.3s, 0.3s;
    -ms-transition-delay: 0.3s, 0.3s;
    -o-transition-delay: 0.3s, 0.3s;
    transition-delay: 0.3s, 0.3s; }
  .ih-item.square.effect12 a:hover .info p {
    -webkit-transition-delay: 0.25s, 0.25s;
    -moz-transition-delay: 0.25s, 0.25s;
    -ms-transition-delay: 0.25s, 0.25s;
    -o-transition-delay: 0.25s, 0.25s;
    transition-delay: 0.25s, 0.25s; }

.ih-item.square.effect12.left_to_right .info {
  -webkit-transform: translate(-460px, -100px) rotate(-180deg);
  -moz-transform: translate(-460px, -100px) rotate(-180deg);
  -ms-transform: translate(-460px, -100px) rotate(-180deg);
  -o-transform: translate(-460px, -100px) rotate(-180deg);
  transform: translate(-460px, -100px) rotate(-180deg); }
  .ih-item.square.effect12.left_to_right .info h3 {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px); }
  .ih-item.square.effect12.left_to_right .info p {
    -webkit-transform: translateX(-300px) rotate(-90deg);
    -moz-transform: translateX(-300px) rotate(-90deg);
    -ms-transform: translateX(-300px) rotate(-90deg);
    -o-transform: translateX(-300px) rotate(-90deg);
    transform: translateX(-300px) rotate(-90deg); }
  .ih-item.square.effect12.left_to_right a:hover .info {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  .ih-item.square.effect12.left_to_right a:hover .info h3 {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  .ih-item.square.effect12.left_to_right a:hover .info p {
    -webkit-transform: translateX(0px) rotate(0deg);
    -moz-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    -o-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }

.ih-item.square.effect14 {
  overflow: hidden; }
  .ih-item.square.effect14 .img {
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect14 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.35s ease 0.2s;
    transition: all 0.35s ease 0.2s; }
  .ih-item.square.effect14 a:hover .img {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5); }
  .ih-item.square.effect14 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect14.left_to_right .img {
  -webkit-transform: translateX(0) rotate(0);
  -moz-transform: translateX(0) rotate(0);
  -ms-transform: translateX(0) rotate(0);
  -o-transform: translateX(0) rotate(0);
  transform: translateX(0) rotate(0); }
  .ih-item.square.effect14.left_to_right a:hover .img {
    -webkit-transform: translateX(100%) rotate(180deg);
    -moz-transform: translateX(100%) rotate(180deg);
    -ms-transform: translateX(100%) rotate(180deg);
    -o-transform: translateX(100%) rotate(180deg);
    transform: translateX(100%) rotate(180deg); }

.ih-item.square.effect15 {
  overflow: hidden;
  -webkit-perspective: 900px;
  -moz-perspective: 900px;
  perspective: 900px; }
  .ih-item.square.effect15 .img {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .ih-item.square.effect15 .info {
    background: #111;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out 0.3s;
    transition: all 0.35s ease-in-out 0.3s; }
  .ih-item.square.effect15 a:hover .img {
    opacity: 0;
    visibility: hidden; }
  .ih-item.square.effect15 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect15.left_to_right .img {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }
  .ih-item.square.effect15.left_to_right .info {
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%; }
  .ih-item.square.effect15.left_to_right a:hover .img {
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg); }
  .ih-item.square.effect15.left_to_right a:hover .info {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0); }
/*============@group Banners hover effect ==================*/
.banners-effect-1 .banners > div img {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .banners-effect-1 .banners > div img:hover {
    opacity: 0.8; }

.banners-effect-2 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-2 .banners > div a:hover:before, .banners-effect-2 .banners > div a:hover:after {
    left: 0;
    opacity: 1; }
  .banners-effect-2 .banners > div a:before, .banners-effect-2 .banners > div a:after {
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
    width: 100%;
    height: 100%;
    left: -100%;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    content: "";
    z-index: 1; }

.banners-effect-3 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-3 .banners > div a:hover:before, .banners-effect-3 .banners > div a:hover:after {
    border: 0 solid rgba(0, 0, 0, 0.7);
    opacity: 0;
    filter: alpha(opacity=0); }
  .banners-effect-3 .banners > div a:before, .banners-effect-3 .banners > div a:after {
    border: 50px solid transparent;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    top: 0;
    content: "";
    opacity: 1;
    filter: alpha(opacity=100);
    width: 100px;
    height: 100px;
    -webkit-transform: scale(7);
    -moz-transform: scale(7);
    -ms-transform: scale(7);
    -o-transform: scale(7);
    transform: scale(7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    visibility: visible;
    z-index: 1; }

.banners-effect-4 .banners > .bwp-image a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-4 .banners > .bwp-image a:hover:before, .banners-effect-4 .banners > .bwp-image a:hover:after {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1); }
  .banners-effect-4 .banners > .bwp-image a:before, .banners-effect-4 .banners > .bwp-image a:after {
    border-bottom: 50px solid rgba(0, 0, 0, 0.2);
    border-top: 50px solid rgba(0, 0, 0, 0.2);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    transform-origin: 50% 50% 0;
    width: 100%;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transition: opacity 0.4s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.4s ease 0s, transform 0.35s ease 0s;
    visibility: visible;
    z-index: 1; }

.banners-effect-5 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-5 .banners > div a:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    border: 70px solid rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out; }
  .banners-effect-5 .banners > div a:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.5;
    border: 30px solid #fff;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out; }
  .banners-effect-5 .banners > div a:hover:before {
    border: 0 solid rgba(255, 255, 255, 0.7); }
  .banners-effect-5 .banners > div a:hover:after {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s; }

.banners-effect-6 .banners > div a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top; }

.banners-effect-6 .banners > div a img {
  backface-visibility: hidden;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
  transition: opacity 1s ease 0s, transform 1s ease 0s; }

.banners-effect-6 .bwp-widget-banner:hover .banners > div a img {
  filter: alpha(opacity=80);
  transform: scale3d(1.1, 1.1, 1); }

.banners-effect-7 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }

.banners-effect-7 .banners > div a:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 0;
  top: 0;
  left: 50%;
  content: "";
  transition: all 0.3s ease-in-out 0s; }

.banners-effect-7 .banners > div a:hover:before {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%; }

.banners-effect-8 .banners > div a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #000;
  vertical-align: top; }

.banners-effect-8 .banners > div a:before, .banners-effect-8 .banners > div a:after {
  bottom: 20px;
  content: "";
  left: 20px;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  z-index: 1; }

.banners-effect-8 .banners > div a:before {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1); }

.banners-effect-8 .banners > div a:after {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0); }

.banners-effect-8 .banners > div img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.35s ease 0s;
  -o-transition: opacity 0.35s ease 0s;
  transition: opacity 0.35s ease 0s; }

.banners-effect-8 .banners > div a:hover:before, .banners-effect-8 .banners > div a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.banners-effect-8 .banners > div a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.banners-effect-9 .banners > div a {
  display: block;
  position: relative;
  z-index: 10; }

.banners-effect-9 .banners > div a:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: '';
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  opacity: 0; }

.banners-effect-9 .banners > div a:hover:before {
  opacity: 1; }

.banners-effect-9 .banners > div a img {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: perspective(1000px) translate3d(0, 0, 0);
  transform: perspective(1000px) translate3d(0, 0, 0); }

.banners-effect-9 .banners > div a:hover img {
  -webkit-transform: perspective(1000px) translate3d(0, 0, 21px);
  transform: perspective(1000px) translate3d(0, 0, 21px); }

.banners-effect-10 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }

.banners-effect-10 .banners > div a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 75%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s; }

.banners-effect-10 .banners > div a:hover:before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.banners-effect-11 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-11 .banners > div a:hover:before, .banners-effect-11 .banners > div a:hover:after {
    width: 100%;
    height: 100%; }
  .banners-effect-11 .banners > div a:before, .banners-effect-11 .banners > div a:after {
    background-color: rgba(0, 0, 0, 0.15);
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .banners-effect-11 .banners > div a:after {
    left: auto;
    right: 0;
    bottom: 0; }

.banners-effect-12 .banners > div img {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
  .banners-effect-12 .banners > div img:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%); }

.loading-filter {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 65px; }
  .loading-filter:before {
    background: url("/wp-content/themes/vapier/images/loading-filter.svg") no-repeat center;
    content: "";
    display: inline-block;
    background-size: contain;
    width: 100px;
    height: 65px;
    position: unset; }

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes d {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }

  33% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }

  40% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; } }

@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@keyframes scale2 {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0; } }

@keyframes shakes {
  16.65% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px); }

  33.33% {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -o-transform: translateX(-8px);
    transform: translateX(-8px); }

  49.95% {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px); }

  66.6% {
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    -o-transform: translateX(-4px);
    transform: translateX(-4px); }

  83.25% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px); }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

@keyframes rotate2 {
  16.65% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg); }

  33.33% {
    -webkit-transform: rotate(-13deg);
    -moz-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    -o-transform: rotate(-13deg);
    transform: rotate(-13deg); }

  49.95% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }

  66.6% {
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg); }

  83.25% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }

  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); } }

@-webkit-keyframes zoomin {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.05); }

  100% {
    transform: scale(1); } }

@keyframes zoomin {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.05); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@-webkit-keyframes zoomin2 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.15); }

  100% {
    transform: scale(1); } }

@keyframes zoomin2 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.15); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@-webkit-keyframes zoomin3 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.8); }

  100% {
    transform: scale(1); } }

@keyframes zoomin3 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.8); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes loading-home {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }

  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }

  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

@keyframes pre-loader {
  0% {
    width: 0; }

  100% {
    width: 40%; } }

@keyframes pre-loading {
  0% {
    width: 40%; }

  100% {
    width: 100%; } }

@keyframes svg-animation {
  0% {
    stroke: #D3AD47;
    stroke-width: 10px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; }

  90% {
    stroke: #D3AD47;
    stroke-width: 10px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0; }

  100% {
    stroke: unset;
    stroke-width: unset;
    fill: unset; } }
/*Font WooCommerce*/
/* Wooecommerce - Button - Input Submit
 ------------------------------------------------*/
.woocommerce #respond input#submit, .woocommerce button.button, .woocommerce input.button {
  color: #fff;
  background: #000;
  font-size: 13px;
  padding: 0 50px;
  line-height: 50px;
  cursor: pointer;
  border: 0; }
  .woocommerce #respond input#submit:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background: #025029; }
  .woocommerce #respond input#submit:focus, .woocommerce button.button:focus, .woocommerce input.button:focus {
    outline: none; }

.button.loading:before, #submit.loading:before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("/wp-content/themes/vapier/images/loading-cart.gif") center no-repeat transparent; }
/* End
 ------------------------------------------------*/
.clear-all:hover {
  text-decoration: none !important; }
/*Messenger
 -------------------------------------------------
 */
.vapier-product-added {
  background: #000;
  line-height: 1.5;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  color: #fff;
  top: 50px;
  left: auto;
  right: 30px;
  padding: 15px 25px;
  font-weight: 400;
  position: fixed;
  z-index: 10000; }
  .vapier-product-added > div {
    display: inline-block; }
  .vapier-product-added > div:before {
    display: inline-block;
    content: "\e91d";
    font-family: wpbingofont;
    margin-right: 10px; }
  .rtl .vapier-product-added > div:before {
    margin-left: 10px;
    margin-right: 0; }
  @media (max-width: 480px) {
  .vapier-product-added {
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
    max-width: 280px; } }

.woocommerce-error, .alert-success, .woocommerce-message {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
  list-style: none; }
  .woocommerce-error .wc-forward, .alert-success .wc-forward, .woocommerce-message .wc-forward {
    background: #D3AD47;
    color: #fff;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: 500;
    font-weight: 700;
    font-size: 12px; }
  .woocommerce-error .wc-forward:hover, .alert-success .wc-forward:hover, .woocommerce-message .wc-forward:hover {
    background: #025029;
    color: #fff; }
  .woocommerce-error .wc-forward:before, .alert-success .wc-forward:before, .woocommerce-message .wc-forward:before {
    display: none; }
  .woocommerce-error .wc-forward:after, .alert-success .wc-forward:after, .woocommerce-message .wc-forward:after {
    content: "\24";
    font-family: eleganticons;
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 4px; }
  .rtl .woocommerce-error .wc-forward:after, .rtl .alert-success .wc-forward:after, .rtl .woocommerce-message .wc-forward:after {
    margin-right: 10px;
    margin-left: 0; }

.woocommerce-notices-wrapper {
  max-width: 1410px;
  margin: auto;
  width: 100%; }

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  padding: 12px 22px 12px 42px;
  margin: 0 0 24px 0;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top: 3px solid #a46497;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  border-top-color: #b81c23;
  width: 100%; }
  .rtl .woocommerce-error, .rtl .woocommerce-info, .rtl .woocommerce-message {
    padding: 12px 42px 12px 22px; }
  .rtl .woocommerce-error, .rtl .woocommerce-info, .rtl .woocommerce-message {
    margin: 0 0 24px 0; }
  .woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
    float: right; }
  .rtl .woocommerce-error .button, .rtl .woocommerce-info .button, .rtl .woocommerce-message .button {
    float: left; }
  .woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
    list-style: none outside !important;
    padding-left: 0 !important;
    margin-left: 0 !important; }
  .rtl .woocommerce-error li, .rtl .woocommerce-info li, .rtl .woocommerce-message li {
    padding-right: 0 !important;
    padding-left: 0; }
  .rtl .woocommerce-error li, .rtl .woocommerce-info li, .rtl .woocommerce-message li {
    margin-right: 0 !important;
    margin-left: 0; }

.woocommerce-info:after, .woocommerce-message:after, .woocommerce-error:after {
  content: '';
  display: table;
  clear: both; }

.woocommerce-info:before, .woocommerce-message:before, .woocommerce-error:before {
  content: '\f1ec';
  display: table;
  font-family: Material;
  display: inline-block;
  position: absolute;
  top: 8px;
  font-size: 18px;
  left: 20px;
  color: #b81c23; }
  .rtl .woocommerce-info:before, .rtl .woocommerce-message:before, .rtl .woocommerce-error:before {
    right: 20px;
    left: auto; }

.woocommerce-info, .woocommerce-message {
  border-top: 3px solid #000;
  text-transform: capitalize; }
  .woocommerce-info:before, .woocommerce-message:before {
    content: "\e91e";
    font-family: wpbingofont;
    color: #000;
    font-size: 15px;
    margin-right: 10px;
    line-height: 1;
    top: 16px; }
  .rtl .woocommerce-info:before, .rtl .woocommerce-message:before {
    margin-left: 10px;
    margin-right: 0; }
  .woocommerce-info a, .woocommerce-message a {
    color: #000;
    font-weight: 700; }
  .woocommerce-info a:hover, .woocommerce-message a:hover {
    color: #D3AD47; }
  .woocommerce-info .button.wc-forward, .woocommerce-message .button.wc-forward {
    background: transparent;
    line-height: 28px;
    border: 1px solid #000;
    color: #000;
    padding: 0;
    padding: 0 15px 0 20px;
    font-size: 10px;
    text-transform: uppercase; }
  .woocommerce-info .button.wc-forward:after, .woocommerce-message .button.wc-forward:after {
    content: "\35";
    font-size: 15px;
    top: 3px;
    margin-left: 5px; }
  .rtl .woocommerce-info .button.wc-forward:after, .rtl .woocommerce-message .button.wc-forward:after {
    margin-right: 5px;
    margin-left: 0; }
  .woocommerce-info .button.wc-forward:hover, .woocommerce-message .button.wc-forward:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
/* 
 End
 *------------------------------------------------
 */
p.demo_store {
  top: 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 35px;
  padding: 0.5em 0;
  z-index: 99998;
  border: 1px solid #c7c7c7;
  -webkit-box-shadow: 0, 0, 0, 3px, rgba(255, 255, 255, 0.2);
  box-shadow: 0, 0, 0, 3px, rgba(255, 255, 255, 0.2); }
  .rtl p.demo_store {
    right: 0;
    left: auto; }
  .rtl p.demo_store {
    left: 0;
    right: auto; }
  .rtl p.demo_store {
    text-align: right; }
/*
 Utilities
 *---------------------------------------------------------------------------
 */
.woocommerce .wc-forward:before, .woocommerce .wc-forward a:before {
  content: "\f00c";
  font-family: 'icomoon';
  margin: 0 10px 0 0; }
  .rtl .woocommerce .wc-forward:before, .rtl .woocommerce .wc-forward a:before {
    margin: 0 0 0 10px; }
  .woocommerce .wc-backward, .woocommerce .wc-backward a {
    line-height: 34px;
    background: #000;
    color: #fff;
    padding: 0 20px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    height: 40px; }
  .woocommerce .wc-backward:before, .woocommerce .wc-backward a:before {
    content: "\23";
    font-size: 18px;
    font-family: 'ElegantIcons';
    margin: 0 5px 0 0;
    position: relative;
    top: 3px; }
  .rtl .woocommerce .wc-backward:before, .rtl .woocommerce .wc-backward a:before {
    margin: 0 0 0 5px; }
  .woocommerce .wc-backward:hover, .woocommerce .wc-backward a:hover {
    background: #D3AD47;
    color: #fff; }
/*
 woocommerce tabs
 *---------------------------------------------------------------------------
 */
.woocommerce-tabs {
  margin: 0 0 10px 0;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 50px; }
  .woocommerce-tabs table {
    margin: 0; }
  .woocommerce-tabs .tab-title {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 30px; }
  .woocommerce-tabs #tab-vendor .product-vendor {
    padding: 33px 50px 20px; }
  .woocommerce-tabs #tab-vendor .product-vendor h2 {
    font-size: 20px; }
  .woocommerce-tabs #tab-wcmp_customer_qna #cust_qna_form {
    padding: 45px 50px 30px; }
  .woocommerce-tabs #tab-wcmp_customer_qna #cust_qna_form h2 {
    font-size: 20px;
    margin-bottom: 25px; }
  .woocommerce-tabs #tab-singleproductmultivendor {
    padding: 40px 50px; }
  .woocommerce-tabs .content-woocommerce-tabs .content-tab {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px; }
  .woocommerce-tabs .content-ul-tab {
    margin-bottom: 35px;
    border-bottom: 1px solid #e0e0e0; }
  .woocommerce-tabs .content-tab .panel {
    padding: 0; }
  .woocommerce-tabs ul.tabs {
    position: relative;
    overflow: unset;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0; }
  .woocommerce-tabs ul.tabs li {
    padding: 0;
    border: 0;
    margin: 0;
    margin-right: 50px;
    -webkit-box-shadow: unset;
    box-shadow: unset; }
  .rtl .woocommerce-tabs ul.tabs li {
    margin-left: 50px;
    margin-right: 0; }
  .woocommerce-tabs ul.tabs li:before, .woocommerce-tabs ul.tabs li:after {
    display: none; }
  .woocommerce-tabs ul.tabs li:last-child {
    margin-right: 0; }
  .rtl .woocommerce-tabs ul.tabs li:last-child {
    margin-left: 0;
    margin-right: 0; }
  @media (max-width: 480px) {
      .woocommerce-tabs ul.tabs li {
        margin: 0; } }
  .woocommerce-tabs ul.tabs li a {
    color: #868686;
    font-size: 18px;
    padding: 0 0 5px;
    border: 0;
    display: inline-block;
    position: relative;
    font-weight: 600; }
  .woocommerce-tabs ul.tabs li a:before {
    position: absolute;
    bottom: -2px;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
    height: 3px;
    background: #D3AD47; }
  @media (max-width: 1199px) {
          .woocommerce-tabs ul.tabs li a:before {
            display: none; } }
  @media (max-width: 480px) {
        .woocommerce-tabs ul.tabs li a {
          font-size: 20px;
          padding: 0; } }
  .woocommerce-tabs ul.tabs li:hover, .woocommerce-tabs ul.tabs li.active {
    background: transparent; }
  .woocommerce-tabs ul.tabs li:hover a, .woocommerce-tabs ul.tabs li.active a {
    color: #000; }
  .woocommerce-tabs ul.tabs li:hover a:before, .woocommerce-tabs ul.tabs li.active a:before {
    width: 100%; }
  .woocommerce-tabs .panel {
    background: transparent;
    text-align: left;
    line-height: 2em;
    margin-left: auto;
    margin-right: auto; }
  .rtl .woocommerce-tabs .panel {
    text-align: right; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--seller h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--seller .seller-rating .star-rating > span > strong {
    opacity: 0; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--more_seller_product {
    border: 0; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--more_seller_product ul li:before {
    display: none; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-one {
    margin: 45px 0 40px; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-one .content-text {
    max-width: 635px;
    margin-left: auto; }
  .rtl .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-one .content-text {
    margin-right: auto;
    margin-left: 0; }
  @media (max-width: 991px) {
        .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-one {
          text-align: center; }
          .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-one .content-text {
            margin: auto; } }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-two .content-text {
    max-width: 635px;
    margin-right: auto; }
  .rtl .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-two .content-text {
    margin-left: auto;
    margin-right: 0; }
  @media (max-width: 991px) {
        .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-two {
          text-align: center; }
          .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-two .content-text {
            margin: auto;
            order: 2; }
          .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-two .content-img {
            order: 1; } }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .row {
    align-items: center; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-text h2 {
    margin: 0 0 15px; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description .content-text h3 {
    margin: 0 0 20px; }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description h2 {
    font-size: 32px;
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    text-transform: uppercase;
    margin: 40px 0 10px; }
  @media (max-width: 767px) {
        .woocommerce-tabs .panel.woocommerce-Tabs-panel--description h2 {
          font-size: 24px; } }
  .woocommerce-tabs .panel.woocommerce-Tabs-panel--description h3 {
    font-size: 20px;
    font-weight: 600;
    color: #868686;
    margin: 0; }
  @media (max-width: 767px) {
        .woocommerce-tabs .panel.woocommerce-Tabs-panel--description h3 {
          font-size: 15px; } }
  .woocommerce-tabs .panel ul {
    padding: 0;
    list-style: none; }
  .woocommerce-tabs .panel ol {
    padding-left: 15px; }
  .rtl .woocommerce-tabs .panel ol {
    padding-right: 15px;
    padding-left: 0; }
  .woocommerce-tabs .panel ol li {
    margin-bottom: 5px; }
  .woocommerce-tabs .panel ol li:last-child {
    margin-bottom: 0; }
  .woocommerce-tabs #tab-seller ul.list-unstyled > li.clearfix {
    display: flex; }
  .woocommerce-tabs #tab-seller ul.list-unstyled > li.clearfix .seller-rating {
    order: 2;
    display: inline-block;
    vertical-align: bottom;
    padding-top: 2px;
    margin-left: 15px; }
  .rtl .woocommerce-tabs #tab-seller ul.list-unstyled > li.clearfix .seller-rating {
    margin-right: 15px;
    margin-left: 0; }
  .woocommerce-tabs #tab-seller ul.list-unstyled > li.clearfix .text:after {
    content: ":";
    margin-left: 3px; }
  .rtl .woocommerce-tabs #tab-seller ul.list-unstyled > li.clearfix .text:after {
    margin-right: 3px;
    margin-left: 0; }
  .woocommerce-tabs #tab-description > ul {
    margin-bottom: 12px; }
  .woocommerce-tabs #tab-additional_information table.shop_attributes {
    border: none; }
  .woocommerce-tabs #tab-additional_information table.shop_attributes p {
    margin: 0; }
  .woocommerce-tabs #tab-additional_information table.shop_attributes > tbody > tr {
    background: #fff; }
  .woocommerce-tabs #tab-additional_information table.shop_attributes > tbody > tr > th {
    text-transform: capitalize;
    font-weight: 700;
    color: #000; }
  .woocommerce-tabs #tab-reviews #reviews #comments {
    margin-bottom: 40px; }
  .woocommerce-tabs #tab-reviews #reviews #comments .woocommerce-Reviews-title {
    font-size: 25px;
    margin-bottom: 30px; }
  .woocommerce-tabs #tab-reviews #reviews #comments .woocommerce-Reviews-title span {
    color: #D3AD47; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -15px; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist li {
    padding: 0 15px;
    flex: 1;
    min-width: 50%;
    margin-bottom: 25px; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist li .description {
    color: #868686;
    line-height: 22px; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist li .description p {
    margin: 0; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist li .content_comment_container {
    border: 1px solid #d9d9d9;
    padding: 30px; }
  @media (max-width: 767px) {
          .woocommerce-tabs #tab-reviews #reviews .commentlist li {
            flex: 0 0 100%; } }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .star-rating {
    position: absolute;
    right: 0;
    top: -15px; }
  .rtl .woocommerce-tabs #tab-reviews #reviews .commentlist .star-rating {
    left: 0;
    right: auto; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text {
    margin: 0;
    padding-left: 15px; }
  .rtl .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text {
    padding-right: 15px;
    padding-left: 0; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text .meta {
    margin: 0; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text .meta .woocommerce-review__author {
    display: block;
    color: #000;
    font-size: 13px;
    margin-bottom: -5px;
    text-transform: uppercase; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text .meta .woocommerce-review__dash {
    display: none; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment-text .meta .woocommerce-review__published-date {
    font-size: 12px; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 10px; }
  .woocommerce-tabs #tab-reviews #reviews .commentlist .comment_container > img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond #reply-title {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500; }
  .woocommerce-tabs #tab-reviews #reviews #respond #reply-title:before {
    content: "\e918";
    font-family: wpbingofont;
    display: inline-block;
    font-size: 20px;
    margin-right: 15px;
    font-weight: 400; }
  .rtl .woocommerce-tabs #tab-reviews #reviews #respond #reply-title:before {
    margin-left: 15px;
    margin-right: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond .comment-notes {
    margin-bottom: 15px; }
  .woocommerce-tabs #tab-reviews #reviews #respond .comment-form .comment-form-rating label {
    font-weight: 500;
    margin-right: 0;
    margin-bottom: 10px;
    color: #000; }
  .rtl .woocommerce-tabs #tab-reviews #reviews #respond .comment-form .comment-form-rating label {
    margin-left: 0;
    margin-right: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond .form-submit {
    margin: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="submit"] {
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 0 50px;
    height: 60px;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="submit"]:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="text"], .woocommerce-tabs #tab-reviews #reviews #respond input[type="email"], .woocommerce-tabs #tab-reviews #reviews #respond textarea {
    background: #fff;
    padding: 14px 20px;
    border: 1px solid #d6d6d6;
    height: 60px;
    font-weight: 300;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="text"]:-moz-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond input[type="email"]:-moz-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond textarea:-moz-placeholder {
    color: #868686; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="text"]::-moz-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond input[type="email"]::-moz-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond textarea::-moz-placeholder {
    color: #868686; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="text"]:-ms-input-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond input[type="email"]:-ms-input-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond textarea:-ms-input-placeholder {
    color: #868686; }
  .woocommerce-tabs #tab-reviews #reviews #respond input[type="text"]::-webkit-input-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond input[type="email"]::-webkit-input-placeholder, .woocommerce-tabs #tab-reviews #reviews #respond textarea::-webkit-input-placeholder {
    color: #868686; }
  .woocommerce-tabs #tab-reviews #reviews #respond textarea {
    height: 100% !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-notes, .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-rating {
    width: 100%;
    padding: 0 10px; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-comment {
    flex: 1;
    padding: 0 10px;
    margin: 0;
    order: 2; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .content-info-reviews {
    flex: 1;
    padding: 0 10px;
    order: 1;
    margin: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .required {
    color: red; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-author, .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-email {
    margin-bottom: 25px; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-author input, .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-email input {
    width: 100%; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars {
    padding-top: 0;
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 7px; }
  .rtl .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars {
    margin-right: 20px;
    margin-left: 0; }
  .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars a:hover, .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars a.active {
    color: #f7bc3d; }
    .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars a:hover:after, .woocommerce-tabs #tab-reviews #reviews #respond #commentform .stars a.active:after {
      color: #f7bc3d; }
  @media (max-width: 767px) {
          .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-comment {
            flex: 0 0 100%;
            order: 1;
            margin-bottom: 25px; }
          .woocommerce-tabs #tab-reviews #reviews #respond #commentform .content-info-reviews {
            flex: 0 0 100%; } }
  .woocommerce-tabs #tab-reviews #reviews #review_form {
    width: 100%;
    flex: 0 0 100%; }
  .woocommerce-tabs #tab-reviews #reviews #review_form.have-rating {
    width: 70%;
    flex: 0 0 70%; }
  @media (max-width: 991px) {
          .woocommerce-tabs #tab-reviews #reviews #review_form.have-rating {
            width: 100%;
            flex: 0 0 100%; } }
  .woocommerce-tabs #tab-reviews #reviews .average-rating {
    width: 30%;
    flex: 0 0 30%; }
  @media (max-width: 991px) {
        .woocommerce-tabs #tab-reviews #reviews .average-rating {
          width: 100%;
          flex: 0 0 100%;
          margin-bottom: 50px; } }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .average-label {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .average-value {
    font-size: 55px;
    margin: 0;
    font-weight: 600;
    color: #D3AD47; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-rating {
    font-size: 18px;
    width: 115px; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .review-count {
    margin-top: -10px; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .bar-rating {
    margin-top: 15px; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item {
    display: flex;
    align-items: center; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-label {
    min-width: 50px;
    margin-right: 10px; }
  .rtl .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-label {
    margin-left: 10px;
    margin-right: 0; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-bar {
    min-width: 200px;
    height: 10px;
    margin-right: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden; }
  .rtl .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-bar {
    margin-left: 20px;
    margin-right: 0; }
  @media (max-width: 1199px) {
            .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-bar {
              min-width: 140px; } }
  @media (max-width: 991px) {
            .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-bar {
              width: calc(100% - 115px);
              min-width: unset; } }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-content {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #f1f1f1; }
  .woocommerce-tabs #tab-reviews #reviews .average-rating .star-item .star-content > span {
    background: #D3AD47;
    display: block;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px; }
  .woocommerce-tabs #tab-reviews #reviews #review_form_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; }
  .woocommerce-tabs #tab-reviews #reviews #review_form_wrapper > div {
    padding: 0 15px; }
  .woocommerce-tabs #tab-vendor h2 {
    text-transform: capitalize; }
  .woocommerce-tabs #tab-vendor a {
    color: #D3AD47;
    position: relative; }
  .woocommerce-tabs #tab-vendor a:after {
    content: "\f178";
    font-family: FontAwesome;
    display: inline-block;
    top: -4px;
    right: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .rtl .woocommerce-tabs #tab-vendor a:after {
    left: 0;
    right: auto; }
  .woocommerce-tabs #tab-vendor a:hover:after {
    opacity: 1;
    right: -20px; }
  .rtl .woocommerce-tabs #tab-vendor a:hover:after {
    left: -20px;
    right: auto; }
  .woocommerce-tabs #tab-wcmp_customer_qna input {
    padding: 10px 20px; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .rowbody {
    background: #fff; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .rowbody .rowsub:nth-of-type(3) {
    text-align: right; }
  .rtl .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .rowbody .rowsub:nth-of-type(3) {
    text-align: left; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .rowbody:last-child {
    border-top: none; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .row.rowhead {
    background: transparent; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .row.rowhead > .rowsub {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #868686;
    background: #f9f9f9;
    line-height: 35px; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .vendor_name {
    float: left; }
  .rtl .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .vendor_name {
    float: right; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .vendor_name a {
    color: #868686; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .vendor_name a:hover {
    color: #D3AD47; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .buttongap {
    margin: 0 10px; }
  .woocommerce-tabs .woocommerce-Tabs-panel--singleproductmultivendor .container .buttongap:last-child {
    margin: 0px; }
  .woocommerce-tabs.description-style-vertical {
    padding: 0 0 75px; }
  .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs {
    display: flex;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto; }
  .woocommerce-tabs.description-style-vertical .content-tab {
    padding-left: 50px;
    flex: 1; }
  .rtl .woocommerce-tabs.description-style-vertical .content-tab {
    padding-right: 50px;
    padding-left: 0; }
  .woocommerce-tabs.description-style-vertical .content-tab .woocommerce-Reviews-title {
    margin-top: 0; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab {
    padding: 0;
    flex: 0 0 240px;
    text-align: left;
    margin: 0;
    border: 0; }
  .rtl .woocommerce-tabs.description-style-vertical .content-ul-tab {
    text-align: right; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul {
    padding: 0;
    height: 100%;
    border-right: 3px solid #e9e9e9; }
  .rtl .woocommerce-tabs.description-style-vertical .content-ul-tab ul {
    border-left: 3px solid #e9e9e9;
    border-right: 0; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul li {
    margin: 0;
    width: 100%;
    padding: 19px 0;
    position: relative; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul li:before {
    content: "";
    width: 3px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: -3px;
    left: auto;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    display: inline-block;
    opacity: 0;
    visibility: hidden; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul li a {
    color: #000;
    padding: 0; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul li a:before {
    height: 1px; }
  .woocommerce-tabs.description-style-vertical .content-ul-tab ul li.active:before {
    opacity: 1;
    visibility: visible; }
  @media (max-width: 1510px) and (min-width: 1200px) {
    .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs {
      padding-left: 30px;
      padding-right: 30px; }

    .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs .content-ul-tab ul.tabs {
      padding-left: 0;
      padding-right: 0; }

    .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs .content-tab {
      padding: 0 0 0 30px; }
      .rtl .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs .content-tab {
        padding: 0 30px 0 0; } }
  @media (max-width: 1199px) {
    .woocommerce-tabs.description-style-vertical #tab-reviews #reviews .average-rating {
      width: 100%;
      flex: 0 0 100%;
      margin-bottom: 50px; }
      .woocommerce-tabs.description-style-vertical #tab-reviews #reviews .average-rating .star-item .star-bar {
        width: calc(100% - 115px);
        min-width: unset; }
      .woocommerce-tabs.description-style-vertical #tab-reviews #reviews #review_form.have-rating {
        width: 100%;
        flex: 0 0 100%; } }
  @media (max-width: 991px) {
    .woocommerce-tabs.description-style-vertical .content-woocommerce-tabs {
      flex-wrap: wrap; }

    .woocommerce-tabs.description-style-vertical .content-ul-tab {
      flex: 0 0 100%;
      margin-bottom: 50px; }
      .woocommerce-tabs.description-style-vertical .content-ul-tab ul {
        border: 0;
        text-align: center; }
        .woocommerce-tabs.description-style-vertical .content-ul-tab ul li {
          padding: 0;
          margin: 0 20px;
          width: auto;
          padding: 5px 0; }
          .woocommerce-tabs.description-style-vertical .content-ul-tab ul li:before {
            left: 0;
            bottom: -3px;
            top: auto;
            width: 100%;
            height: 3px; }

    .woocommerce-tabs.description-style-vertical .content-tab {
      padding: 0; } }
  @media (max-width: 991px) {
    .woocommerce-tabs.description-style-vertical .content-ul-tab {
      margin-bottom: 50px; }
      .woocommerce-tabs.description-style-vertical .content-ul-tab ul {
        border: 0;
        text-align: center; }
        .woocommerce-tabs.description-style-vertical .content-ul-tab ul li {
          padding: 0;
          margin: 2.5px 0;
          width: 100%;
          padding: 5px 0;
          background: #f5f5f5; }
          .woocommerce-tabs.description-style-vertical .content-ul-tab ul li:before {
            display: none; }
          .woocommerce-tabs.description-style-vertical .content-ul-tab ul li a {
            color: #868686; }
          .woocommerce-tabs.description-style-vertical .content-ul-tab ul li.active a {
            color: #000; } }
  .woocommerce-tabs.description-style-full-content {
    padding: 0 0 60px; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce > h2 {
    font-size: 20px;
    margin: 0 0 30px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce > h2:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D3AD47; }
  .rtl .woocommerce-tabs.description-style-full-content .content-tab-woocommerce > h2:before {
    right: 0;
    left: auto; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce .tab-content {
    margin-bottom: 60px; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce .tab-content:last-child {
    margin-bottom: 0; }
  .woocommerce-tabs.description-style-full-content .content-tab-woocommerce .woocommerce-Reviews-title {
    margin-top: 0; }
  @media (max-width: 991px) {
      .woocommerce-tabs.description-style-full-content .content-tab-woocommerce .tab-content {
        padding-left: 0; }
        .rtl .woocommerce-tabs.description-style-full-content .content-tab-woocommerce .tab-content {
          padding-right: 0;
          padding-left: 0; } }
  @media (max-width: 1510px) and (min-width: 1200px) {
    .woocommerce-tabs.description-style-full-content .content-tab-woocommerce {
      padding-left: 30px;
      padding-right: 30px; } }

#respond {
  line-height: 1.4em; }
  #respond .comments {
    margin-bottom: 15px; }
  #respond .comment-form label {
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    margin-right: 10px; }
  .rtl #respond .comment-form label {
    margin-left: 10px;
    margin-right: 0; }
  #respond .comment-form-rating {
    margin-bottom: 10px; }
  #respond textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #respond p.stars {
    position: relative;
    padding: 5px 0;
    width: 160px;
    position: relative; }
  #respond p.stars a {
    display: inline-block;
    vertical-align: middle;
    text-indent: -9999px;
    line-height: 100%;
    position: relative;
    letter-spacing: 18px; }
  .lt-ie8 #respond p.stars a {
    display: inline;
    zoom: 1; }
  #respond p.stars a:last-child {
    margin-right: 0; }
  .rtl #respond p.stars a:last-child {
    margin-left: 0;
    margin-right: 0; }
  #respond p.stars a.star-1:after, #respond p.stars a.star-2:after, #respond p.stars a.star-3:after, #respond p.stars a.star-4:after, #respond p.stars a.star-5:after {
    top: 0;
    font-family: 'icomoon';
    font-size: 18px;
    font-weight: unset;
    text-indent: 0;
    position: absolute;
    left: 0;
    color: #cecece; }
  .rtl #respond p.stars a.star-1:after, .rtl #respond p.stars a.star-2:after, .rtl #respond p.stars a.star-3:after, .rtl #respond p.stars a.star-4:after, .rtl #respond p.stars a.star-5:after {
    right: 0;
    left: auto; }
  #respond p.stars a.star-1 {
    width: 18px;
    position: absolute;
    left: 0;
    z-index: 5; }
  #respond p.stars a.star-1:after {
    content: "\e90c"; }
  #respond p.stars a.star-1.active {
    z-index: 5; }
  #respond p.stars a.star-2 {
    width: 56px;
    position: absolute;
    left: 0;
    z-index: 4; }
  #respond p.stars a.star-2:after {
    content: "\e90c\e90c"; }
  #respond p.stars a.star-2.active {
    z-index: 5; }
  #respond p.stars a.star-3 {
    width: 90px;
    position: absolute;
    left: 0;
    z-index: 3; }
  #respond p.stars a.star-3:after {
    content: "\e90c\e90c\e90c"; }
  #respond p.stars a.star-3.active {
    z-index: 5; }
  #respond p.stars a.star-4 {
    width: 126px;
    position: absolute;
    left: 0;
    z-index: 2; }
  #respond p.stars a.star-4:after {
    content: "\e90c\e90c\e90c\e90c"; }
  #respond p.stars a.star-4.active {
    z-index: 5; }
  #respond p.stars a.star-5 {
    width: 160px;
    position: absolute;
    left: 0;
    border: 0;
    z-index: 1; }
  #respond p.stars a.star-5:after {
    content: "\e90c\e90c\e90c\e90c\e90c"; }
  #respond p.stars a.star-5.active {
    z-index: 5; }
/*
 Quantity inputs
 *---------------------------------------------------------------------------
 */
.quantity {
  width: auto;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1; }
  .quantity input.qty {
    float: left;
    width: 45px;
    height: 38px;
    text-align: center;
    padding: 0;
    -moz-appearance: textfield; }
  .quantity input.qty:focus:focus {
    border-color: #66afe9;
    outline: 0; }
  .quantity .plus, .quantity .minus {
    background: #fff;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    vertical-align: text-top;
    text-decoration: none;
    overflow: visible;
    text-decoration: none;
    cursor: pointer;
    line-height: 13px;
    font-size: 16px;
    color: #868686;
    border: 1px solid #e0e0e0;
    text-align: center;
    width: 45px;
    height: 38px; }
/*
 Forms
 *---------------------------------------------------------------------------
 */
.form-row:before, .form-row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }
  .form-row:after {
    clear: both; }
  .form-row label.hidden, .form-row .no-sidebar-left .col-lg-2 .product-grid label.onsale, .no-sidebar-left .col-lg-2 .product-grid .form-row label.onsale, .form-row .no-sidebar-right .col-lg-2 .product-grid label.onsale, .no-sidebar-right .col-lg-2 .product-grid .form-row label.onsale, .form-row .no-sidebar-left .col-md-2 .product-grid label.onsale, .no-sidebar-left .col-md-2 .product-grid .form-row label.onsale, .form-row .no-sidebar-right .col-md-2 .product-grid label.onsale, .no-sidebar-right .col-md-2 .product-grid .form-row label.onsale, .form-row .no-sidebar-left .col-lg-2 .product-grid label.button-groups, .no-sidebar-left .col-lg-2 .product-grid .form-row label.button-groups, .form-row .no-sidebar-right .col-lg-2 .product-grid label.button-groups, .no-sidebar-right .col-lg-2 .product-grid .form-row label.button-groups, .form-row .no-sidebar-left .col-md-2 .product-grid label.button-groups, .no-sidebar-left .col-md-2 .product-grid .form-row label.button-groups, .form-row .no-sidebar-right .col-md-2 .product-grid label.button-groups, .no-sidebar-right .col-md-2 .product-grid .form-row label.button-groups, .form-row .no-sidebar-left .col-lg-2 .product-grid label.category, .no-sidebar-left .col-lg-2 .product-grid .form-row label.category, .form-row .no-sidebar-right .col-lg-2 .product-grid label.category, .no-sidebar-right .col-lg-2 .product-grid .form-row label.category, .form-row .no-sidebar-left .col-md-2 .product-grid label.category, .no-sidebar-left .col-md-2 .product-grid .form-row label.category, .form-row .no-sidebar-right .col-md-2 .product-grid label.category, .no-sidebar-right .col-md-2 .product-grid .form-row label.category, .form-row .no-sidebar-left .col-lg-2 .product-grid label.price, .no-sidebar-left .col-lg-2 .product-grid .form-row label.price, .form-row .no-sidebar-right .col-lg-2 .product-grid label.price, .no-sidebar-right .col-lg-2 .product-grid .form-row label.price, .form-row .no-sidebar-left .col-md-2 .product-grid label.price, .no-sidebar-left .col-md-2 .product-grid .form-row label.price, .form-row .no-sidebar-right .col-md-2 .product-grid label.price, .no-sidebar-right .col-md-2 .product-grid .form-row label.price, .form-row .no-sidebar-left .col-lg-2 .product-grid label.rating, .no-sidebar-left .col-lg-2 .product-grid .form-row label.rating, .form-row .no-sidebar-right .col-lg-2 .product-grid label.rating, .no-sidebar-right .col-lg-2 .product-grid .form-row label.rating, .form-row .no-sidebar-left .col-md-2 .product-grid label.rating, .no-sidebar-left .col-md-2 .product-grid .form-row label.rating, .form-row .no-sidebar-right .col-md-2 .product-grid label.rating, .no-sidebar-right .col-md-2 .product-grid .form-row label.rating, .form-row .products .product-list .button-groups label.feedback, .products .product-list .button-groups .form-row label.feedback, .form-row .product-info .cart .button label.fa, .product-info .cart .button .form-row label.fa, .form-row .product-info .cart .button label[class^="icon-"], .product-info .cart .button .form-row label[class^="icon-"], .form-row .product-info .cart .button label[class*=" icon-"], .product-info .cart .button .form-row label[class*=" icon-"] {
    visibility: hidden; }
  .form-row label.inline {
    display: inline; }
  .form-row label {
    display: block; }
  .form-row select {
    cursor: pointer; }
  .form-row .required {
    color: #e42234;
    font-weight: 600;
    border: 0; }
  .form-row .input-text {
    width: 100%; }
  .form-row.form-row-wide {
    clear: both;
    margin: 0;
    margin-bottom: 14px; }

ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative; }
  ul.tabs li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 0;
    margin: 0 -5px;
    padding: 0 1em;
    border: 1px solid #c7c7c7;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
  .lt-ie8 ul.tabs li {
    display: inline;
    zoom: 1; }
  ul.tabs li a {
    display: inline-block;
    vertical-align: middle;
    padding: 0.5em 0;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none; }
  .lt-ie8 ul.tabs li a {
    display: inline;
    zoom: 1; }
  ul.tabs li a:hover {
    text-decoration: none;
    color: #fafafa; }
  ul.tabs li.active {
    background: #e0e0e0;
    z-index: 2;
    border-bottom-color: #e0e0e0; }
  ul.tabs li.active a {
    color: inherit;
    text-shadow: inherit; }
  ul.tabs li.active:before {
    -webkit-box-shadow: 2px 2px 0 #e0e0e0;
    box-shadow: 2px 2px 0 #e0e0e0; }
  ul.tabs li.active:after {
    -webkit-box-shadow: -2px 2px 0 #e0e0e0;
    box-shadow: -2px 2px 0 #e0e0e0; }
  ul.tabs li:before, ul.tabs li:after {
    border: 1px solid #c7c7c7;
    position: absolute;
    bottom: -1px;
    content: "";
    width: 5px;
    height: 5px; }
  ul.tabs li:before {
    border-width: 0 1px 1px 0;
    left: -6px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-box-shadow: 2px 2px 0 #c7c7c7;
    box-shadow: 2px 2px 0 #c7c7c7; }
  .rtl ul.tabs li:before {
    right: -6px;
    left: auto; }
  ul.tabs li:after {
    border-width: 0 0 1px 1px;
    right: -6px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    -webkit-box-shadow: -2px 2px 0 #c7c7c7;
    box-shadow: -2px 2px 0 #c7c7c7; }
  .rtl ul.tabs li:after {
    left: -6px;
    right: auto; }

.product-quantity .input-text .input-sm {
  height: calc(2rem + 2px);
  padding: 6px 6px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0; }
  .product-quantity .input-text select.input-sm {
    height: calc(2rem + 2px);
    line-height: calc(2rem + 2px); }
  .product-quantity .input-text textarea.input-sm {
    height: auto; }

.i-am-new li {
  background-image: none !important;
  background-color: #fff !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important; }
  .i-am-new li .noty_message {
    padding: 20px 0 !important; }
/*
 Sale Label
 *---------------------------------------------------------------------------
 */
.onsale, .hot {
  text-align: center !important;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  text-transform: capitalize;
  font-weight: 500;
  display: block;
  position: relative;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 10px;
  min-width: 40px;
  z-index: 1; }
  .onsale:empty, .hot:empty {
    display: none; }

.onsale {
  left: 10px;
  background: #ff0404; }
  .rtl .onsale {
    right: 10px;
    left: auto; }

.hot {
  right: 10px;
  background: #f90; }
  .rtl .hot {
    left: 10px;
    right: auto; }
/*
 Star rating
 *---------------------------------------------------------------------------
 */
.star-rating {
  overflow: hidden;
  position: relative;
  width: 90px;
  height: 1.2em;
  line-height: 1.2em;
  display: inline-block;
  font-family: icomoon;
  font-size: 12px; }
  .star-rating:before {
    content: "\e90c\e90c\e90c\e90c\e90c";
    color: #868686;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 6px; }
  .rtl .star-rating:before {
    float: right; }
  .rtl .star-rating:before {
    right: 0;
    left: auto; }
  .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em; }
  .rtl .star-rating span {
    float: right; }
  .rtl .star-rating span {
    right: 0;
    left: auto; }
  .star-rating span:before {
    content: "\e90c\e90c\e90c\e90c\e90c";
    top: 0;
    position: absolute;
    left: 0;
    color: #ff9600;
    letter-spacing: 6px; }
  .rtl .star-rating span:before {
    right: 0;
    left: auto; }
/*
 Mini cart
 *---------------------------------------------------------------------------
 */
.vapier-topcart.active.popup .cart-popup.popup {
  -webkit-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
  transform: translateX(0) !important;
  opacity: 1;
  visibility: visible; }
  .vapier-topcart.active .remove-cart-shadow {
    display: block; }
  .vapier-topcart.dark .cart-popup {
    background: #222;
    border: 0; }
  .vapier-topcart.dark .mini-cart .cart-popup .remove-cart a {
    color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .remove-cart a:hover {
    color: #D3AD47 !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .top-total-cart {
    color: #fff;
    border-color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup a.product-name {
    color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup a.product-name:hover {
    color: #D3AD47 !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .quantity, .vapier-topcart.dark .mini-cart .cart-popup .price {
    color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .total-cart {
    color: #fff;
    border-color: #fff; }
  .vapier-topcart.dark .mini-cart .cart-popup .free-order {
    color: #fff; }
  .vapier-topcart.dark .mini-cart .cart-popup .mini_cart_item a.remove {
    color: #fff;
    border-color: #fff; }
  .vapier-topcart.dark .mini-cart .cart-popup .mini_cart_item a.remove:hover {
    border-color: #D3AD47; }
  .vapier-topcart.dark .mini-cart .cart-popup .cart_list li.empty {
    color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .cart_list li.empty:before {
    color: #fff !important; }
  .vapier-topcart.dark .mini-cart .cart-popup .cart_list li.empty .go-shop {
    color: #fff;
    border-color: #fff !important; }

.vapier-topcart.popup .mini-cart {
  position: relative; }
  .vapier-topcart.popup .mini-cart.show .cart-popup {
    -webkit-transform: translateX(0) !important;
    -moz-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    transform: translateX(0) !important;
    opacity: 1;
    visibility: visible; }
  .vapier-topcart.popup .mini-cart.show .remove-cart-shadow {
    display: block; }
  .vapier-topcart.popup .mini-cart .cart-popup {
    position: fixed !important;
    height: 100%;
    top: 0 !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 420px;
    padding: 40px 40px 10px;
    max-width: calc(100% - 20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%) !important;
    -moz-transform: translateX(100%) !important;
    -ms-transform: translateX(100%) !important;
    -o-transform: translateX(100%) !important;
    transform: translateX(100%) !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  @media (max-width: 480px) {
        .vapier-topcart.popup .mini-cart .cart-popup {
          padding: 30px 15px; } }
  .vapier-topcart.popup .mini-cart .cart-popup > * {
    width: 100%; }
  .vapier-topcart.popup .mini-cart .cart-popup .box-cart-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 30px; }
  .vapier-topcart.popup .mini-cart .cart-popup .top-total-cart {
    font-size: 16px;
    display: inline-block;
    border-bottom: 2px solid #000;
    width: auto;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500; }
  .vapier-topcart.popup .mini-cart .cart-popup .quantity {
    color: #000;
    text-transform: uppercase;
    font-weight: 600; }
  .vapier-topcart.popup .mini-cart .cart-popup .price {
    color: #868686;
    font-size: 13px;
    font-weight: 400; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list {
    height: calc(100% - 295px);
    max-height: unset; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty {
    text-align: center;
    position: relative;
    padding-top: 85px;
    font-size: 24px;
    color: #000; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty:before {
    content: "\e914";
    font-family: wpbingofont;
    position: absolute;
    top: 0;
    font-size: 70px;
    line-height: 1;
    left: calc(50% - 35px);
    color: #000; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty span {
    display: block; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty .go-shop {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 28px;
    border-bottom: 2px solid #000;
    margin-top: 15px; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty .go-shop i {
    font-size: 18px;
    margin-left: 5px;
    position: relative;
    top: 3px; }
    .rtl .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty .go-shop i {
      margin-right: 5px;
      margin-left: 0; }
  .vapier-topcart.popup .mini-cart .cart-popup .cart_list li.empty .go-shop:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .vapier-topcart.popup .mini-cart .cart-popup .remove-cart {
    text-align: right;
    margin-top: 0;
    text-transform: capitalize;
    font-size: 12px;
    margin-bottom: 15px; }
  .rtl .vapier-topcart.popup .mini-cart .cart-popup .remove-cart {
    text-align: left; }
  .vapier-topcart.popup .mini-cart .cart-popup .remove-cart a {
    color: #000;
    line-height: 31px;
    text-transform: uppercase;
    font-weight: 500; }
  .vapier-topcart.popup .mini-cart .cart-popup .remove-cart a:hover {
    color: #D3AD47; }
  .vapier-topcart.popup .mini-cart .cart-popup .remove-cart i {
    font-size: 18px;
    position: relative;
    top: 3px; }
  .vapier-topcart.popup .mini-cart .cart-popup .buttons {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between; }
  .vapier-topcart.popup .mini-cart .cart-popup .buttons .button {
    width: calc(50% - 4px);
    margin: 0;
    padding: 15px;
    font-size: 12px; }
  .vapier-topcart.popup .mini-cart .cart-popup .mini_cart_item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(225, 225, 225, 0.5); }
  .vapier-topcart.popup .mini-cart .cart-popup .mini_cart_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .vapier-topcart.dropdown .top-total-cart, .vapier-topcart.dropdown .remove-cart {
    display: none; }
  .vapier-topcart.dropdown .mini-cart {
    position: relative; }
  .vapier-topcart.dropdown .mini-cart.show .cart-popup {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .vapier-topcart.dropdown .mini-cart.show .remove-cart-shadow {
    display: block; }

.mini-cart {
  position: relative; }
  .mini-cart .remove-cart-shadow {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    display: none; }
  .mini-cart .cart-popup {
    text-align: left;
    width: 380px;
    padding: 30px 20px;
    border: 1px solid #f3f3f3;
    background: #fff;
    position: absolute;
    color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(20px) !important;
    -moz-transform: translateY(20px) !important;
    -ms-transform: translateY(20px) !important;
    -o-transform: translateY(20px) !important;
    transform: translateY(20px) !important;
    z-index: 10001;
    left: auto !important;
    right: -12px !important;
    top: 45px !important;
    will-change: unset !important;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.2); }
  .rtl .mini-cart .cart-popup {
    text-align: right; }
  .rtl .mini-cart .cart-popup {
    left: -12px !important;
    right: auto; }
  @media (max-width: 480px) {
    .mini-cart .cart-popup {
      width: 290px; }
      .mini-cart .cart-popup .product-image {
        width: 60px !important; } }
  .mini-cart .cart-popup.active:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(255, 255, 255, 0.5);
    z-index: 10; }
  .mini-cart .cart-popup.active:after {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    content: "\e02d";
    z-index: 10;
    font-family: 'ElegantIcons';
    font-size: 40px;
    line-height: 1;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    color: #D3AD47; }
  .mini-cart .cart-popup.popup {
    position: fixed !important;
    height: 100%;
    top: 0 !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 420px;
    padding: 40px 40px 10px;
    max-width: calc(100% - 20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%) !important;
    -moz-transform: translateX(100%) !important;
    -ms-transform: translateX(100%) !important;
    -o-transform: translateX(100%) !important;
    transform: translateX(100%) !important; }
  @media (max-width: 480px) {
      .mini-cart .cart-popup.popup {
        padding: 30px 15px; } }
  .mini-cart .cart-popup.popup > * {
    width: 100%; }
  .mini-cart .cart-popup.popup .box-cart-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 30px; }
  .mini-cart .cart-popup.popup .top-total-cart {
    font-size: 16px;
    display: inline-block;
    border-bottom: 2px solid #000;
    width: auto;
    margin-bottom: 40px;
    letter-spacing: 1px; }
  .mini-cart .cart-popup.popup .quantity {
    color: #000;
    text-transform: uppercase;
    font-weight: 700; }
  .mini-cart .cart-popup.popup .price {
    color: #868686;
    font-size: 13px;
    font-weight: 400; }
  .mini-cart .cart-popup.popup .cart_list {
    height: calc(100% - 295px);
    max-height: unset; }
  .mini-cart .cart-popup.popup .cart_list li.empty {
    text-align: center;
    position: relative;
    padding-top: 85px;
    font-size: 24px;
    color: #000; }
  .mini-cart .cart-popup.popup .cart_list li.empty:before {
    content: "\e914";
    font-family: wpbingofont;
    position: absolute;
    top: 0;
    font-size: 70px;
    line-height: 1;
    left: calc(50% - 35px);
    color: #000; }
  .mini-cart .cart-popup.popup .cart_list li.empty span {
    display: block; }
  .mini-cart .cart-popup.popup .cart_list li.empty .go-shop {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 28px;
    border-bottom: 2px solid #000;
    margin-top: 15px; }
  .mini-cart .cart-popup.popup .cart_list li.empty .go-shop i {
    font-size: 18px;
    margin-left: 5px;
    position: relative;
    top: 3px; }
  .rtl .mini-cart .cart-popup.popup .cart_list li.empty .go-shop i {
    margin-right: 5px;
    margin-left: 0; }
  .mini-cart .cart-popup.popup .cart_list li.empty .go-shop:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .mini-cart .cart-popup.popup .remove-cart {
    text-align: right;
    margin-top: 0;
    text-transform: capitalize;
    font-size: 12px;
    margin-bottom: 15px; }
  .rtl .mini-cart .cart-popup.popup .remove-cart {
    text-align: left; }
  .mini-cart .cart-popup.popup .remove-cart a {
    color: #000;
    line-height: 31px;
    letter-spacing: 2px; }
  .mini-cart .cart-popup.popup .remove-cart a:hover {
    color: #D3AD47; }
  .mini-cart .cart-popup.popup .remove-cart i {
    font-size: 18px;
    position: relative;
    top: 3px; }
  .mini-cart .cart-popup.popup .buttons {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between; }
  .mini-cart .cart-popup.popup .buttons .button {
    width: calc(50% - 4px);
    margin: 0;
    padding: 15px;
    font-size: 14px; }
  .mini-cart .cart-popup.popup .mini_cart_item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(225, 225, 225, 0.5); }
  .mini-cart .cart-popup.popup .mini_cart_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .mini-cart .cart-popup .cart_list {
    list-style: none;
    margin-top: 10px;
    padding-bottom: 10px;
    max-height: 335px;
    overflow-y: auto;
    /* Track */
    /* Handle */
    /* Handle on hover */ }
  .mini-cart .cart-popup .cart_list::-webkit-scrollbar {
    width: 5px; }
  .mini-cart .cart-popup .cart_list::-webkit-scrollbar-track {
    background: #f1f1f1; }
  .mini-cart .cart-popup .cart_list::-webkit-scrollbar-thumb {
    background: #888; }
  .mini-cart .cart-popup .cart_list::-webkit-scrollbar-thumb:hover {
    background: #555; }
  .mini-cart .cart-popup .cart_list li.empty {
    text-align: center;
    position: relative;
    padding-top: 55px;
    font-size: 18px;
    color: #000; }
  .mini-cart .cart-popup .cart_list li.empty:before {
    content: "\e914";
    font-family: wpbingofont;
    position: absolute;
    top: 0;
    font-size: 50px;
    line-height: 1;
    left: calc(50% - 25px);
    color: #000; }
  .mini-cart .cart-popup .cart_list li.empty span {
    display: block; }
  .mini-cart .cart-popup .cart_list li.empty .go-shop {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 28px;
    border-bottom: 2px solid #000;
    margin-top: 5px; }
  .mini-cart .cart-popup .cart_list li.empty .go-shop i {
    font-size: 18px;
    margin-left: 5px;
    position: relative;
    top: 3px; }
  .rtl .mini-cart .cart-popup .cart_list li.empty .go-shop i {
    margin-right: 5px;
    margin-left: 0; }
  .mini-cart .cart-popup .cart_list li.empty .go-shop:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .mini-cart .cart-popup .total-cart {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 26px;
    position: relative;
    margin-top: 30px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #000;
    padding-top: 15px; }
  .mini-cart .cart-popup .total-cart .total-price {
    font-size: 24px; }
  .mini-cart .cart-popup .mini_cart_item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden; }
  .mini-cart .cart-popup .mini_cart_item:last-child {
    margin-bottom: 0; }
  .mini-cart .cart-popup .mini_cart_item a {
    color: #868686; }
  .mini-cart .cart-popup .mini_cart_item a.remove {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #000;
    text-align: center;
    line-height: 18px;
    color: #000 !important;
    text-indent: -1px; }
  .mini-cart .cart-popup .mini_cart_item a.remove:hover {
    color: #fff !important;
    background: #D3AD47;
    border-color: #D3AD47; }
  .mini-cart .cart-popup .mini_cart_item a:hover {
    color: #D3AD47; }
  .mini-cart .cart-popup .mini_cart_item .woocommerce-product-rating {
    margin-top: 0; }
  .mini-cart .cart-popup .mini_cart_item .woocommerce-product-rating .star-rating {
    margin-bottom: 0; }
  .mini-cart .cart-popup .mini_cart_item .variation {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 3px; }
  .mini-cart .cart-popup .mini_cart_item .variation > * {
    margin-bottom: 0; }
  .mini-cart .cart-popup .mini_cart_item .variation dt.variation-Vendor {
    font-weight: 500; }
  .mini-cart .cart-popup .mini_cart_item .variation > * {
    display: inline-block; }
  .mini-cart .cart-popup .mini_cart_item .variation > * > p {
    margin: 0; }
  .mini-cart .cart-popup .product-image {
    display: inline-block;
    width: 78px;
    float: left;
    margin-right: 12px; }
  .rtl .mini-cart .cart-popup .product-image {
    float: right; }
  .rtl .mini-cart .cart-popup .product-image {
    margin-left: 12px;
    margin-right: 0; }
  .mini-cart .cart-popup .product-image img {
    width: 100%;
    height: auto;
    display: block; }
  .mini-cart .cart-popup a.product-name {
    color: #000 !important;
    padding-right: 20px;
    width: calc(100% - 20px);
    display: block;
    line-height: 1.1;
    margin-bottom: 7px;
    font-weight: 500; }
  .rtl .mini-cart .cart-popup a.product-name {
    padding-left: 20px;
    padding-right: 0; }
  .mini-cart .cart-popup a.product-name:hover {
    color: #D3AD47 !important; }
  .mini-cart .cart-popup .quantity {
    font-weight: 500;
    width: 173px;
    color: #868686;
    margin: 0;
    margin-top: -5px; }
  .mini-cart .cart-popup .quantity input[type="button"] {
    display: none !important; }
  .mini-cart .cart-popup .quantity > span {
    color: #D3AD47;
    font-size: 15px;
    font-weight: 700; }
  .mini-cart .cart-popup .quantity button {
    display: none; }
  .mini-cart .cart-popup .remove {
    position: absolute;
    right: 5px;
    top: 5px; }
  .rtl .mini-cart .cart-popup .remove {
    left: 5px;
    right: auto; }
  .mini-cart .cart-popup .free-order {
    color: #000;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 12px; }
  .mini-cart .cart-popup .free-order span {
    text-decoration: underline;
    font-weight: 700; }
  .mini-cart .cart-popup .total {
    text-transform: uppercase;
    color: #fff; }
  .mini-cart .cart-popup .buttons {
    display: flex;
    margin-bottom: 10px;
    margin-top: 13px;
    width: 100%; }
  .mini-cart .cart-popup .buttons .button {
    width: calc(50% - 4px);
    margin: 5px 0;
    display: block;
    padding: 15px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: #a0a0a0;
    -webkit-transition: unset;
    transition: unset;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    display: inline-block;
    margin: 0 5px;
    border: 0;
    font-weight: 600; }
  .mini-cart .cart-popup .buttons .button:first-child {
    margin-left: 0; }
  .rtl .mini-cart .cart-popup .buttons .button:first-child {
    margin-right: 0;
    margin-left: 0; }
  @media (max-width: 481px) {
        .mini-cart .cart-popup .buttons .button {
          font-size: 11px; } }
  .mini-cart .cart-popup .buttons .button.view-cart {
    background: #000;
    border-color: #000; }
  .mini-cart .cart-popup .buttons .button.view-cart:before {
    background: #025029; }
  .mini-cart .cart-popup .buttons .button:before {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    bottom: 0;
    top: auto; }
/*
 Cart
 *---------------------------------------------------------------------------
 */
.cart_list > div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  margin: 10px 0;
  padding: 10px 0; }
  .cart_list .image {
    width: 70px;
    height: 70px; }
  .cart_list .cart-item {
    line-height: 1.1;
    margin: 0;
    font-size: 1rem !important; }
  .cart_list .cart-item .amount {
    font-size: 1rem !important; }
  .cart_list .cart-main-content {
    text-align: left;
    position: relative; }
  .rtl .cart_list .cart-main-content {
    text-align: right; }
  .cart_list .cart-main-content .remove {
    position: absolute;
    right: 0;
    top: auto;
    font-size: 25px;
    bottom: 10px;
    height: 20px; }
  .rtl .cart_list .cart-main-content .remove {
    left: 0;
    right: auto; }
  .cart_list + .total {
    text-align: right;
    margin-top: 10px; }
  .rtl .cart_list + .total {
    text-align: left; }
  .cart_list + .total .amount {
    font-size: 1rem !important; }
/** Plugins  add to wishlist, compare **/
.woosc_table tbody tr.tr-add_to_cart td a {
  color: #fff;
  display: inline-block;
  line-height: 45px;
  background: #D3AD47;
  padding: 0 30px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .woosc_table tbody tr.tr-add_to_cart td a:hover {
    background: rgba(3, 130, 66, .75); }
  .woosc_table tbody tr td {
    border-left: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 20px !important;
    background: #fff !important; }
  .woosc_table tbody tr td:first-child {
    background: #f5f5f5 !important;
    font-size: 16px;
    color: #000 !important;
    font-weight: 500 !important; }

.woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-items .woosw-item .woosw-content-item--title, .woosw-area .woosw-inner .woosw-content .woosw-content-mid table.woosw-items .woosw-item .woosw-content-item--title a {
  font-weight: 500; }

.woosw-popup .woosw-popup-inner .woosw-popup-content {
  max-width: 670px !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  background: #fff; }
  @media (min-width: 991px) {
  .woosw-popup .woosw-popup-inner .woosw-popup-content {
    min-height: 600px; } }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-item--actions {
    text-align: right; }
  .rtl .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-item--actions {
    text-align: left; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    background: #fff;
    color: #000;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    height: 60px;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner {
    padding: 0 20px; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-notice {
    height: 60px;
    line-height: 60px;
    top: 60px; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-page {
    font-size: 13px;
    line-height: 35px;
    background: #000;
    font-weight: 500;
    padding: 0 25px;
    text-transform: uppercase;
    text-decoration: unset !important; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-page:hover {
    background: #D3AD47;
    color: #fff !important; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-page a {
    display: inline-block;
    line-height: 35px;
    padding: 0 25px;
    background: #000; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue {
    display: inline-block;
    line-height: 31px;
    padding: 0 25px;
    border: 2px solid #000;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000 !important;
    text-decoration: unset !important; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue:after {
    font-family: eleganticons;
    content: "\24";
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 3px;
    line-height: 1; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue:hover {
    background: #D3AD47;
    color: #fff !important;
    border-color: #D3AD47; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
    background: #fff;
    color: #000;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 20px; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top:before {
    font-size: 22px;
    color: #D3AD47;
    line-height: 35px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    content: "\e905";
    font-family: icomoon;
    margin: 0;
    position: relative;
    top: 3px; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close {
    cursor: pointer;
    position: absolute;
    text-align: center;
    z-index: 9999;
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 6px;
    top: 16px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border: 1px solid rgba(134, 134, 134, 0.35);
    right: 20px; }
  .rtl .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close {
    left: 20px;
    right: auto; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 10px;
    top: 50%;
    left: calc(50% - 5px);
    margin-top: -1px;
    background-color: rgba(134, 134, 134, 0.35);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 10px;
    top: 50%;
    left: calc(50% - 5px);
    margin-top: -1px;
    background-color: rgba(134, 134, 134, 0.35);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close:hover:after, .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-items {
    border: 0; }
  @media (max-width: 767px) {
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    height: 80px; }
    .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-page {
      line-height: 30px;
      padding: 0 15px;
      margin: 2.5px 0;
      font-size: 10px;
      width: 100%;
      text-align: center; }

    .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-continue {
      line-height: 26px;
      padding: 0 15px;
      margin: 2.5px 0;
      font-size: 10px;
      width: 100%;
      text-align: center; }

    .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-notice {
      height: 80px;
      line-height: 80px;
      top: 80px; } }

.woosw-items {
  border: 0; }
  .woosw-items .woosw-item--price {
    font-size: 18px;
    color: #000;
    font-weight: 500; }
  .woosw-items .woosw-item--price ins {
    text-decoration: none; }
  .woosw-items .woosw-item--price ins .woocommerce-Price-amount {
    color: #ff4545; }
  .woosw-items .woosw-item--time {
    font-size: 13px; }
  .woosw-items td {
    border: 0;
    background: transparent !important;
    padding: 15px 10px !important; }
  .woosw-items tr {
    border-bottom: 1px solid #e0e0e0; }
  .woosw-items .woosw-item--image img {
    width: 95px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important; }
  .woosw-items .woosw-item--add .add_to_cart_inline {
    margin: 0; }
  .woosw-items .woosw-item--add a {
    color: #fff;
    display: inline-block !important;
    line-height: 28px;
    background: #D3AD47;
    padding: 0 10px !important;
    font-size: 14px !important;
    margin-top: 15px !important; }
  .woosw-items .woosw-item--add a:hover {
    background: #01371c; }
  .woosw-items .woosw-item--add a.added_to_cart {
    display: none !important; }
  .woosw-items .woosw-item--add a.loading {
    color: transparent;
    position: relative; }
  .woosw-items .woosw-item--add a.loading:before {
    position: absolute;
    display: inline-block;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: calc(50% - 13px); }
  @media (max-width: 767px) {
  .woosw-items tr {
    display: flex;
    flex-wrap: wrap; }
  .woosw-items .woosw-item--remove {
    flex: 0 0 30px; }
  .woosw-items .woosw-item--image {
    flex: 0 0 70px; }
  .woosw-items .woosw-item--info {
    flex: 0 0 calc(100% - 100px); }
  .woosw-items .woosw-item--actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 0;
    border-top: 1px dashed #e0e0e0;
    padding: 15px !important; }
    .woosw-items .woosw-item--actions .woosw-item--add a {
      margin: 0 !important; }
  .woosw-items .woosw-item--image img {
    width: 65px !important; } }

.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn {
  background: #D3AD47 !important; }
  .woosc-area .woosc-inner .woosc-bar .woosc-bar-btn:hover {
    background: #025029 !important; }

.woosc_table del {
  font-size: 0; }
  .woosc_table .tr-price .woocommerce-Price-amount {
    font-size: 20px;
    color: #000; }
  .woosc_table .tr-price del {
    font-size: 0; }
  .woosc_table .tr-price del .woocommerce-Price-amount {
    font-size: 16px;
    color: #868686; }
  .woosc_table .tr-price ins {
    text-decoration: none; }
  .woosc_table .tr-price ins .woocommerce-Price-amount {
    color: #ff4545; }
  .woosc_table table tr th {
    background: rgba(0, 0, 0, 0.15) !important; }
  .woosc_table table tr td {
    border: 0 !important;
    padding-left: 15px !important; }
  .woosc_table table tr td p:last-child {
    margin: 0; }

.woosw-list .woosw-actions .woosw-share-label {
  color: #000;
  font-size: 14px; }
  .woosw-list .woosw-actions .woosw-share {
    margin: 5px 0; }
  .woosw-list .woosw-actions .woosw-share a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 25px;
    color: #fff;
    background: #3b5998; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-facebook .woosw-icon:before {
    content: '\e95e'; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-twitter {
    background: #55acee; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-twitter .woosw-icon:before {
    content: '\e9ea'; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-pinterest {
    background: #cb2027; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-pinterest .woosw-icon:before {
    content: '\e9d5'; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-mail {
    background: #dc4e41; }
  .woosw-list .woosw-actions .woosw-share a.woosw-share-mail .woosw-icon:before {
    content: '\e918'; }
  .woosw-list .woosw-actions .woosw-copy {
    position: relative;
    margin: 5px 0;
    flex-wrap: wrap; }
  .woosw-list .woosw-actions .woosw-copy .woosw-copy-label {
    color: #000;
    font-size: 14px; }
  .woosw-list .woosw-actions .woosw-copy .woosw-copy-url input {
    border: 1px solid #e0e0e0;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    min-width: 450px;
    padding: 0 120px 0 20px; }
  .rtl .woosw-list .woosw-actions .woosw-copy .woosw-copy-url input {
    padding: 0 20px 0 120px; }
  @media (max-width: 480px) {
          .woosw-list .woosw-actions .woosw-copy .woosw-copy-url input {
            min-width: auto;
            width: 100%; } }
  .woosw-list .woosw-actions .woosw-copy .woosw-copy-btn {
    position: absolute;
    right: 7px; }
  .rtl .woosw-list .woosw-actions .woosw-copy .woosw-copy-btn {
    left: 7px;
    right: auto; }
  .woosw-list .woosw-actions .woosw-copy .woosw-copy-btn input {
    background: #000;
    color: #fff;
    border: 0;
    line-height: 38px;
    padding: 0 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer; }
  .woosw-list .woosw-actions .woosw-copy .woosw-copy-btn input:hover {
    background: rgba(3, 130, 66, .75); }
  .woosw-list .woosw-items {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px; }
  .woosw-list .woosw-items .woosw-content-item--title {
    font-size: 14px; }
  .woosw-list .woosw-items .woosw-content-item--title a {
    font-weight: 500 !important; }
  .woosw-list .woosw-items .woosw-item--actions {
    border-left: 1px solid #e0e0e0;
    padding-left: 30px !important; }
  .rtl .woosw-list .woosw-items .woosw-item--actions {
    border-right: 1px solid #e0e0e0;
    border-left: 0; }
  .rtl .woosw-list .woosw-items .woosw-item--actions {
    padding-right: 30px !important;
    padding-left: 0; }
  .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a {
    color: #fff;
    display: inline-block !important;
    line-height: 28px;
    background: #D3AD47;
    padding: 0 10px !important;
    font-size: 14px !important;
    margin-top: 15px !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a:hover {
    background: rgba(3, 130, 66, .75); }
  .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a.added_to_cart {
    display: none !important; }
  .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a.loading {
    color: transparent;
    position: relative; }
  .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a.loading:before {
    position: absolute;
    display: inline-block;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: calc(50% - 13px); }
  @media (max-width: 767px) {
  .woosw-list .woosw-items tr {
    display: flex;
    flex-wrap: wrap; }
    .woosw-list .woosw-items .woosw-item--remove {
      flex: 0 0 30px; }

    .woosw-list .woosw-items .woosw-content-item--image {
      flex: 0 0 100px; }

    .woosw-list .woosw-items .woosw-item--info {
      flex: 0 0 calc(100% - 130px); }

    .woosw-list .woosw-items .woosw-item--actions {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      border: 0;
      border-top: 1px dashed #e0e0e0;
      padding: 15px !important; }
      .woosw-list .woosw-items .woosw-item--actions .woosw-content-item--add a {
        margin: 0 !important; }

    .woosw-list .woosw-items .woosw-content-item--image img {
      width: 95px !important; } }

.place-order {
  padding: 20px 0px; }

ul.display, ul#shipping_method, ul.payment_methods {
  padding: 0;
  list-style: none; }
  ul.payment_methods li {
    margin-bottom: 20px; }
  ul.payment_methods li label {
    display: block;
    margin-bottom: 5px; }
  ul.products-list {
    padding: 0;
    list-style: none; }
  ul.page-numbers {
    margin: 0;
    float: left; }
  .rtl ul.page-numbers {
    float: right; }
  ul.page-numbers li > * {
    margin: 0; }

.woocommerce .widget_price_filter {
  overflow: hidden; }
  .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    width: 7px;
    height: 7px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #D3AD47;
    top: -2px; }
  .woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: #D3AD47; }
  .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #d7d7d7;
    margin-top: 15px;
    margin-bottom: 0; }
  .woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 2px; }
  .woocommerce .widget_price_filter #respond input#submit, .woocommerce .widget_price_filter a.button, .woocommerce .widget_price_filter button.button, .woocommerce .widget_price_filter input.button {
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: #D3AD47;
    color: #fff;
    text-transform: uppercase;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    margin-top: 20px;
    float: right; }
  .rtl .woocommerce .widget_price_filter #respond input#submit, .rtl .woocommerce .widget_price_filter a.button, .rtl .woocommerce .widget_price_filter button.button, .rtl .woocommerce .widget_price_filter input.button {
    float: left; }
  .woocommerce .widget_price_filter #respond input#submit:hover, .woocommerce .widget_price_filter a.button:hover, .woocommerce .widget_price_filter button.button:hover, .woocommerce .widget_price_filter input.button:hover {
    background: #025029; }
  .woocommerce .widget_price_filter .price_slider_amount {
    margin-top: 10px; }
  .woocommerce .widget_price_filter .price_slider_amount .price_label {
    text-align: left; }
  .rtl .woocommerce .widget_price_filter .price_slider_amount .price_label {
    text-align: right; }
  .woocommerce .widget_layered_nav .dropdown_layered_nav_size {
    margin-top: 10px;
    padding: 5px 20px; }

.bwp-top-bar {
  font-size: 13px;
  position: relative; }
  @media (max-width: 480px) {
  .bwp-top-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }
    .bwp-top-bar:after {
      display: none; } }
  .bwp-top-bar .display {
    float: right;
    line-height: 1;
    padding-top: 7px; }
  .rtl .bwp-top-bar .display {
    float: left; }
  .bwp-top-bar .display li {
    float: left;
    margin-left: 10px;
    position: relative; }
  .rtl .bwp-top-bar .display li {
    float: right; }
  .rtl .bwp-top-bar .display li {
    margin-right: 10px;
    margin-left: 0; }
  .bwp-top-bar .display li a {
    display: inline-block;
    text-align: center;
    height: 17px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .bwp-top-bar .display li a .icon-column {
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 0;
    display: inline-block; }
  .bwp-top-bar .display li a .icon-column .layer {
    position: absolute;
    left: 0;
    height: 5px; }
  .rtl .bwp-top-bar .display li a .icon-column .layer {
    right: 0;
    left: auto; }
  .bwp-top-bar .display li a .icon-column .layer.first {
    top: 0; }
  .bwp-top-bar .display li a .icon-column .layer.middle {
    top: 6px; }
  .bwp-top-bar .display li a .icon-column .layer.last {
    top: 12px; }
  .bwp-top-bar .display li a .icon-column .layer > span {
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    background: #cecece;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px; }
  .bwp-top-bar .display li a.four {
    width: 23px; }
  .bwp-top-bar .display li a.four .icon-column .layer > span:first-child {
    left: 0; }
    .rtl .bwp-top-bar .display li a.four .icon-column .layer > span:first-child {
      right: 0;
      left: auto; }
    .bwp-top-bar .display li a.four .icon-column .layer > span:nth-child(2) {
      left: 6px; }
    .rtl .bwp-top-bar .display li a.four .icon-column .layer > span:nth-child(2) {
      right: 6px;
      left: auto; }
    .bwp-top-bar .display li a.four .icon-column .layer > span:nth-child(3) {
      left: 12px; }
    .rtl .bwp-top-bar .display li a.four .icon-column .layer > span:nth-child(3) {
      right: 12px;
      left: auto; }
    .bwp-top-bar .display li a.four .icon-column .layer > span:last-child {
      left: 18px; }
    .rtl .bwp-top-bar .display li a.four .icon-column .layer > span:last-child {
      right: 18px;
      left: auto; }
  .bwp-top-bar .display li a.short {
    width: 18px; }
  .bwp-top-bar .display li a.short .icon-column {
    height: 100%; }
  .bwp-top-bar .display li a.short .icon-column > span {
    width: 3px;
    height: 100%;
    display: inline-block;
    background: #cecece;
    position: absolute; }
  .bwp-top-bar .display li a.short .icon-column > span:first-child {
    left: 0; }
    .rtl .bwp-top-bar .display li a.short .icon-column > span:first-child {
      right: 0;
      left: auto; }
  .bwp-top-bar .display li a.short .icon-column > span:nth-child(2) {
    left: 5px; }
    .rtl .bwp-top-bar .display li a.short .icon-column > span:nth-child(2) {
      right: 5px;
      left: auto; }
  .bwp-top-bar .display li a.short .icon-column > span:nth-child(3) {
    left: 10px; }
    .rtl .bwp-top-bar .display li a.short .icon-column > span:nth-child(3) {
      right: 10px;
      left: auto; }
  .bwp-top-bar .display li a.short .icon-column > span:last-child {
    left: 15px; }
    .rtl .bwp-top-bar .display li a.short .icon-column > span:last-child {
      right: 15px;
      left: auto; }
  .bwp-top-bar .display li a.view-list {
    width: 25px; }
  .bwp-top-bar .display li a.view-list .icon-column .layer > span:first-child {
    left: 0; }
    .rtl .bwp-top-bar .display li a.view-list .icon-column .layer > span:first-child {
      right: 0;
      left: auto; }
    .bwp-top-bar .display li a.view-list .icon-column .layer > span:last-child {
      left: 6px;
      width: 17px;
      height: 1px;
      top: 2px; }
    .rtl .bwp-top-bar .display li a.view-list .icon-column .layer > span:last-child {
      right: 6px;
      left: auto; }
  .bwp-top-bar .display li a:hover .icon-column .layer > span, .bwp-top-bar .display li a.active .icon-column .layer > span {
    background: #000; }
  .bwp-top-bar .display li a:hover .icon-column > span, .bwp-top-bar .display li a.active .icon-column > span {
    background: #000; }
  .bwp-top-bar.top {
    margin-bottom: 20px;
    margin-top: -5px; }
  .bwp-top-bar.top .content-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between; }
  .bwp-top-bar.top .content-top .text-title-heading {
    margin: 0;
    font-size: 24px; }
  .bwp-top-bar.top .content-topbar-bottom {
    background: #f3f3f3;
    padding: 10px;
    display: inline-block;
    width: 100%; }
  .bwp-top-bar.top .button-filter-toggle {
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    line-height: 30px;
    float: left;
    background: #fff;
    padding: 0;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center; }
  .rtl .bwp-top-bar.top .button-filter-toggle {
    float: right; }
  .rtl .bwp-top-bar.top .button-filter-toggle {
    margin-left: 10px;
    margin-right: 0; }
  @media (min-width: 991px) {
      .bwp-top-bar.top .button-filter-toggle {
        display: none; } }
  .bwp-top-bar.top .button-filter-toggle:before {
    display: none; }
  .bwp-top-bar.top .button-filter-toggle:after {
    font-size: 16px;
    position: relative;
    content: "\e917";
    font-family: wpbingofont;
    text-transform: none;
    margin: 0;
    line-height: 30px; }
  .bwp-top-bar.top .button-filter-toggle.active {
    background: #000; }
  .bwp-top-bar.top .button-filter-toggle.active:after {
    color: #fff; }
  .bwp-top-bar.top .button-filter-toggle.active:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .bwp-top-bar.top .button-filter-toggle:hover {
    background: #000; }
  .bwp-top-bar.top .button-filter-toggle:hover:after {
    color: #fff; }
  .bwp-top-bar.bottom {
    clear: both;
    margin-top: 30px;
    text-align: center; }
  .bwp-top-bar .vapier-woocommerce-sort-count {
    display: flex;
    height: 30px;
    line-height: 30px;
    text-transform: capitalize;
    font-size: 11px;
    position: relative;
    background: #fff;
    float: left; }
  .rtl .bwp-top-bar .vapier-woocommerce-sort-count {
    float: right; }
  .bwp-top-bar .vapier-woocommerce-sort-count .text-sort-count {
    position: absolute;
    left: 15px; }
  .rtl .bwp-top-bar .vapier-woocommerce-sort-count .text-sort-count {
    right: 15px;
    left: auto; }
  .bwp-top-bar .vapier-woocommerce-sort-count .woocommerce-sort-count.show .pwb-dropdown-toggle:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-toggle {
    padding: 0 10px 0 50px;
    display: inline-flex;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer; }
  .rtl .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-toggle {
    padding: 0 50px 0 10px; }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-toggle:after {
    content: "\33";
    font-family: eleganticons;
    display: inline-block;
    font-size: 16px;
    color: #000;
    border: 0;
    position: unset;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-menu {
    padding: 15px 0;
    will-change: unset !important; }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-menu li {
    padding: 0 15px;
    cursor: pointer; }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-menu li:hover {
    background: #f5f5f5; }
  .bwp-top-bar .vapier-woocommerce-sort-count .pwb-dropdown-menu a {
    color: #868686;
    font-size: 11px; }
  .bwp-top-bar .woocommerce-ordering {
    float: right; }
  .rtl .bwp-top-bar .woocommerce-ordering {
    float: left; }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-toggle {
    position: relative;
    display: inline-block;
    line-height: 30px;
    padding: 0 10px 0 15px;
    background: #fff;
    cursor: pointer;
    font-size: 11px; }
  .rtl .bwp-top-bar .woocommerce-ordering .pwb-dropdown-toggle {
    padding: 0 15px 0 10px; }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-toggle:after {
    content: "\33";
    font-family: eleganticons;
    display: inline-block;
    font-size: 16px;
    color: #000;
    border: 0;
    position: relative;
    top: 3px;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 1;
    vertical-align: unset; }
  .bwp-top-bar .woocommerce-ordering.show .pwb-dropdown-toggle:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu {
    padding: 15px 0;
    will-change: unset !important;
    min-width: 210px; }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu li {
    padding: 0 15px;
    cursor: pointer;
    line-height: 25px; }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu li:hover {
    background: #f5f5f5; }
  .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu a {
    color: #868686;
    font-size: 11px; }
  @media (max-width: 767px) {
      .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu {
        right: 0; }
        .bwp-top-bar .woocommerce-ordering .pwb-dropdown-menu.show {
          transform: translate3d(0px, 30px, 0px) !important; } }

.woocommerce-pagination.shop-loadmore .woocommerce-load-more {
  display: inline-block;
  padding: 0 30px;
  line-height: 40px;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
  font-weight: 500; }
  .woocommerce-pagination.shop-loadmore .woocommerce-load-more:before {
    content: "\f021";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 5px; }
  .rtl .woocommerce-pagination.shop-loadmore .woocommerce-load-more:before {
    margin-left: 5px;
    margin-right: 0; }
  .woocommerce-pagination.shop-loadmore .woocommerce-load-more:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .woocommerce-pagination.shop-loadmore .woocommerce-load-more.active:before {
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround; }
  .woocommerce-pagination.shop-infinity .woocommerce-load-more .loading-infinity .gooey {
    position: absolute;
    top: 0;
    left: calc(50% - 45px);
    width: 90px;
    height: 40px;
    background: #fff;
    filter: contrast(20); }
  .woocommerce-pagination.shop-infinity .woocommerce-load-more .loading-infinity .dot {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 12px;
    left: 15px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    animation: loading-filter 2.8s infinite; }
  .woocommerce-pagination.shop-infinity .woocommerce-load-more .loading-infinity .dots {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: loading-filter2 2.8s infinite; }
  .woocommerce-pagination.shop-infinity .woocommerce-load-more .loading-infinity .dots div {
    display: block;
    float: left;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    filter: blur(4px);
    background: #000;
    border-radius: 50%; }

body.logged-in .woocommerce-tabs #tab-reviews #reviews #respond #commentform .comment-form-comment {
  order: 1; }

.woosw-area .woosw-inner .woosw-content .woosw-content-mid {
  min-height: 120px; }
/*============Preloading Screen==================*/
.loader-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000111;
  opacity: 1;
  transition: all 2s linear 0s; }

.loader-content.loader-off, body.loaded .loader-content {
  opacity: 0;
  visibility: hidden; }
/* The loader container */
#loader {
  position: absolute;
  top: 0;
  width: 0%;
  height: 3px;
  background: #D3AD47;
  transition: width 1s ease;
  animation-name: pre-loader;
  animation-duration: 2s;
  animation-fill-mode: forwards; }
  #loader.pre-loading {
    animation-name: pre-loading;
    animation-duration: 1s;
    animation-fill-mode: forwards; }

.zoom-2 {
  overflow: hidden; }
  .zoom-2 img {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center; }
  .zoom-2:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.filter-grayscale, .widget .widget_sp_image-image-link img, .category-image img {
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s; }
  .filter-grayscale:hover, .widget .widget_sp_image-image-link img:hover, .category-image img:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%); }

.filter-brightness {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s; }
  .filter-brightness:hover {
    filter: brightness(0.4);
    -webkit-filter: brightness(0.4);
    -moz-filter: brightness(0.4);
    -o-filter: brightness(0.4);
    -ms-filter: brightness(0.4); }

.filter-blur {
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s; }
  .filter-blur:hover {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px); }

.tab-pane {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 0;
  overflow: hidden;
  display: none; }
  .tab-pane.active {
    height: auto;
    display: block;
    overflow: visible; }

.close .fa {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }
  .close:hover .fa {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); }

.image-overlay-1:after, .image-overlay-1:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .rtl .image-overlay-1:after, .rtl .image-overlay-1:before {
    right: 0;
    left: auto; }
  .image-overlay-1:after {
    top: -100%; }
  .image-overlay-1:before {
    bottom: -100%; }
  .image-overlay-1:hover:after {
    top: -50%;
    opacity: 1;
    filter: alpha(opacity=100); }
  .image-overlay-1:hover:before {
    bottom: -50%;
    opacity: 1;
    filter: alpha(opacity=100); }

.image-plus-1 {
  position: relative; }
  .image-plus-1::before {
    overflow: hidden;
    position: absolute;
    top: 0;
    content: "";
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(0.5) rotateY(180deg);
    -moz-transform: scale(0.5) rotateY(180deg);
    -ms-transform: scale(0.5) rotateY(180deg);
    -o-transform: scale(0.5) rotateY(180deg);
    transform: scale(0.5) rotateY(180deg);
    background: url("/wp-content/themes/vapier/images/plus.png") no-repeat scroll center center / 60px 60px rgba(0, 0, 0, .6); }
  .rtl .image-plus-1::before {
    right: 0;
    left: auto; }
  .image-plus-1:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1) rotateY(0deg);
    -moz-transform: scale(1) rotateY(0deg);
    -ms-transform: scale(1) rotateY(0deg);
    -o-transform: scale(1) rotateY(0deg);
    transform: scale(1) rotateY(0deg); }

.image-plus-2 {
  position: relative; }
  .image-plus-2::before {
    content: "";
    z-index: 199;
    top: 0;
    position: absolute;
    background: url("/wp-content/themes/vapier/images/plus.png") no-repeat scroll center center / 60px 60px rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-background-size: 10px 10px, 100% 100%;
    -moz-background-size: 10px 10px, 100% 100%;
    -ms-background-size: 10px 10px, 100% 100%;
    -o-background-size: 10px 10px, 100% 100%;
    background-size: 10px 10px, 100% 100%;
    -webkit-background-origin: padding-box, padding-box;
    -moz-background-origin: padding-box, padding-box;
    -ms-background-origin: padding-box, padding-box;
    -o-background-origin: padding-box, padding-box;
    background-origin: padding-box, padding-box; }
  .rtl .image-plus-2::before {
    right: 0;
    left: auto; }
  .image-plus-2:hover::before {
    opacity: 0.6;
    visibility: visible;
    -webkit-background-size: 60px 60px, 100% 100%;
    -moz-background-size: 60px 60px, 100% 100%;
    -ms-background-size: 60px 60px, 100% 100%;
    -o-background-size: 60px 60px, 100% 100%;
    background-size: 60px 60px, 100% 100%; }

.image-plus-3 {
  position: relative; }
  .image-plus-3::before {
    content: "";
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    -webkit-transform: scale(0.5) rotateX(180deg);
    -moz-transform: scale(0.5) rotateX(180deg);
    -ms-transform: scale(0.5) rotateX(180deg);
    -o-transform: scale(0.5) rotateX(180deg);
    transform: scale(0.5) rotateX(180deg);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: rgba(0, 0, 0, .8); }
  .rtl .image-plus-3::before {
    right: 0;
    left: auto; }
  .image-plus-3:hover::before {
    visibility: visible;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -webkit-transform: scale(1) rotateX(0deg);
    -moz-transform: scale(1) rotateX(0deg);
    -ms-transform: scale(1) rotateX(0deg);
    -o-transform: scale(1) rotateX(0deg);
    transform: scale(1) rotateX(0deg); }

.icon-effect-1 {
  position: relative; }
  .icon-effect-1:before {
    content: "";
    display: block;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent; }
  .icon-effect-1:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.2s cubic-bezier(0.19, 1, 0.22, 1); }

.ih-item.square {
  position: relative; }
  .ih-item.square .info {
    backface-visibility: hidden;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    background: #333;
    color: #fff; }
  .ih-item.square .info > * {
    color: #fff; }
  .ih-item.square .info h3 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 10px;
    background: #111;
    margin: 30px 0 0 0;
    font-size: 2rem; }
  .ih-item.square .info p {
    font-style: italic;
    position: relative;
    color: #bbb;
    padding: 20px 20px 20px;
    text-align: center;
    font-size: 1rem; }

.ih-item.square.effect2 {
  overflow: hidden; }
  .ih-item.square.effect2.colored .info {
    background: #333; }
  .ih-item.square.effect2.colored .info h3 {
    background: #111; }
  .ih-item.square.effect2 .img {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  .ih-item.square.effect2 .info {
    background: #333;
    visibility: hidden;
    -webkit-transition: all 0.35s 0.3s ease-in-out;
    transition: all 0.35s 0.3s ease-in-out; }
  .ih-item.square.effect2 .info h3 {
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: all 0.35s 0.6s ease-in-out;
    transition: all 0.35s 0.6s ease-in-out; }
  .ih-item.square.effect2 .info p {
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: all 0.35s 0.5s linear;
    transition: all 0.35s 0.5s linear; }
  .ih-item.square.effect2 a:hover .img {
    -webkit-transform: rotate(720deg) scale(0);
    -moz-transform: rotate(720deg) scale(0);
    -ms-transform: rotate(720deg) scale(0);
    -o-transform: rotate(720deg) scale(0);
    transform: rotate(720deg) scale(0);
    opacity: 0; }
  .ih-item.square.effect2 a:hover .info {
    visibility: visible; }
  .ih-item.square.effect2 a:hover .info h3, .ih-item.square.effect2 a:hover .info p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect3.bottom_to_top {
  overflow: hidden; }
  .ih-item.square.effect3.bottom_to_top .info {
    top: auto;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .ih-item.square.effect3.bottom_to_top .img {
    -webkit-transition: all 0.35s;
    transition: all 0.35s; }
  .ih-item.square.effect3.bottom_to_top a:hover .img {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px); }
  .ih-item.square.effect3.bottom_to_top a:hover .info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect5 .img {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }
  .ih-item.square.effect5 .info {
    background: #111;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect5 a:hover .img {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-delay: 0, 0;
    -moz-transition-delay: 0, 0;
    -ms-transition-delay: 0, 0;
    -o-transition-delay: 0, 0;
    transition-delay: 0, 0; }
  .ih-item.square.effect5 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition-delay: 0.3s, 0.3s;
    -moz-transition-delay: 0.3s, 0.3s;
    -ms-transition-delay: 0.3s, 0.3s;
    -o-transition-delay: 0.3s, 0.3s;
    transition-delay: 0.3s, 0.3s; }

.ih-item.square.effect5.left_to_right .info {
  -webkit-transform: scale(0) rotate(-180deg);
  -moz-transform: scale(0) rotate(-180deg);
  -ms-transform: scale(0) rotate(-180deg);
  -o-transform: scale(0) rotate(-180deg);
  transform: scale(0) rotate(-180deg); }

.ih-item.square.effect6 {
  overflow: hidden; }
  .ih-item.square.effect6 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect6 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect6 .info h3 {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect6 .info p {
    -webkit-transition: all 0.35s 0.1s linear;
    transition: all 0.35s 0.1s linear; }
  .ih-item.square.effect6 a:hover .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  .ih-item.square.effect6 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect6.bottom_to_top .info h3 {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }
  .ih-item.square.effect6.bottom_to_top .info p {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }
  .ih-item.square.effect6.bottom_to_top a:hover .info h3, .ih-item.square.effect6.bottom_to_top a:hover .info p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }

.ih-item.square.effect7 {
  overflow: hidden; }
  .ih-item.square.effect7 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect7 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect7 .info h3 {
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -ms-transform: scale(4);
    -o-transform: scale(4);
    transform: scale(4);
    -webkit-transition: all 0.35s 0.1s ease-in-out;
    transition: all 0.35s 0.1s ease-in-out; }
  .ih-item.square.effect7 .info p {
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    -webkit-transition: all 0.35s 0.3s linear;
    transition: all 0.35s 0.3s linear; }
  .ih-item.square.effect7 a:hover .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  .ih-item.square.effect7 a:hover .info {
    visibility: visible;
    opacity: 1; }
  .ih-item.square.effect7 a:hover .info h3, .ih-item.square.effect7 a:hover .info p {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect8 {
  overflow: hidden; }
  .ih-item.square.effect8 .img {
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect8 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect8 .info h3 {
    -webkit-transition: all 0.35s 0.1s ease-in-out;
    transition: all 0.35s 0.1s ease-in-out; }
  .ih-item.square.effect8 .info p {
    -webkit-transition: all 0.35s 0.15s linear;
    transition: all 0.35s 0.15s linear; }
  .ih-item.square.effect8 a:hover .img {
    opacity: 0; }
  .ih-item.square.effect8 a:hover .info {
    visibility: visible;
    opacity: 1; }
  .ih-item.square.effect8.scale_up .img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect8.scale_up .info {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  .ih-item.square.effect8.scale_up .info h3, .ih-item.square.effect8.scale_up .info p {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  .ih-item.square.effect8.scale_up a:hover .img {
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5); }
  .ih-item.square.effect8.scale_up a:hover .info {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .ih-item.square.effect8.scale_up a:hover .info h3, .ih-item.square.effect8.scale_up a:hover .info p {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect10 {
  overflow: hidden; }
  .ih-item.square.effect10 .img {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect10 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect10 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect10.left_to_right .img {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0); }
  .ih-item.square.effect10.left_to_right .info {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  .ih-item.square.effect10.left_to_right a:hover .img {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  .ih-item.square.effect10.left_to_right a:hover .info {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }

.ih-item.square.effect12 {
  overflow: hidden; }
  .ih-item.square.effect12 .img {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info {
    background: #111;
    background: #333;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info h3 {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 .info p {
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in; }
  .ih-item.square.effect12 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0.2s, 0.2s;
    -moz-transition-delay: 0.2s, 0.2s;
    -ms-transition-delay: 0.2s, 0.2s;
    -o-transition-delay: 0.2s, 0.2s;
    transition-delay: 0.2s, 0.2s; }
  .ih-item.square.effect12 a:hover .info h3 {
    -webkit-transition-delay: 0.3s, 0.3s;
    -moz-transition-delay: 0.3s, 0.3s;
    -ms-transition-delay: 0.3s, 0.3s;
    -o-transition-delay: 0.3s, 0.3s;
    transition-delay: 0.3s, 0.3s; }
  .ih-item.square.effect12 a:hover .info p {
    -webkit-transition-delay: 0.25s, 0.25s;
    -moz-transition-delay: 0.25s, 0.25s;
    -ms-transition-delay: 0.25s, 0.25s;
    -o-transition-delay: 0.25s, 0.25s;
    transition-delay: 0.25s, 0.25s; }

.ih-item.square.effect12.left_to_right .info {
  -webkit-transform: translate(-460px, -100px) rotate(-180deg);
  -moz-transform: translate(-460px, -100px) rotate(-180deg);
  -ms-transform: translate(-460px, -100px) rotate(-180deg);
  -o-transform: translate(-460px, -100px) rotate(-180deg);
  transform: translate(-460px, -100px) rotate(-180deg); }
  .ih-item.square.effect12.left_to_right .info h3 {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px); }
  .ih-item.square.effect12.left_to_right .info p {
    -webkit-transform: translateX(-300px) rotate(-90deg);
    -moz-transform: translateX(-300px) rotate(-90deg);
    -ms-transform: translateX(-300px) rotate(-90deg);
    -o-transform: translateX(-300px) rotate(-90deg);
    transform: translateX(-300px) rotate(-90deg); }
  .ih-item.square.effect12.left_to_right a:hover .info {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  .ih-item.square.effect12.left_to_right a:hover .info h3 {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  .ih-item.square.effect12.left_to_right a:hover .info p {
    -webkit-transform: translateX(0px) rotate(0deg);
    -moz-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    -o-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }

.ih-item.square.effect14 {
  overflow: hidden; }
  .ih-item.square.effect14 .img {
    opacity: 1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; }
  .ih-item.square.effect14 .info {
    background: #111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.35s ease 0.2s;
    transition: all 0.35s ease 0.2s; }
  .ih-item.square.effect14 a:hover .img {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5); }
  .ih-item.square.effect14 a:hover .info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.ih-item.square.effect14.left_to_right .img {
  -webkit-transform: translateX(0) rotate(0);
  -moz-transform: translateX(0) rotate(0);
  -ms-transform: translateX(0) rotate(0);
  -o-transform: translateX(0) rotate(0);
  transform: translateX(0) rotate(0); }
  .ih-item.square.effect14.left_to_right a:hover .img {
    -webkit-transform: translateX(100%) rotate(180deg);
    -moz-transform: translateX(100%) rotate(180deg);
    -ms-transform: translateX(100%) rotate(180deg);
    -o-transform: translateX(100%) rotate(180deg);
    transform: translateX(100%) rotate(180deg); }

.ih-item.square.effect15 {
  overflow: hidden;
  -webkit-perspective: 900px;
  -moz-perspective: 900px;
  perspective: 900px; }
  .ih-item.square.effect15 .img {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .ih-item.square.effect15 .info {
    background: #111;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out 0.3s;
    transition: all 0.35s ease-in-out 0.3s; }
  .ih-item.square.effect15 a:hover .img {
    opacity: 0;
    visibility: hidden; }
  .ih-item.square.effect15 a:hover .info {
    visibility: visible;
    opacity: 1; }

.ih-item.square.effect15.left_to_right .img {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }
  .ih-item.square.effect15.left_to_right .info {
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%; }
  .ih-item.square.effect15.left_to_right a:hover .img {
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg); }
  .ih-item.square.effect15.left_to_right a:hover .info {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0); }
/*============@group Banners hover effect ==================*/
.banners-effect-1 .banners > div img {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .banners-effect-1 .banners > div img:hover {
    opacity: 0.8; }

.banners-effect-2 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-2 .banners > div a:hover:before, .banners-effect-2 .banners > div a:hover:after {
    left: 0;
    opacity: 1; }
  .banners-effect-2 .banners > div a:before, .banners-effect-2 .banners > div a:after {
    background-color: rgba(255, 255, 255, 0.4);
    display: block;
    width: 100%;
    height: 100%;
    left: -100%;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    content: "";
    z-index: 1; }

.banners-effect-3 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-3 .banners > div a:hover:before, .banners-effect-3 .banners > div a:hover:after {
    border: 0 solid rgba(0, 0, 0, 0.7);
    opacity: 0;
    filter: alpha(opacity=0); }
  .banners-effect-3 .banners > div a:before, .banners-effect-3 .banners > div a:after {
    border: 50px solid transparent;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    top: 0;
    content: "";
    opacity: 1;
    filter: alpha(opacity=100);
    width: 100px;
    height: 100px;
    -webkit-transform: scale(7);
    -moz-transform: scale(7);
    -ms-transform: scale(7);
    -o-transform: scale(7);
    transform: scale(7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    visibility: visible;
    z-index: 1; }

.banners-effect-4 .banners > .bwp-image a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-4 .banners > .bwp-image a:hover:before, .banners-effect-4 .banners > .bwp-image a:hover:after {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 4, 1); }
  .banners-effect-4 .banners > .bwp-image a:before, .banners-effect-4 .banners > .bwp-image a:after {
    border-bottom: 50px solid rgba(0, 0, 0, 0.2);
    border-top: 50px solid rgba(0, 0, 0, 0.2);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    transform-origin: 50% 50% 0;
    width: 100%;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -ms-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transition: opacity 0.4s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.4s ease 0s, transform 0.35s ease 0s;
    visibility: visible;
    z-index: 1; }

.banners-effect-5 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-5 .banners > div a:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    border: 70px solid rgba(255, 255, 255, 0);
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out; }
  .banners-effect-5 .banners > div a:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.5;
    border: 30px solid #fff;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out; }
  .banners-effect-5 .banners > div a:hover:before {
    border: 0 solid rgba(255, 255, 255, 0.7); }
  .banners-effect-5 .banners > div a:hover:after {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s; }

.banners-effect-6 .banners > div a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top; }

.banners-effect-6 .banners > div a img {
  backface-visibility: hidden;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
  transition: opacity 1s ease 0s, transform 1s ease 0s; }

.banners-effect-6 .bwp-widget-banner:hover .banners > div a img {
  filter: alpha(opacity=80);
  transform: scale3d(1.1, 1.1, 1); }

.banners-effect-7 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }

.banners-effect-7 .banners > div a:before {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 0;
  top: 0;
  left: 50%;
  content: "";
  transition: all 0.3s ease-in-out 0s; }

.banners-effect-7 .banners > div a:hover:before {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%; }

.banners-effect-8 .banners > div a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #000;
  vertical-align: top; }

.banners-effect-8 .banners > div a:before, .banners-effect-8 .banners > div a:after {
  bottom: 20px;
  content: "";
  left: 20px;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  z-index: 1; }

.banners-effect-8 .banners > div a:before {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1); }

.banners-effect-8 .banners > div a:after {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0); }

.banners-effect-8 .banners > div img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.35s ease 0s;
  -o-transition: opacity 0.35s ease 0s;
  transition: opacity 0.35s ease 0s; }

.banners-effect-8 .banners > div a:hover:before, .banners-effect-8 .banners > div a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.banners-effect-8 .banners > div a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.banners-effect-9 .banners > div a {
  display: block;
  position: relative;
  z-index: 10; }

.banners-effect-9 .banners > div a:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: '';
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.2);
  opacity: 0; }

.banners-effect-9 .banners > div a:hover:before {
  opacity: 1; }

.banners-effect-9 .banners > div a img {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: perspective(1000px) translate3d(0, 0, 0);
  transform: perspective(1000px) translate3d(0, 0, 0); }

.banners-effect-9 .banners > div a:hover img {
  -webkit-transform: perspective(1000px) translate3d(0, 0, 21px);
  transform: perspective(1000px) translate3d(0, 0, 21px); }

.banners-effect-10 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }

.banners-effect-10 .banners > div a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 75%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s; }

.banners-effect-10 .banners > div a:hover:before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.banners-effect-11 .banners > div a {
  display: block;
  position: relative;
  overflow: hidden; }
  .banners-effect-11 .banners > div a:hover:before, .banners-effect-11 .banners > div a:hover:after {
    width: 100%;
    height: 100%; }
  .banners-effect-11 .banners > div a:before, .banners-effect-11 .banners > div a:after {
    background-color: rgba(0, 0, 0, 0.15);
    content: "";
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .banners-effect-11 .banners > div a:after {
    left: auto;
    right: 0;
    bottom: 0; }

.banners-effect-12 .banners > div img {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
  .banners-effect-12 .banners > div img:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%); }

.loading-filter {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 65px; }
  .loading-filter:before {
    background: url("/wp-content/themes/vapier/images/loading-filter.svg") no-repeat center;
    content: "";
    display: inline-block;
    background-size: contain;
    width: 100px;
    height: 65px;
    position: unset; }

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes d {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }

  33% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }

  40% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; } }

@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@keyframes scale2 {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0; } }

@keyframes shakes {
  16.65% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px); }

  33.33% {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -o-transform: translateX(-8px);
    transform: translateX(-8px); }

  49.95% {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px); }

  66.6% {
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    -o-transform: translateX(-4px);
    transform: translateX(-4px); }

  83.25% {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px); }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); } }

@keyframes rotate2 {
  16.65% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg); }

  33.33% {
    -webkit-transform: rotate(-13deg);
    -moz-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    -o-transform: rotate(-13deg);
    transform: rotate(-13deg); }

  49.95% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }

  66.6% {
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg); }

  83.25% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }

  100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); } }

@-webkit-keyframes zoomin {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.05); }

  100% {
    transform: scale(1); } }

@keyframes zoomin {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.05); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@-webkit-keyframes zoomin2 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.15); }

  100% {
    transform: scale(1); } }

@keyframes zoomin2 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.15); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@-webkit-keyframes zoomin3 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.8); }

  100% {
    transform: scale(1); } }

@keyframes zoomin3 {
  0% {
    transform: scale(1); }

  50% {
    transform: scale(1.8); }

  100% {
    transform: scale(1); } }
/*End of Zoom in Keyframes */
@keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes scroll {
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px); }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes sticky-product {
  0% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes sticky-header {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes loading-home {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }

  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }

  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

@keyframes pre-loader {
  0% {
    width: 0; }

  100% {
    width: 40%; } }

@keyframes pre-loading {
  0% {
    width: 40%; }

  100% {
    width: 100%; } }

@keyframes svg-animation {
  0% {
    stroke: #D3AD47;
    stroke-width: 10px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; }

  90% {
    stroke: #D3AD47;
    stroke-width: 10px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0; }

  100% {
    stroke: unset;
    stroke-width: unset;
    fill: unset; } }

.btn, .clear-all {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .btn:hover, .clear-all:hover, .btn:focus, .clear-all:focus {
    text-decoration: none; }
  .btn:focus, .clear-all:focus, .btn.focus, .clear-all.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, .25); }
  .btn.disabled, .clear-all.disabled, .btn:disabled, .clear-all:disabled {
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn:not(:disabled):not(.disabled), .clear-all:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn:not(:disabled):not(.disabled):active, .clear-all:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .clear-all:not(:disabled):not(.disabled).active {
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); }
  .btn:not(:disabled):not(.disabled):active:focus, .clear-all:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus, .clear-all:not(:disabled):not(.disabled).active:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, .25), inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, .25), inset 0 3px 5px rgba(0, 0, 0, .125); }

a.btn.disabled, a.clear-all.disabled, fieldset:disabled a.btn, fieldset:disabled a.clear-all {
  pointer-events: none; }
  .btn-primary {
    color: #fff;
    background-color: #33aebd;
    border-color: #33aebd;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-primary:hover {
    color: #fff;
    background-color: #2b929f;
    border-color: #288995; }
  .btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 174, 189, .5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #33aebd;
    border-color: #33aebd; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #288995;
    border-color: #25808b; }
  .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 174, 189, .5); }
  .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62; }
  .btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5); }
  .btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b; }
  .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5); }
  .btn-success {
    color: #212529;
    background-color: #57bf6d;
    border-color: #57bf6d;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-success:hover {
    color: #fff;
    background-color: #42ae59;
    border-color: #3fa454; }
  .btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 191, 109, .5); }
  .btn-success.disabled, .btn-success:disabled {
    color: #212529;
    background-color: #57bf6d;
    border-color: #57bf6d; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #3fa454;
    border-color: #3b9b4f; }
  .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 191, 109, .5); }
  .btn-info {
    color: #fff;
    background-color: #01a3d4;
    border-color: #01a3d4;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-info:hover {
    color: #fff;
    background-color: #0186ae;
    border-color: #017ca1; }
  .btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 163, 212, .5); }
  .btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #01a3d4;
    border-color: #01a3d4; }
  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #017ca1;
    border-color: #017295; }
  .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 163, 212, .5); }
  .btn-warning {
    color: #212529;
    background-color: #e9c931;
    border-color: #e9c931;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-warning:hover {
    color: #212529;
    background-color: #dcba18;
    border-color: #d1b016; }
  .btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 201, 49, .5); }
  .btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #e9c931;
    border-color: #e9c931; }
  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d1b016;
    border-color: #c5a715; }
  .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 201, 49, .5); }
  .btn-danger {
    color: #fff;
    background-color: #e42234;
    border-color: #e42234;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-danger:hover {
    color: #fff;
    background-color: #c71829;
    border-color: #bc1726; }
  .btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 34, 52, .5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #e42234;
    border-color: #e42234; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bc1726;
    border-color: #b11624; }
  .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 34, 52, .5); }
  .btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5; }
  .btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df; }
  .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5); }
  .btn-dark {
    color: #fff;
    background-color: #121b1f;
    border-color: #121b1f;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); }
  .btn-dark:hover {
    color: #fff;
    background-color: #040607;
    border-color: #000; }
  .btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 27, 31, .5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #121b1f;
    border-color: #121b1f; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 27, 31, .5); }
  .btn-outline-primary {
    color: #33aebd;
    background-color: transparent;
    background-image: none;
    border-color: #33aebd; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #33aebd;
    border-color: #33aebd; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 174, 189, .5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #33aebd;
    background-color: transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #33aebd;
    border-color: #33aebd; }
  .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 174, 189, .5); }
  .btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent; }
  .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d; }
  .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5); }
  .btn-outline-success {
    color: #57bf6d;
    background-color: transparent;
    background-image: none;
    border-color: #57bf6d; }
  .btn-outline-success:hover {
    color: #212529;
    background-color: #57bf6d;
    border-color: #57bf6d; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 191, 109, .5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #57bf6d;
    background-color: transparent; }
  .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
    color: #212529;
    background-color: #57bf6d;
    border-color: #57bf6d; }
  .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 191, 109, .5); }
  .btn-outline-info {
    color: #01a3d4;
    background-color: transparent;
    background-image: none;
    border-color: #01a3d4; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #01a3d4;
    border-color: #01a3d4; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 163, 212, .5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #01a3d4;
    background-color: transparent; }
  .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #01a3d4;
    border-color: #01a3d4; }
  .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 163, 212, .5); }
  .btn-outline-warning {
    color: #e9c931;
    background-color: transparent;
    background-image: none;
    border-color: #e9c931; }
  .btn-outline-warning:hover {
    color: #212529;
    background-color: #e9c931;
    border-color: #e9c931; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 201, 49, .5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #e9c931;
    background-color: transparent; }
  .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #e9c931;
    border-color: #e9c931; }
  .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 201, 49, .5); }
  .btn-outline-danger {
    color: #e42234;
    background-color: transparent;
    background-image: none;
    border-color: #e42234; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #e42234;
    border-color: #e42234; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 34, 52, .5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #e42234;
    background-color: transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #e42234;
    border-color: #e42234; }
  .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 34, 52, .5); }
  .btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa; }
  .btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent; }
  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5); }
  .btn-outline-dark {
    color: #121b1f;
    background-color: transparent;
    background-image: none;
    border-color: #121b1f; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #121b1f;
    border-color: #121b1f; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 27, 31, .5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #121b1f;
    background-color: transparent; }
  .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #121b1f;
    border-color: #121b1f; }
  .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 27, 31, .5); }

.btn-link, .clear-all, .product-info .cart > a.add_to_cart_button, .product-info .cart .add-cart button, .product-info .button-action {
  font-weight: 400;
  color: #000;
  background-color: transparent; }
  .btn-link:hover, .clear-all:hover, .product-info .cart > a.add_to_cart_button:hover, .product-info .cart .add-cart button:hover, .product-info .button-action:hover {
    color: #D3AD47;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent; }
  .btn-link:focus, .clear-all:focus, .product-info .cart > a.add_to_cart_button:focus, .product-info .cart .add-cart button:focus, .product-info .button-action:focus, .btn-link.focus, .clear-all.focus, .product-info .cart > a.add_to_cart_button.focus, .product-info .cart .add-cart button.focus, .product-info .button-action.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none; }
  .btn-link:disabled, .clear-all:disabled, .product-info .cart > a.add_to_cart_button:disabled, .product-info .cart .add-cart button:disabled, .product-info .button-action:disabled, .btn-link.disabled, .clear-all.disabled, .product-info .cart > a.add_to_cart_button.disabled, .product-info .cart .add-cart button.disabled, .product-info .button-action.disabled {
    color: #d7d7d7; }

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.33;
  border-radius: 0.3rem; }

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.btn-block {
  display: block;
  width: 100%; }
  .btn-block + .btn-block {
    margin-top: 0.5rem; }

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%; }
/* ***********************************************************************************************
 PRODUC LISTING
 ************************************************************************************************ */
.content-product-list .products-thumb {
  display: inline-block;
  vertical-align: top; }

.products-list.grid:not(.slick-carousel) {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 767px) {
    .products-list.grid:not(.slick-carousel) {
      justify-content: center; } }
  .products-list.grid:not(.slick-carousel) li.col-xl-6 .products-thumb img, .products-list.grid:not(.slick-carousel) li.col-xl-12 .products-thumb img {
    width: 100%; }
  .products-list.grid.row.slick-carousel {
    margin: 0; }
  .products-list.grid .product-wapper {
    position: relative;
    padding: 0;
    margin: 0 0 25px; }
  .products-list.grid .product-wapper:hover {
    border: none; }
  @media (min-width: 767px) {
        .products-list.grid .product-wapper:hover .products-thumb .product-thumb-hover .hover-image {
          opacity: 1;
          visibility: visible; }
          .products-list.grid .product-wapper:hover .products-thumb .product-thumb-hover .wp-post-image {
            opacity: 0;
            visibility: hidden; } }
  .products-list.grid .product-wapper:hover .products-thumb .product-button {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  .products-list.grid .product-wapper:hover .countdown {
    opacity: 0;
    visibility: hidden; }
  .products-list.grid .product-wapper .countdown {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 10px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  @media (max-width: 767px) {
        .products-list.grid .product-wapper .countdown {
          display: none; } }
  .products-list.grid .product-wapper .countdown .item-countdown {
    text-align: center;
    padding: 10px 0;
    background: #fff;
    border: 2px solid #D3AD47; }
  .products-list.grid .product-wapper .countdown .countdown-content {
    color: #D3AD47;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Audiowide', cursive; }
  .products-list.grid .product-wapper .countdown .countdown-content > *:before {
    content: ":";
    display: inline-block;
    margin: 0 5px; }
  .products-list.grid .product-wapper .countdown .countdown-content > *:first-child:before {
    display: none; }
  .products-list.grid .product-wapper .countdown .countdown-content .countdown-amount {
    display: inline-block;
    color: #D3AD47;
    position: relative; }
  .products-list.grid .product-wapper .countdown .countdown-content .countdown-text {
    display: inline-block; }
  .products-list.grid .product-wapper .products-thumb {
    position: relative;
    margin: 0;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #e6e6e6;
    vertical-align: top; }
  .products-list.grid .product-wapper .products-thumb .product-thumb-hover {
    position: relative;
    display: block; }
  .products-list.grid .product-wapper .products-thumb .product-thumb-hover .wp-post-image {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    height: auto; }
  .products-list.grid .product-wapper .products-thumb .product-thumb-hover .hover-image {
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
    height: auto; }
  .products-list.grid .product-wapper .products-thumb .product-button {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden; }
  .products-list.grid .product-wapper .products-thumb .product-button > * {
    margin: 0 5px;
    position: relative; }
  .products-list.grid .product-wapper .products-thumb .product-button .tooltip {
    top: -3px !important;
    margin: 0; }
  .products-list.grid .product-wapper .products-thumb .product-button .tooltip .tooltip-arrow {
    display: none; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview {
    text-align: center;
    background: #fff;
    font-size: 0;
    display: block;
    white-space: nowrap; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a {
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    outline: unset;
    border: 1px solid #e1e1e1; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a > i {
    font-size: 20px;
    color: #000;
    line-height: 40px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview:hover > a {
    background: #D3AD47;
    border-color: #D3AD47; }
    .products-list.grid .product-wapper .products-thumb .product-button .product-quickview:hover > a > i {
      color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview:hover .loading:before {
    color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview .loading i {
    display: none; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview .loading:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 8px; }
  .products-list.grid .product-wapper .products-thumb .product-button .product-quickview .loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn {
    font-size: 0;
    background: #fff;
    text-align: center;
    position: relative;
    white-space: nowrap;
    margin-top: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #e1e1e1;
    cursor: pointer; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 17px;
    line-height: 40px;
    color: #000;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn.woosw-adding:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 7px;
    left: 0; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn.woosw-adding:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn.woosw-added:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 17px;
    line-height: 40px;
    margin: 0;
    color: #D3AD47;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    position: relative; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosw-btn:hover:before {
    color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosc-btn {
    text-align: center;
    background: #fff;
    font-size: 0;
    display: block;
    white-space: nowrap;
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #e1e1e1;
    cursor: pointer; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosc-btn:before {
    font-size: 17px;
    color: #000;
    line-height: 40px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    content: "\e909";
    font-family: icomoon;
    margin: 0; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosc-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .products-list.grid .product-wapper .products-thumb .product-button .woosc-btn:hover:before {
    color: #fff; }
  @media (max-width: 991px) {
            .products-list.grid .product-wapper .products-thumb .product-button .woosc-btn {
              display: none; } }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external, .products-list.grid .product-wapper .products-thumb .product-button .read_more, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable {
    color: #fff;
    display: inline-block;
    text-align: center;
    background: #fff;
    border: 1px solid #e1e1e1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 0;
    white-space: nowrap;
    flex: 0 0 35px;
    position: relative; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped:before, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external:before, .products-list.grid .product-wapper .products-thumb .product-button .read_more:before, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:before {
    content: "\e906";
    font-family: 'icomoon';
    font-size: 17px;
    color: #000;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    margin: 0;
    display: inline-block; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped.added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button.added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external.added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .read_more.added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart.added_to_cart, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable.added_to_cart {
    display: none; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped.loading, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button.loading, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external.loading, .products-list.grid .product-wapper .products-thumb .product-button .read_more.loading, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart.loading, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable.loading {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped.loading:before, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button.loading:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external.loading:before, .products-list.grid .product-wapper .products-thumb .product-button .read_more.loading:before, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart.loading:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable.loading:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 8px; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped.loading:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button.loading:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external.loading:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .read_more.loading:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart.loading:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable.loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped:hover, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button:hover, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external:hover, .products-list.grid .product-wapper .products-thumb .product-button .read_more:hover, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart:hover, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_grouped:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .add_to_cart_button:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_external:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .read_more:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart:hover:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:hover:before {
    color: #fff; }
  .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart:before, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:before {
    content: "\4e";
    font-family: 'ElegantIcons';
    text-indent: 0px; }
  .products-list.grid .product-wapper .products-thumb .product-button .added_to_cart:after, .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:after {
    display: none; }
  .products-list.grid .product-wapper .products-thumb .product-button .product_type_variable:before {
    content: "\24";
    font-family: 'ElegantIcons';
    font-size: 18px; }
  .products-list.grid .product-wapper .products-thumb .product-button .read_more:before {
    content: "\24";
    font-family: 'ElegantIcons';
    text-indent: 0; }
  .products-list.grid .product-wapper .products-thumb .product-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    line-height: 20px;
    background: #b7b7b7;
    color: #fff;
    padding: 0 7px;
    font-size: 11px;
    font-weight: 500; }
  .rtl .products-list.grid .product-wapper .products-thumb .product-stock {
    left: 10px;
    right: auto; }
  .products-list.grid .product-wapper .products-thumb .product-stock span {
    color: #fff; }
  .products-list.grid .product-wapper .products-content {
    margin-top: 20px; }
  .products-list.grid .product-wapper .products-content .cat-products {
    font-size: 12px;
    margin-bottom: 5px; }
  .products-list.grid .product-wapper .products-content .cat-products a {
    color: #868686; }
  .products-list.grid .product-wapper .products-content .cat-products a:hover {
    color: #D3AD47; }
  .products-list.grid .product-wapper .products-content h3.product-title {
    font-size: 14px;
    margin-top: 0;
    font-weight: 500;
    display: block;
    margin-bottom: 10px; }
  .products-list.grid .product-wapper .products-content h3.product-title a {
    color: #000; }
  .products-list.grid .product-wapper .products-content h3.product-title a:hover {
    color: #D3AD47; }
  .products-list.grid .product-wapper .products-content .brands-single {
    display: flex;
    align-items: baseline;
    margin: 0 0 3px; }
  .products-list.grid .product-wapper .products-content .title-brand {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #868686;
    margin-right: 5px; }
  .rtl .products-list.grid .product-wapper .products-content .title-brand {
    margin-left: 5px;
    margin-right: 0; }
  .products-list.grid .product-wapper .products-content .product-brand {
    list-style: none;
    padding: 0; }
  .products-list.grid .product-wapper .products-content .item-brand {
    padding: 0; }
  .products-list.grid .product-wapper .products-content .item-brand a {
    font-size: 12px;
    color: #D3AD47;
    text-transform: uppercase;
    font-weight: 600; }
  .products-list.grid .product-wapper .products-content .price {
    line-height: 100%;
    display: inline-block;
    margin-bottom: 7px; }
  .products-list.grid .product-wapper .products-content .price del {
    line-height: 100%; }
  .products-list.grid .product-wapper .products-content .rating .review-count {
    display: inline-block;
    position: relative;
    top: -3px;
    font-size: 10px;
    font-weight: 500; }
  @media (max-width: 767px) {
            .products-list.grid .product-wapper .products-content .rating .review-count {
              display: none; } }
  .products-list.grid .product-wapper .products-content .btn-atc {
    margin-top: 10px; }
  .products-list.grid .product-wapper .products-content .btn-atc a {
    display: inline-block;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 35px;
    padding: 0 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    min-width: 135px;
    border: 1px solid #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: center;
    position: relative; }
  .products-list.grid .product-wapper .products-content .btn-atc a:before {
    content: "\e906";
    font-family: 'icomoon';
    font-size: 0;
    color: #fff;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    left: calc(50% - 7px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .products-list.grid .product-wapper .products-content .btn-atc a:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: transparent; }
  .products-list.grid .product-wapper .products-content .btn-atc a:hover:before {
    font-size: 18px; }
  .products-list.grid .product-wapper .products-content .btn-atc a label {
    margin: 0; }
  .products-list.grid .product-wapper .products-content .btn-atc a.loading {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 0; }
  .products-list.grid .product-wapper .products-content .btn-atc a.loading:before {
    position: absolute;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-top-color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 10px; }
  .products-list.grid .product-wapper .products-content .btn-atc a.loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.grid .product-wapper .products-content .btn-atc a.added_to_cart:before, .products-list.grid .product-wapper .products-content .btn-atc a .product_type_variable:before {
    content: "\4e";
    font-family: 'ElegantIcons';
    text-indent: 0px; }
  .products-list.grid .product-wapper .products-content .btn-atc a.added_to_cart:after, .products-list.grid .product-wapper .products-content .btn-atc a .product_type_variable:after {
    display: none; }
  .products-list.grid .product-wapper .products-content .btn-atc a.product_type_variable:before {
    content: "\24";
    font-family: 'ElegantIcons'; }
  .products-list.grid .product-wapper .products-content .btn-atc a.product_type_variable:hover:before {
    font-size: 20px; }
  .products-list.grid .product-wapper .products-content .btn-atc a.read_more:before {
    content: "\24";
    font-family: 'ElegantIcons';
    text-indent: 0; }
  .products-list.grid .product-wapper .products-content .btn-atc a.read_more:hover:before {
    font-size: 20px; }
  .products-list.grid .product-wapper .products-content .btn-atc a.added {
    display: none; }
  @media (max-width: 480px) {
          .products-list.grid .product-wapper .products-content .btn-atc a {
            font-size: 10px;
            padding: 0 5px;
            min-width: 130px; } }
  .products-list.grid .product-wapper .products-content .description {
    font-size: 12px;
    margin: -10px 0 5px; }
  .products-list.grid .product-wapper .products-content .description ul {
    padding: 0;
    list-style: none;
    padding: 0; }
  .products-list.grid .product-wapper .products-content .description ul li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 3px 0; }
  .products-list.grid .product-wapper .products-content .description ul li:before {
    content: "\f04b";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 8px;
    color: #D3AD47;
    margin-right: 7px;
    position: relative;
    top: -1px; }
    .rtl .products-list.grid .product-wapper .products-content .description ul li:before {
      margin-left: 7px;
      margin-right: 0; }
  .products-list.grid .product-wapper.content-product2 {
    text-align: center; }
  .products-list.grid .product-wapper.content-product2 .products-content {
    padding: 0;
    margin: 15px 0 0; }
  .products-list.grid .product-wapper.content-product2 .rating {
    margin: 0 0 7px; }
  .products-list.grid .product-wapper.content-product3 {
    margin: 0;
    position: relative; }
  .products-list.grid .product-wapper.content-product3 .products-content {
    min-height: 90px; }
  @media (max-width: 1199px) {
        .products-list.grid .product-wapper.content-product4 {
          margin: 0 0 15px; } }
  .products-list.grid .product-wapper.content-product4 .products-content {
    margin-top: 0;
    padding: 20px 25px;
    background: #fff; }
  @media (max-width: 991px) {
          .products-list.grid .product-wapper.content-product4 .products-content {
            padding: 15px; } }
  .products-list.grid .product-wapper.content-product4 .products-thumb {
    border: 0; }
  .products-list.grid .product-wapper.content-product4 .price-cart {
    display: flex;
    justify-content: space-between; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped, .products-list.grid .product-wapper.content-product4 .add_to_cart_button, .products-list.grid .product-wapper.content-product4 .product_type_external, .products-list.grid .product-wapper.content-product4 .read_more, .products-list.grid .product-wapper.content-product4 .added_to_cart, .products-list.grid .product-wapper.content-product4 .product_type_variable {
    color: #000;
    font-size: 0;
    position: relative;
    top: -10px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    width: 31px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped:before, .products-list.grid .product-wapper.content-product4 .add_to_cart_button:before, .products-list.grid .product-wapper.content-product4 .product_type_external:before, .products-list.grid .product-wapper.content-product4 .read_more:before, .products-list.grid .product-wapper.content-product4 .added_to_cart:before, .products-list.grid .product-wapper.content-product4 .product_type_variable:before {
    content: "\e906";
    font-family: 'icomoon';
    font-size: 11px;
    color: #989898;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    margin: 0;
    font-weight: 500;
    position: relative;
    top: -1px; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped.added, .products-list.grid .product-wapper.content-product4 .add_to_cart_button.added, .products-list.grid .product-wapper.content-product4 .product_type_external.added, .products-list.grid .product-wapper.content-product4 .read_more.added, .products-list.grid .product-wapper.content-product4 .added_to_cart.added, .products-list.grid .product-wapper.content-product4 .product_type_variable.added {
    display: none; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped.loading, .products-list.grid .product-wapper.content-product4 .add_to_cart_button.loading, .products-list.grid .product-wapper.content-product4 .product_type_external.loading, .products-list.grid .product-wapper.content-product4 .read_more.loading, .products-list.grid .product-wapper.content-product4 .added_to_cart.loading, .products-list.grid .product-wapper.content-product4 .product_type_variable.loading {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped.loading:before, .products-list.grid .product-wapper.content-product4 .add_to_cart_button.loading:before, .products-list.grid .product-wapper.content-product4 .product_type_external.loading:before, .products-list.grid .product-wapper.content-product4 .read_more.loading:before, .products-list.grid .product-wapper.content-product4 .added_to_cart.loading:before, .products-list.grid .product-wapper.content-product4 .product_type_variable.loading:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 6px; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped.loading:hover:before, .products-list.grid .product-wapper.content-product4 .add_to_cart_button.loading:hover:before, .products-list.grid .product-wapper.content-product4 .product_type_external.loading:hover:before, .products-list.grid .product-wapper.content-product4 .read_more.loading:hover:before, .products-list.grid .product-wapper.content-product4 .added_to_cart.loading:hover:before, .products-list.grid .product-wapper.content-product4 .product_type_variable.loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped:hover, .products-list.grid .product-wapper.content-product4 .add_to_cart_button:hover, .products-list.grid .product-wapper.content-product4 .product_type_external:hover, .products-list.grid .product-wapper.content-product4 .read_more:hover, .products-list.grid .product-wapper.content-product4 .added_to_cart:hover, .products-list.grid .product-wapper.content-product4 .product_type_variable:hover {
    color: #D3AD47;
    background: #D3AD47;
    border-color: #D3AD47; }
  .products-list.grid .product-wapper.content-product4 .product_type_grouped:hover:before, .products-list.grid .product-wapper.content-product4 .add_to_cart_button:hover:before, .products-list.grid .product-wapper.content-product4 .product_type_external:hover:before, .products-list.grid .product-wapper.content-product4 .read_more:hover:before, .products-list.grid .product-wapper.content-product4 .added_to_cart:hover:before, .products-list.grid .product-wapper.content-product4 .product_type_variable:hover:before {
    color: #fff; }
  .products-list.grid .product-wapper.content-product4 .product_type_variable:before {
    content: "\24";
    font-family: 'ElegantIcons'; }
  .products-list.grid .product-wapper.content-product4 .read_more:before {
    content: "\24";
    font-family: 'ElegantIcons';
    text-indent: 0; }
  .products-list.grid .product-wapper.content-product5 {
    margin: 0;
    position: relative; }
  .products-list.grid .product-wapper.content-product5:before {
    position: absolute;
    height: 100%;
    width: 1px;
    background: #e1e1e1;
    content: "";
    right: -15px; }
  .rtl .products-list.grid .product-wapper.content-product5:before {
    left: -15px;
    right: auto; }
  .products-list.grid .product-wapper.content-product5 .products-content {
    min-height: 125px;
    padding-left: 15px; }
  .rtl .products-list.grid .product-wapper.content-product5 .products-content {
    padding-right: 15px;
    padding-left: 0; }
  @media (max-width: 480px) {
          .products-list.grid .product-wapper.content-product5 .products-content {
            padding-left: 0; }
            .rtl .products-list.grid .product-wapper.content-product5 .products-content {
              padding-right: 0;
              padding-left: 0; } }
  .products-list.grid .product-wapper.content-product5 .products-thumb {
    border: 0; }
  .products-list.grid .product-wapper.content-product6 {
    text-align: center; }
  .products-list.grid .product-wapper.content-product6 .products-content {
    padding: 0;
    margin: 15px 0 0; }
  .products-list.grid .product-wapper.content-product6 .rating {
    margin: 0 0 7px; }
  .products-list.grid .product-wapper.content-product6 .btn-atc a {
    width: 100%; }
  .products-list.grid .product-wapper.content-product7 {
    text-align: center;
    border: 1px solid #e6e6e6;
    padding: 0 25px 25px; }
  .products-list.grid .product-wapper.content-product7 .products-content {
    padding: 0;
    margin: 15px 0 0; }
  .products-list.grid .product-wapper.content-product7 .products-thumb {
    border: 0; }
  .products-list.grid .product-wapper.content-product7 .rating {
    margin: 0 0 7px; }
  @media (max-width: 1199px) {
        .products-list.grid .product-wapper.content-product7 {
          padding: 15px; } }
  @media (max-width: 480px) {
        .products-list.grid .product-wapper.content-product7 .btn-atc a {
          width: 40px;
          height: 40px;
          line-height: 40px;
          min-width: 0;
          font-size: 0; }
          .products-list.grid .product-wapper.content-product7 .btn-atc a:before {
            font-size: 14px;
            color: #000; } }
  .products-list.grid .product-wapper.content-product9 {
    position: relative;
    border-top: 1px solid #e6e6e6;
    margin: 0;
    padding: 0 20px; }
  .products-list.grid .product-wapper.content-product9 .product-title {
    margin-bottom: 5px !important; }
  .products-list.grid .product-wapper.content-product9 .products-thumb {
    border: 0; }
  .products-list.grid .product-wapper.content-product9 .products-content {
    min-height: 90px; }
  @media (max-width: 1199px) {
        .products-list.grid .product-wapper.content-product9 {
          padding: 15px 15px 0; } }
  .products-list.grid .product-wapper.content-product10 .products-content {
    padding: 0;
    margin: 15px 0 0; }
  .products-list.grid .product-wapper.content-product10 .rating {
    margin: 0 0 7px; }
  .products-list.grid .product-wapper.content-product10 .btn-atc a {
    width: 100%; }
  .products-list.list {
    overflow: hidden; }
  .products-list.list .product-wapper {
    margin-bottom: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .products-list.list .product-wapper:before {
    position: absolute;
    height: 100%;
    width: 1px;
    background: #e0e0e0;
    content: "";
    right: -15px; }
  .rtl .products-list.list .product-wapper:before {
    left: -15px;
    right: auto; }
  .products-list.list .product-wapper:hover .products-thumb .hover-image {
    opacity: 1;
    visibility: visible; }
  .products-list.list .product-wapper:hover .products-thumb .product-thumb-hover:before {
    background: #5d5d5d;
    opacity: 0.2; }
  .products-list.list .product-wapper:hover .products-thumb .product-quickview {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .products-list.list .product-wapper:hover .countdown {
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    visibility: hidden; }
  .products-list.list .product-wapper > .row {
    margin: 0 -6px; }
  .products-list.list .product-wapper > .row > div {
    padding: 0 6px; }
  .products-list.list .product-wapper .countdown {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 10px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  @media (max-width: 767px) {
        .products-list.list .product-wapper .countdown {
          display: none; } }
  .products-list.list .product-wapper .countdown .item-countdown {
    text-align: center;
    padding: 10px 0;
    background: #fff;
    border: 2px solid #D3AD47; }
  .products-list.list .product-wapper .countdown .countdown-content {
    color: #D3AD47;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Audiowide', cursive; }
  .products-list.list .product-wapper .countdown .countdown-content > *:before {
    content: ":";
    display: inline-block;
    margin: 0 5px; }
  .products-list.list .product-wapper .countdown .countdown-content > *:first-child:before {
    display: none; }
  .products-list.list .product-wapper .countdown .countdown-content .countdown-amount {
    display: inline-block;
    color: #D3AD47;
    position: relative; }
  .products-list.list .product-wapper .countdown .countdown-content .countdown-text {
    display: inline-block; }
  .products-list.list .product-wapper .products-thumb {
    position: relative; }
  @media (max-width: 767px) {
        .products-list.list .product-wapper .products-thumb {
          margin-bottom: 20px; } }
  .products-list.list .product-wapper .products-thumb .product-thumb-hover {
    position: relative;
    display: block;
    overflow: hidden; }
  .products-list.list .product-wapper .products-thumb .product-thumb-hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 9; }
  .rtl .products-list.list .product-wapper .products-thumb .product-thumb-hover:before {
    right: 0;
    left: auto; }
  .products-list.list .product-wapper .products-thumb .product-thumb-hover:hover .hover-image {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  .products-list.list .product-wapper .products-thumb .product-thumb-hover:hover .wp-post-image {
    -webkit-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    transform: translate(100%, 0px); }
  .products-list.list .product-wapper .products-thumb .wp-post-image {
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .products-list.list .product-wapper .products-thumb .hover-image {
    top: 0;
    position: absolute;
    overflow: hidden;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .rtl .products-list.list .product-wapper .products-thumb .hover-image {
    right: 0;
    left: auto; }
  .products-list.list .product-wapper .products-thumb .product-quickview {
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 17px);
    width: 34px;
    height: 34px;
    background: #fff;
    text-align: center;
    line-height: 38px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
  .products-list.list .product-wapper .products-thumb .product-quickview a {
    font-size: 0;
    width: 34px;
    height: 34px;
    display: inline-block; }
  .products-list.list .product-wapper .products-thumb .product-quickview a i {
    font-size: 15px;
    color: #000; }
  .products-list.list .product-wapper .products-thumb .product-quickview:hover {
    background: #D3AD47; }
  .products-list.list .product-wapper .products-thumb .product-quickview:hover a i {
    color: #fff; }
  .products-list.list .product-wapper .products-thumb .product-quickview .loading i {
    display: none; }
  .products-list.list .product-wapper .products-thumb .product-quickview .loading:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 2px; }
  .products-list.list .product-wapper .products-thumb .product-quickview .loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.list .product-wapper .products-content {
    position: relative; }
  .products-list.list .product-wapper .products-content .cat-products {
    font-size: 12px;
    margin-bottom: 5px; }
  .products-list.list .product-wapper .products-content .cat-products a {
    color: #868686; }
  .products-list.list .product-wapper .products-content .cat-products a:hover {
    color: #D3AD47; }
  .products-list.list .product-wapper .products-content h3.product-title {
    font-size: 14px;
    margin-top: 0;
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif; }
  .products-list.list .product-wapper .products-content .brands-single {
    display: flex;
    align-items: baseline;
    margin: 0 0 3px; }
  .products-list.list .product-wapper .products-content .title-brand {
    margin: 0;
    font-size: 12px;
    color: #868686;
    margin-right: 5px; }
  .rtl .products-list.list .product-wapper .products-content .title-brand {
    margin-left: 5px;
    margin-right: 0; }
  .products-list.list .product-wapper .products-content .product-brand {
    list-style: none;
    padding: 0; }
  .products-list.list .product-wapper .products-content .item-brand {
    padding: 0; }
  .products-list.list .product-wapper .products-content .item-brand a {
    font-size: 12px;
    color: #D3AD47;
    text-transform: uppercase;
    font-weight: 600; }
  .products-list.list .product-wapper .products-content .price {
    line-height: 100%;
    display: inline-block; }
  .products-list.list .product-wapper .products-content .price del {
    line-height: 100%; }
  .products-list.list .product-wapper .products-content .rating .review-count {
    display: inline-block;
    position: relative;
    top: -3px;
    font-size: 10px; }
  @media (max-width: 767px) {
            .products-list.list .product-wapper .products-content .rating .review-count {
              display: none; } }
  .products-list.list .product-wapper .products-content .description {
    font-size: 12px;
    margin: 5px 0; }
  .products-list.list .product-wapper .products-content .description ul {
    padding: 0;
    list-style: none;
    padding: 0; }
  .products-list.list .product-wapper .products-content .description ul li {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 3px 0; }
  .products-list.list .product-wapper .products-content .description ul li:before {
    content: "\f04b";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 8px;
    color: #D3AD47;
    margin-right: 5px;
    position: relative;
    top: -1px; }
    .rtl .products-list.list .product-wapper .products-content .description ul li:before {
      margin-left: 5px;
      margin-right: 0; }
  .products-list.list .product-wapper .products-content .product-button {
    display: flex;
    margin-top: 10px; }
  .products-list.list .product-wapper .products-content .product-button .woosc-btn {
    position: relative;
    font-size: 0;
    width: 32px;
    height: 32px;
    position: relative;
    border: 1px solid #e0e0e0;
    display: inline-block;
    text-align: center;
    background: transparent; }
  .products-list.list .product-wapper .products-content .product-button .woosc-btn:before {
    content: "\e909";
    font-family: icomoon;
    font-size: 13px;
    line-height: 30px;
    color: #000;
    display: inline-block; }
  .products-list.list .product-wapper .products-content .product-button .woosc-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .products-list.list .product-wapper .products-content .product-button .woosc-btn:hover:before {
    color: #fff; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn {
    font-size: 0;
    background: #fff;
    text-align: center;
    position: relative;
    white-space: nowrap;
    margin-top: 0;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 30px;
    display: inline-block;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    margin-right: 10px; }
  .rtl .products-list.list .product-wapper .products-content .product-button .woosw-btn {
    margin-left: 10px;
    margin-right: 0; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 13px;
    line-height: 30px;
    color: #000;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn.woosw-adding:before {
    position: relative;
    display: inline-block;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 6px;
    left: 1px; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn.woosw-adding:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn.woosw-added:before {
    content: "\e905";
    font-family: icomoon;
    font-size: 13px;
    line-height: 32px;
    margin: 0;
    color: #D3AD47;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    position: relative; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn:hover {
    background: #D3AD47;
    border-color: #D3AD47; }
  .products-list.list .product-wapper .products-content .product-button .woosw-btn:hover:before {
    color: #fff; }
  .products-list.list .product-wapper .products-content .product_type_grouped, .products-list.list .product-wapper .products-content .add_to_cart_button, .products-list.list .product-wapper .products-content .product_type_external, .products-list.list .product-wapper .products-content .read_more, .products-list.list .product-wapper .products-content .added_to_cart, .products-list.list .product-wapper .products-content .product_type_variable {
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 32px;
    position: relative;
    clear: both;
    padding: 0 20px;
    background: #D3AD47;
    margin-right: 10px;
    float: left;
    overflow: hidden;
    line-height: 32px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    flex: 1; }
  .rtl .products-list.list .product-wapper .products-content .product_type_grouped, .rtl .products-list.list .product-wapper .products-content .add_to_cart_button, .rtl .products-list.list .product-wapper .products-content .product_type_external, .rtl .products-list.list .product-wapper .products-content .read_more, .rtl .products-list.list .product-wapper .products-content .added_to_cart, .rtl .products-list.list .product-wapper .products-content .product_type_variable {
    margin-left: 10px;
    margin-right: 0; }
  .rtl .products-list.list .product-wapper .products-content .product_type_grouped, .rtl .products-list.list .product-wapper .products-content .add_to_cart_button, .rtl .products-list.list .product-wapper .products-content .product_type_external, .rtl .products-list.list .product-wapper .products-content .read_more, .rtl .products-list.list .product-wapper .products-content .added_to_cart, .rtl .products-list.list .product-wapper .products-content .product_type_variable {
    float: right; }
  .products-list.list .product-wapper .products-content .product_type_grouped:hover, .products-list.list .product-wapper .products-content .add_to_cart_button:hover, .products-list.list .product-wapper .products-content .product_type_external:hover, .products-list.list .product-wapper .products-content .read_more:hover, .products-list.list .product-wapper .products-content .added_to_cart:hover, .products-list.list .product-wapper .products-content .product_type_variable:hover {
    background: #025029;
    color: #fff; }
  .products-list.list .product-wapper .products-content .product_type_grouped.added, .products-list.list .product-wapper .products-content .add_to_cart_button.added, .products-list.list .product-wapper .products-content .product_type_external.added, .products-list.list .product-wapper .products-content .read_more.added, .products-list.list .product-wapper .products-content .added_to_cart.added, .products-list.list .product-wapper .products-content .product_type_variable.added {
    display: none; }
  .products-list.list .product-wapper .products-content .product_type_grouped.loading, .products-list.list .product-wapper .products-content .add_to_cart_button.loading, .products-list.list .product-wapper .products-content .product_type_external.loading, .products-list.list .product-wapper .products-content .read_more.loading, .products-list.list .product-wapper .products-content .added_to_cart.loading, .products-list.list .product-wapper .products-content .product_type_variable.loading {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: transparent; }
  .products-list.list .product-wapper .products-content .product_type_grouped.loading:before, .products-list.list .product-wapper .products-content .add_to_cart_button.loading:before, .products-list.list .product-wapper .products-content .product_type_external.loading:before, .products-list.list .product-wapper .products-content .read_more.loading:before, .products-list.list .product-wapper .products-content .added_to_cart.loading:before, .products-list.list .product-wapper .products-content .product_type_variable.loading:before {
    position: absolute;
    display: inline-block;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: none;
    -webkit-animation: 2s linear 0s normal none infinite running spinAround;
    -o-animation: 2s linear 0s normal none infinite running spinAround;
    animation: 2s linear 0s normal none infinite running spinAround;
    text-indent: 0;
    top: 0; }
  .products-list.list .product-wapper .products-content .product_type_grouped.loading:hover:before, .products-list.list .product-wapper .products-content .add_to_cart_button.loading:hover:before, .products-list.list .product-wapper .products-content .product_type_external.loading:hover:before, .products-list.list .product-wapper .products-content .read_more.loading:hover:before, .products-list.list .product-wapper .products-content .added_to_cart.loading:hover:before, .products-list.list .product-wapper .products-content .product_type_variable.loading:hover:before {
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff; }
  .products-list.list .product-wapper .products-content .product_type_grouped label, .products-list.list .product-wapper .products-content .add_to_cart_button label, .products-list.list .product-wapper .products-content .product_type_external label, .products-list.list .product-wapper .products-content .read_more label, .products-list.list .product-wapper .products-content .added_to_cart label, .products-list.list .product-wapper .products-content .product_type_variable label {
    margin: 0;
    cursor: pointer; }
  .products-list.list .product-wapper .products-content .added_to_cart:after, .products-list.list .product-wapper .products-content .product_type_variable:after {
    display: none; }

.products_loadmore, .blog_loadmore {
  text-align: center; }
  .products_loadmore .btn.loadmore, .products_loadmore .clear-all.loadmore, .blog_loadmore .btn.loadmore, .blog_loadmore .clear-all.loadmore {
    color: #000;
    overflow: hidden;
    padding: 0 38px;
    border: 1px solid #000;
    height: 32px;
    line-height: 32px;
    background: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-top: 45px; }
  .products_loadmore .btn.loadmore i, .products_loadmore .clear-all.loadmore i, .blog_loadmore .btn.loadmore i, .blog_loadmore .clear-all.loadmore i {
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 6px);
    opacity: 0;
    visibility: hidden; }
  .products_loadmore .btn.loadmore span, .products_loadmore .clear-all.loadmore span, .blog_loadmore .btn.loadmore span, .blog_loadmore .clear-all.loadmore span {
    border: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    animation: none;
    position: unset;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500; }
  .products_loadmore .btn.loadmore.loading:before, .products_loadmore .clear-all.loadmore.loading:before, .blog_loadmore .btn.loadmore.loading:before, .blog_loadmore .clear-all.loadmore.loading:before {
    display: none; }
  .products_loadmore .btn.loadmore.loading i, .products_loadmore .clear-all.loadmore.loading i, .blog_loadmore .btn.loadmore.loading i, .blog_loadmore .clear-all.loadmore.loading i {
    animation: 2s linear 0s normal none infinite running spinAround;
    opacity: 1;
    visibility: visible; }
  .products_loadmore .btn.loadmore.loading span, .products_loadmore .clear-all.loadmore.loading span, .blog_loadmore .btn.loadmore.loading span, .blog_loadmore .clear-all.loadmore.loading span {
    opacity: 0;
    visibility: hidden; }
  .products_loadmore .btn.loadmore:before, .products_loadmore .clear-all.loadmore:before, .blog_loadmore .btn.loadmore:before, .blog_loadmore .clear-all.loadmore:before {
    display: none; }
  .products_loadmore .btn.loadmore:hover, .products_loadmore .clear-all.loadmore:hover, .blog_loadmore .btn.loadmore:hover, .blog_loadmore .clear-all.loadmore:hover {
    background: #000; }

@keyframes spinAround {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }
/* WishList ---------------------------------------------*/
/* Woocommerce page ---------------------------------------------*/
.checkout .form-row {
  margin-bottom: 30px;
  margin-left: 0px;
  margin-right: 0px; }
  .checkout .form-row label {
    color: #000;
    float: left;
    margin-bottom: 10px; }
  .rtl .checkout .form-row label {
    float: right; }
  .checkout .form-row .woocommerce-input-wrapper {
    width: 100%;
    float: left; }
  .rtl .checkout .form-row .woocommerce-input-wrapper {
    float: right; }
  .checkout .form-row .woocommerce-input-wrapper .input-text {
    width: 100%;
    border-width: 0 0 2px;
    border-color: #e0e0e0;
    padding: 0;
    height: 40px;
    line-height: 40px;
    color: #000; }
  .checkout .form-row .woocommerce-input-wrapper textarea {
    height: auto !important; }
  .checkout .form-row .selection .select2-selection--single {
    height: 40px;
    line-height: 40px;
    border-width: 0 0 2px 0;
    border-color: #e0e0e0;
    border-radius: 0; }
  .checkout .form-row .selection .select2-selection--single span {
    line-height: 40px;
    padding: 0;
    height: 40px; }
  .checkout #place_order {
    color: #fff;
    background: #000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 50px;
    line-height: 70px;
    cursor: pointer;
    border: 0;
    width: 100%;
    font-weight: 600; }
  .checkout #place_order:hover {
    background: #D3AD47; }
  .checkout .woocommerce-checkout-payment .place-order {
    padding: 0; }
  .checkout .woocommerce-checkout-payment .payment_methods {
    padding: 20px;
    margin-bottom: 30px;
    list-style: none;
    border: 1px solid #d9d9d9; }
  .checkout .woocommerce-checkout-payment .payment_methods li {
    padding: 17px 0 0;
    margin-bottom: 0; }
  .checkout .woocommerce-checkout-payment .payment_methods li .payment_box {
    padding-bottom: 17px; }
  .checkout .woocommerce-checkout-payment .payment_methods li:first-child {
    padding-top: 0; }
  .checkout .woocommerce-checkout-payment .payment_methods li:last-child {
    border-bottom: 0; }
  .checkout .woocommerce-checkout-payment .payment_methods li > label {
    float: unset;
    margin: 0;
    padding-left: 18px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    color: #000; }
  .rtl .checkout .woocommerce-checkout-payment .payment_methods li > label {
    padding-right: 18px;
    padding-left: 0; }
  .checkout .woocommerce-checkout-payment .payment_methods li > label:before {
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border: 1px solid #868686;
    content: "";
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .rtl .checkout .woocommerce-checkout-payment .payment_methods li > label:before {
    right: 0;
    left: auto; }
  .checkout .woocommerce-checkout-payment .payment_methods li .input-radio:checked + label {
    color: #000; }
  .checkout .woocommerce-checkout-payment .payment_methods li .input-radio:checked + label:before {
    background: #000;
    border-color: #000; }
  .checkout .woocommerce-checkout-payment .payment_methods img {
    height: 1.5625em;
    vertical-align: middle;
    margin: 0 16px; }
  .checkout .woocommerce-checkout-payment .payment_methods .woocommerce-notice {
    padding: 35px 20px 20px !important;
    min-height: auto; }
  .checkout .woocommerce-checkout-payment .payment_methods .about_paypal {
    float: right;
    border-bottom: 1px solid; }
  .checkout .woocommerce-checkout-payment .payment_methods input.input-radio {
    display: none; }
  .checkout .woocommerce-checkout-payment .payment_methods .payment_box {
    line-height: 1.5; }
  .checkout .woocommerce-checkout-payment .payment_methods .payment_box p:last-child {
    margin-bottom: 0; }
  .checkout .woocommerce-shipping-methods .shipping_method {
    display: none; }
  .checkout .woocommerce-shipping-methods label {
    margin: 0;
    margin-left: 5px;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 18px;
    cursor: pointer; }
  .rtl .checkout .woocommerce-shipping-methods label {
    margin-right: 5px;
    margin-left: 0; }
  .rtl .checkout .woocommerce-shipping-methods label {
    padding-right: 18px;
    padding-left: 0; }
  .checkout .woocommerce-shipping-methods label:before {
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border: 1px solid #868686;
    content: "";
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .rtl .checkout .woocommerce-shipping-methods label:before {
    right: 0;
    left: auto; }
  .checkout .woocommerce-shipping-methods .shipping_method:checked + label:before {
    background: #000;
    border-color: #000; }
  .checkout .radio label, .checkout .checkbox label {
    margin-left: 0;
    padding-left: 0; }
  .checkout .radio label .input-checkbox, .checkout .checkbox label .input-checkbox {
    position: static;
    margin: 0; }
  .checkout .woocommerce-form-login .woocommerce-form__label {
    margin-top: 10px;
    width: 100%;
    display: block; }
  .checkout .woocommerce-form-login .woocommerce-form__label span {
    margin-left: 25px; }
  .rtl .checkout .woocommerce-form-login .woocommerce-form__label span {
    margin-right: 25px;
    margin-left: 0; }
  .checkout .woocommerce-form-login .woocommerce-form__label input[type="checkbox"] {
    position: absolute;
    margin-top: 5px; }
  .checkout .woocommerce-form-login .form-row {
    clear: both; }
  .checkout .woocommerce-form-login .form-row.form-row-first, .checkout .woocommerce-form-login .form-row.form-row-last {
    clear: none; }
  .checkout h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif; }
  .checkout ul.payment_methods li {
    width: 100%;
    clear: both; }
  .checkout ul.payment_methods li label {
    padding-left: 10px;
    float: left;
    margin-top: -8px; }
  .rtl .checkout ul.payment_methods li label {
    float: right; }
  .checkout ul.payment_methods li label .input-radio {
    left: 0;
    margin: 6px 0 0 0; }
  .checkout ul.payment_methods li > input {
    float: left; }
  .rtl .checkout ul.payment_methods li > input {
    float: right; }
  .checkout ul.payment_methods li .payment_box {
    width: 100%;
    clear: both; }
  .checkout ul.payment_methods li.payment_method_paypal > label img {
    margin: 0 10px; }
  .checkout .place-order {
    clear: both; }
  .checkout #payment_method_paypal {
    margin-top: 47px; }
  .checkout #payment_method_cheque {
    float: left; }
  .rtl .checkout #payment_method_cheque {
    float: right; }
  .checkout .woocommerce-checkout-review-order .checkout-review-order-table-wrapper {
    padding: 30px 40px;
    border: 1px solid #000; }
  @media (max-width: 480px) {
      .checkout .woocommerce-checkout-review-order .checkout-review-order-table-wrapper {
        padding: 30px 20px; } }
  .checkout .woocommerce-checkout-review-order .title-product-name {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500; }
  .checkout .woocommerce-checkout-review-order .cart_item {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between; }
  .checkout .woocommerce-checkout-review-order .cart_item:last-child {
    margin-bottom: 0; }
  .checkout .woocommerce-checkout-review-order .product-total {
    color: #000; }
  .checkout .woocommerce-checkout-review-order .info-product {
    display: flex; }
  .checkout .woocommerce-checkout-review-order .info-product .product-thumble {
    max-width: 55px; }
  .checkout .woocommerce-checkout-review-order .info-product .product-thumble img {
    border: 1px solid #e8e8e8; }
  .checkout .woocommerce-checkout-review-order .info-product .product-name {
    padding-left: 30px;
    color: #000;
    text-transform: uppercase;
    word-break: break-word;
    font-size: 12px; }
  .rtl .checkout .woocommerce-checkout-review-order .info-product .product-name {
    padding-right: 30px;
    padding-left: 0; }
  .checkout .woocommerce-checkout-review-order .info-product .product-name .product-quantity {
    display: block;
    font-weight: 700; }
  .checkout .woocommerce-checkout-review-order h2 {
    margin: 0;
    font-size: 14px; }
  .checkout .woocommerce-checkout-review-order .cart-subtotal {
    margin-top: 30px; }
  .checkout .woocommerce-checkout-review-order .cart-subtotal, .checkout .woocommerce-checkout-review-order .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dedede;
    padding: 27px 0; }
  .checkout .woocommerce-checkout-review-order .cart-subtotal .subtotal-price, .checkout .woocommerce-checkout-review-order .order-total .subtotal-price {
    color: #000; }
  .checkout .woocommerce-checkout-review-order .woocommerce-shipping-totals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dedede;
    padding: 27px 0; }
  .checkout .woocommerce-checkout-review-order .total-price {
    font-size: 20px;
    color: #000; }
  .checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods {
    text-align: right; }
  .rtl .checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods {
    text-align: left; }
  .checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li {
    margin: 5px 0; }
  .checkout #ship-to-different-address {
    display: block;
    margin: 10px 0px 20px;
    font-size: 14px; }
  @media (max-width: 767px) {
    .checkout #ship-to-different-address {
      margin-left: 0; }
      .rtl .checkout #ship-to-different-address {
        margin-right: 0;
        margin-left: 0; } }
  .checkout #ship-to-different-address label {
    font-weight: 400; }
  .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox {
    cursor: pointer; }
  .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox span {
    position: relative;
    padding-left: 18px; }
  .rtl .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox span {
    padding-right: 18px;
    padding-left: 0; }
  .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox span:before {
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border: 1px solid #868686;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    content: ""; }
  .rtl .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox span:before {
    right: 0;
    left: auto; }
  .checkout #ship-to-different-address label.woocommerce-form__label-for-checkbox .woocommerce-form__input:checked + span:before {
    background: #D3AD47;
    border-color: #D3AD47; }
  .checkout #ship-to-different-address #ship-to-different-address-checkbox {
    display: none; }
  .checkout .create-account .woocommerce-form__label span {
    margin-left: 10px; }
  .rtl .checkout .create-account .woocommerce-form__label span {
    margin-right: 10px;
    margin-left: 0; }
  .checkout .create-account .woocommerce-form__label input[type="checkbox"] {
    margin-left: 0;
    margin-top: 5px; }
  .rtl .checkout .create-account .woocommerce-form__label input[type="checkbox"] {
    margin-right: 0;
    margin-left: 0; }
  .checkout .woocommerce-checkout {
    clear: both; }
  .checkout .checkout_coupon > .form-row {
    margin-bottom: 30px; }
  .checkout .checkout_coupon input[name="apply_coupon"] {
    padding: 9px 10px; }

.woocommerce-order-received, .woocommerce-view-order {
  font-size: 14px; }
  .woocommerce-order-received .woocommerce .woocommerce-thankyou-order-received, .woocommerce-view-order .woocommerce .woocommerce-thankyou-order-received {
    background: transparent;
    border: 2px dashed #D3AD47;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.4;
    padding: 15px 25px;
    color: #D3AD47; }
  .woocommerce-order-received .woocommerce-thankyou-order-details, .woocommerce-view-order .woocommerce-thankyou-order-details {
    list-style-type: none;
    padding: 0;
    margin-bottom: 50px; }
  @media (min-width: 991px) {
    .woocommerce-order-received .woocommerce-thankyou-order-details, .woocommerce-view-order .woocommerce-thankyou-order-details {
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .woocommerce-order-received .woocommerce-thankyou-order-details li, .woocommerce-view-order .woocommerce-thankyou-order-details li {
        border-right: 1px solid #e0e0e0;
        border-bottom: none !important;
        padding-bottom: 0px !important; }
        .rtl .woocommerce-order-received .woocommerce-thankyou-order-details li, .rtl .woocommerce-view-order .woocommerce-thankyou-order-details li {
          border-left: 1px solid #e0e0e0;
          border-right: 0; }
        .woocommerce-order-received .woocommerce-thankyou-order-details li:last-child, .woocommerce-view-order .woocommerce-thankyou-order-details li:last-child {
          border-right: none; }
          .rtl .woocommerce-order-received .woocommerce-thankyou-order-details li:last-child, .rtl .woocommerce-view-order .woocommerce-thankyou-order-details li:last-child {
            border-left: none;
            border-right: 0; } }
  .woocommerce-order-received .woocommerce-thankyou-order-details li, .woocommerce-view-order .woocommerce-thankyou-order-details li {
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px; }
  .woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__title, .woocommerce-view-order .woocommerce-order-details .woocommerce-order-details__title {
    font-size: 20px; }
  .woocommerce-order-received .woocommerce-order-details .dokan-info, .woocommerce-view-order .woocommerce-order-details .dokan-info {
    background: #D3AD47;
    color: #fff;
    border-top-color: #000; }
  .woocommerce-order-received .woocommerce-order-details .dokan-info:before, .woocommerce-view-order .woocommerce-order-details .dokan-info:before {
    background: #000; }
  .woocommerce-order-received .woocommerce-order-details header > h2, .woocommerce-view-order .woocommerce-order-details header > h2 {
    font-size: 20px; }
  @media (max-width: 730px) {
    .woocommerce-order-received .woocommerce-order-details .shop_table.my_account_orders, .woocommerce-view-order .woocommerce-order-details .shop_table.my_account_orders {
      display: block;
      overflow: auto; }
      .woocommerce-order-received .woocommerce-order-details .shop_table.my_account_orders th, .woocommerce-view-order .woocommerce-order-details .shop_table.my_account_orders th, .woocommerce-order-received .woocommerce-order-details .shop_table.my_account_orders td, .woocommerce-view-order .woocommerce-order-details .shop_table.my_account_orders td {
        padding: 15px;
        min-width: 150px; } }
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column.col-1, .woocommerce-view-order .woocommerce-customer-details .woocommerce-column.col-1 {
    margin-top: 40px; }
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns, .woocommerce-view-order .woocommerce-customer-details .woocommerce-columns {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns .woocommerce-column, .woocommerce-view-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    margin-top: 40px;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px; }
  @media (max-width: 767px) {
      .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns, .woocommerce-view-order .woocommerce-customer-details .woocommerce-columns {
        margin: 0; }
        .woocommerce-order-received .woocommerce-customer-details .woocommerce-columns .woocommerce-column, .woocommerce-view-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 0; } }
  .woocommerce-order-received .woocommerce-customer-details address, .woocommerce-view-order .woocommerce-customer-details address {
    padding: 25px 30px 30px 30px;
    border: 2px dashed #e0e0e0; }
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title, .woocommerce-view-order .woocommerce-customer-details .woocommerce-column__title {
    font-size: 20px; }
/* Category */
.term-description {
  margin-bottom: 30px; }
/* Product Detail ---------------------------------------------*/
.main-single-product {
  margin-top: 50px; }
  .main-single-product > .col-xl-12 {
    padding: 0; }
  .main-single-product .sticky-product {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #fff;
    z-index: 9;
    padding: 15px 0;
    -webkit-box-shadow: 3px 3px 57px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 3px 3px 57px 0px rgba(0, 0, 0, 0.05);
    -webkit-animation-name: sticky-product;
    animation-name: sticky-product;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    display: none;
    left: 0; }
  @media (max-width: 991px) {
    .main-single-product .sticky-product {
      display: none !important; } }
  .main-single-product .sticky-product.sticky {
    display: block; }
  .main-single-product .sticky-product .stock {
    display: none; }
  .main-single-product .sticky-product .content {
    max-width: 1440px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .main-single-product .sticky-product .content-product {
    display: flex;
    align-items: center; }
  .main-single-product .sticky-product .item-title {
    font-size: 14px;
    margin-top: -5px; }
  .main-single-product .sticky-product .price {
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500; }
  .main-single-product .sticky-product .price del {
    font-size: 12px; }
  .main-single-product .sticky-product .content-bottom {
    padding-left: 15px; }
  .rtl .main-single-product .sticky-product .content-bottom {
    padding-right: 15px;
    padding-left: 0; }
  .main-single-product .sticky-product .item-thumb img {
    max-width: 66px; }
  .main-single-product .sticky-product .select-cart-option {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 36px;
    cursor: pointer;
    color: #000;
    border: 1px solid #000;
    padding: 0 20px; }
  .main-single-product .sticky-product .select-cart-option:after {
    font-family: eleganticons;
    content: "\24";
    display: inline-block;
    font-size: 18px;
    position: relative;
    line-height: 1;
    top: 4px;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .main-single-product .sticky-product .select-cart-option:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .main-single-product .sticky-product .select-cart-option:hover:after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 2px; }
  .main-single-product .sticky-product .quantity {
    margin: 0;
    height: 48px;
    display: inline-block;
    margin: 20px 25px 0 0;
    position: relative; }
  .rtl .main-single-product .sticky-product .quantity {
    margin: 20px 0 0 25px; }
  .main-single-product .sticky-product .quantity input[type=number]::-webkit-inner-spin-button, .main-single-product .sticky-product .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .main-single-product .sticky-product .quantity input {
    width: 75px;
    border: 0;
    border-bottom: 2px solid #cbcbcb;
    height: auto;
    text-align: center;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 500; }
  .main-single-product .sticky-product .quantity button {
    display: none; }
  .main-single-product .sticky-product .button.quick-buy {
    display: inline-block;
    -webkit-transition: none;
    transition: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 45px;
    position: relative;
    background: #D3AD47;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    padding: 0 15px;
    border: 0;
    cursor: pointer;
    display: inline-block;
    vertical-align: top; }
  .rtl .main-single-product .sticky-product .button.quick-buy {
    margin-left: 20px;
    margin-right: 0; }
  @include border-radius(25px)
			margin:5px 0 ;
			min-width:214px;
			white-space: nowrap;
			@include rtl-margin-left(10px);
			&:hover {
    background: #025029;
    color: #fff; }
  .main-single-product .sticky-product .button.quick-buy.disabled {
    background: rgba(3, 130, 66, 0.5);
    cursor: not-allowed; }
  @media (max-width: 1199px) {
      .main-single-product .sticky-product .button.quick-buy {
        line-height: 35px;
        min-width: 150px; } }
  .main-single-product .sticky-product .single_add_to_cart_button.button {
    -webkit-transition: none;
    transition: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    line-height: 42px;
    position: relative;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-align: center;
    padding: 0 60px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    flex: 1;
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px; }
  @media (max-width: 767px) {
      .main-single-product .sticky-product .single_add_to_cart_button.button {
        margin-right: 0;
        padding: 0 15px; }
        .rtl .main-single-product .sticky-product .single_add_to_cart_button.button {
          margin-left: 0;
          margin-right: 0; } }
  @media (max-width: 480px) {
      .main-single-product .sticky-product .single_add_to_cart_button.button {
        font-size: 12px; } }
  .main-single-product .sticky-product .single_add_to_cart_button.button.disabled {
    opacity: 0.5;
    cursor: not-allowed; }
  .main-single-product .sticky-product .single_add_to_cart_button.button:before {
    content: "\e013";
    font-family: ElegantIcons;
    font-size: 17px;
    display: none; }
  .main-single-product .sticky-product .single_add_to_cart_button.button:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  @media (max-width: 1199px) {
      .main-single-product .sticky-product .single_add_to_cart_button.button {
        padding: 0 30px;
        line-height: 31px; } }
  .main-single-product .sticky-product .quantity-button {
    display: flex;
    align-items: center; }
  .main-single-product .sticky-product .variations_form {
    display: flex;
    align-items: center; }
  .main-single-product .sticky-product .variations_form .variations_button {
    display: flex;
    align-items: center; }
  .main-single-product .sticky-product .variations_form .single_variation_wrap {
    display: flex;
    flex: 1;
    align-items: center; }
  .main-single-product .sticky-product .variations_form .single_variation_wrap .woocommerce-variation {
    margin: 0 40px 0 0; }
  .rtl .main-single-product .sticky-product .variations_form .single_variation_wrap .woocommerce-variation {
    margin: 0 0 0 40px; }
  .main-single-product .sticky-product .variations_form table {
    border: none;
    position: relative;
    margin: 0;
    width: 100%; }
  .main-single-product .sticky-product .variations_form table tbody {
    display: flex;
    align-items: center; }
  .main-single-product .sticky-product .variations_form table tr {
    margin: 0;
    display: flex;
    flex-wrap: wrap; }
  .main-single-product .sticky-product .variations_form table tr td {
    border: none;
    padding: 0;
    margin-bottom: 20px !important;
    margin: 0 12px;
    text-align: left; }
  .rtl .main-single-product .sticky-product .variations_form table tr td {
    text-align: right; }
  .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches {
    padding: 0; }
  .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch {
    width: auto;
    height: auto;
    line-height: 20px;
    padding: 7px;
    min-width: 36px;
    display: inline-block;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background: transparent;
    border: 1px solid #ccc;
    color: #000;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
    .rtl .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch {
      margin-left: 10px;
      margin-right: 0; }
    .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch:hover, .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.selected {
      border: 1px solid #000; }
    .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.disabled {
      cursor: not-allowed; }
    .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.swatch-image {
      display: inline-flex;
      align-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid #d2d2d2;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      position: relative;
      margin: 0 10px 0 0;
      background-position: center;
      background-repeat: no-repeat;
      padding: 0;
      font-size: 0; }
    .rtl .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.swatch-image {
      margin: 0 0 0 10px; }
    .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.swatch-image .swatch__tooltip {
      display: block; }
    .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch.swatch-image.selected {
      border-color: #D3AD47; }
    @media (max-width: 480px) {
              .main-single-product .sticky-product .variations_form table tr td.value .tawcvs-swatches .swatch {
                padding: 6.5px 10px;
                min-width: 35px; } }
  .main-single-product .sticky-product .variations_form table tr td.label {
    display: none; }
  .main-single-product .sticky-product .variations_form table tr td.value {
    margin-bottom: 0 !important;
    display: block;
    width: 100%; }
  .main-single-product .sticky-product .variations_form table tr td label {
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
    margin-right: 15px;
    line-height: 40px;
    letter-spacing: 1.5px; }
  .rtl .main-single-product .sticky-product .variations_form table tr td label {
    margin-left: 15px;
    margin-right: 0; }
  .main-single-product .sticky-product .variations_form table tr td .swatch__tooltip {
    display: none;
    font-size: 10px;
    line-height: 18px;
    padding: 0 5px;
    top: 5px; }
  .main-single-product .sticky-product .variations_form table tr td .swatch__tooltip:after {
    z-index: -1;
    bottom: -2px; }
  .main-single-product .sticky-product .variations_form table tr td > div .swatch-color {
    opacity: 1;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    text-indent: 100%;
    margin-right: 15px !important;
    font-size: 0 !important;
    padding: 0 !important;
    min-width: unset !important;
    border: 0 !important; }
    .rtl .main-single-product .sticky-product .variations_form table tr td > div .swatch-color {
      margin-left: 15px !important;
      margin-right: 0; }
    .main-single-product .sticky-product .variations_form table tr td > div .swatch-color:last-child {
      margin-right: 0 !important; }
    .rtl .main-single-product .sticky-product .variations_form table tr td > div .swatch-color:last-child {
      margin-left: 0 !important;
      margin-right: 0; }
    .main-single-product .sticky-product .variations_form table tr td > div .swatch-color:before {
      content: "";
      position: absolute;
      top: calc(50% - 12px);
      left: calc(50% - 12px);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border: 1px solid #ccc;
      -webkit-transform: unset;
      -moz-transform: unset;
      -ms-transform: unset;
      -o-transform: unset;
      transform: unset;
      margin: 0;
      opacity: 0;
      visibility: hidden; }
    .main-single-product .sticky-product .variations_form table tr td > div .swatch-color .swatch__tooltip {
      font-size: 10px;
      display: inline-block;
      font-family: 'Montserrat', sans-serif; }
    .main-single-product .sticky-product .variations_form table tr td > div .swatch-color.selected, .main-single-product .sticky-product .variations_form table tr td > div .swatch-color:hover {
      border: 0 !important; }
    .main-single-product .sticky-product .variations_form table tr td > div .swatch-color.selected:before, .main-single-product .sticky-product .variations_form table tr td > div .swatch-color:hover:before {
      opacity: 1;
      visibility: visible; }
    @media (max-width: 480px) {
              .main-single-product .sticky-product .variations_form table tr td > div .swatch-color {
                margin-right: 15px !important; }
                .rtl .main-single-product .sticky-product .variations_form table tr td > div .swatch-color {
                  margin-left: 15px !important;
                  margin-right: 0; }
                .main-single-product .sticky-product .variations_form table tr td > div .swatch-color .swatch__tooltip {
                  display: none !important; } }
  .main-single-product .sticky-product .variations_form table tr td select {
    padding: 0 40px 0 10px;
    height: 40px;
    line-height: 40px;
    color: #868686;
    background-position: calc(100% - 18px) calc(1em + 3px), calc(100% - 13px) calc(1em + 3px), calc(100% - 2.5em) 0.5em;
    cursor: pointer;
    border-color: #ccc;
    margin-bottom: 15px; }
  .rtl .main-single-product .sticky-product .variations_form table tr td select {
    padding: 0 10px 0 40px; }
  .main-single-product .sticky-product .variations_form table tr td select:focus {
    background-position: calc(100% - 14px) calc(1em + 3px), calc(100% - 20px) calc(1em + 3px), calc(100% - 2.5em) 0.5em; }
  .main-single-product .sticky-product .variations_form table .reset_variations {
    display: none !important; }
  .main-single-product .sticky-product .group_table {
    display: flex; }
  .main-single-product .sticky-product .group_table > div {
    margin-right: 20px;
    text-align: center; }
  .rtl .main-single-product .sticky-product .group_table > div {
    margin-left: 20px;
    margin-right: 0; }
  .main-single-product .sticky-product .group_table .quantity {
    margin: 0 0 -15px; }
  .main-single-product .sticky-product .group_table .product-title {
    font-size: 12px;
    margin: 0;
    font-weight: 500; }
  .main-single-product .sticky-product .group_table .product-price {
    font-size: 14px;
    color: #000; }
  .main-single-product .sticky-product .group_table .product-thumb {
    display: none; }
  .main-single-product .sticky-product .group_table .product-info {
    padding-bottom: 5px; }
  .main-single-product .sticky-product form.cart {
    display: flex;
    align-items: center; }
  .main-single-product.box {
    background: #f4f4f4;
    margin-top: -50px;
    padding-top: 50px;
    margin-bottom: -60px;
    padding-bottom: 50px; }
  .main-single-product.box .bwp-single-product {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 30px; }
  .main-single-product.box .woocommerce-tabs {
    border: 0;
    padding: 0; }
  .main-single-product.box .woocommerce-tabs .content-ul-tab {
    border: 0;
    margin-bottom: 0; }
  .main-single-product.box .woocommerce-tabs .content-ul-tab ul.tabs {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 20px; }
  .main-single-product.box .woocommerce-tabs .content-tab {
    background: #fff;
    padding-top: 30px; }
  .main-single-product.box .related, .main-single-product.box .cross_sell, .main-single-product.box .upsells {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 30px; }
  .main-single-product.sidebar .bwp-single-product {
    padding-left: 0;
    padding-right: 0; }
  .main-single-product.sidebar .woocommerce-tabs {
    border-bottom: 0; }
  .main-single-product.sidebar .woocommerce-tabs ul.tabs {
    padding-left: 0;
    padding-right: 0; }
  .main-single-product.sidebar .woocommerce-tabs .content-woocommerce-tabs .content-tab {
    padding-left: 0;
    padding-right: 0; }
  .main-single-product.sidebar .woocommerce-tabs #tab-reviews #reviews .average-rating {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px; }
  .main-single-product.sidebar .woocommerce-tabs #tab-reviews #reviews #review_form.have-rating {
    width: 100%;
    flex: 0 0 100%; }
  .main-single-product.sidebar .bwp-single-product .bwp-single-info {
    padding-left: 15px; }
  .main-single-product.sidebar .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    width: 100%; }
  .main-single-product.sidebar .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button.button {
    flex: 1;
    margin-right: 0; }
  .rtl .main-single-product.sidebar .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button.button {
    margin-left: 0;
    margin-right: 0; }
  .main-single-product.sidebar .product-type-variable .variations_form.cart .quick_buy_container {
    width: 100%;
    display: block; }
  .main-single-product.sidebar .product-type-variable .variations_form.cart .quick_buy_container .quick_buy_button {
    width: 100%; }
  .main-single-product.sidebar .product-type-simple .bwp-single-info .entry-summary > .cart .quantity-button {
    width: 100%; }
  .main-single-product.sidebar .product-type-simple .bwp-single-info .entry-summary > .cart .quantity-button .single_add_to_cart_button.button {
    flex: 1;
    margin-right: 0; }
  .rtl .main-single-product.sidebar .product-type-simple .bwp-single-info .entry-summary > .cart .quantity-button .single_add_to_cart_button.button {
    margin-left: 0;
    margin-right: 0; }
  .main-single-product.sidebar .product-type-simple .bwp-single-info .entry-summary > .cart .quick_buy_container {
    width: 100%;
    display: block; }
  .main-single-product.sidebar .product-type-simple .bwp-single-info .entry-summary > .cart .quick_buy_container .quick_buy_button {
    width: 100%; }
  .main-single-product.sidebar .content-single-bottom {
    border-top: 1px solid #e0e0e0;
    margin-top: 60px; }
  @media (max-width: 1510px) and (min-width: 1200px) {
    .main-single-product.sidebar .woocommerce-tabs .content-woocommerce-tabs .content-ul-tab ul.tabs {
      padding-left: 0;
      padding-right: 0; } }

.contents-detail .bwp-single-product {
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px; }
  .contents-detail .bwp-single-product .slick-vertical .slick-slide {
    border: none; }
  .contents-detail .bwp-single-product .woocommerce-product-rating a {
    color: #868686;
    display: inline-block;
    vertical-align: top; }
  .contents-detail .bwp-single-product .onsale, .contents-detail .bwp-single-product .hot {
    line-height: 30px;
    padding: 0 12px;
    font-size: 15px;
    top: 15px; }
  .contents-detail .bwp-single-product .onsale:before, .contents-detail .bwp-single-product .hot:before {
    display: none; }
  .contents-detail .bwp-single-product .img-thumbnail:not(.slick-slide) {
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0; }
  @media (min-width: 767px) {
    .contents-detail .bwp-single-product .images.vertical .woocommerce-product-gallery > .row {
      display: inline-block; }
      .contents-detail .bwp-single-product .images.vertical .woocommerce-product-gallery > .row > div {
        float: left; }
        .rtl .contents-detail .bwp-single-product .images.vertical .woocommerce-product-gallery > .row > div {
          float: right; } }
  .contents-detail .bwp-single-product .bwp-single-info {
    margin-bottom: -9px;
    padding-left: 80px; }
  .rtl .contents-detail .bwp-single-product .bwp-single-info {
    padding-right: 80px;
    padding-left: 0; }
  @media (max-width: 1600px) {
      .contents-detail .bwp-single-product .bwp-single-info {
        padding-left: 50px; }
        .rtl .contents-detail .bwp-single-product .bwp-single-info {
          padding-right: 50px;
          padding-left: 0; } }
  @media (max-width: 1199px) {
      .contents-detail .bwp-single-product .bwp-single-info {
        padding-left: 15px; }
        .rtl .contents-detail .bwp-single-product .bwp-single-info {
          padding-right: 15px;
          padding-left: 0; } }
  @media (max-width: 991px) {
      .contents-detail .bwp-single-product .bwp-single-info {
        margin-top: 30px; } }
  .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow {
    top: calc(50% - 5px); }
  @media (max-width: 991px) {
          .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow {
            opacity: 1;
            visibility: visible; } }
  .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow.fa-angle-left {
    left: -12.5px; }
  .rtl .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow.fa-angle-left {
    right: -12.5px;
    left: auto; }
  .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow.fa-angle-right {
    right: -12.5px; }
  .rtl .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list .slick-arrow.fa-angle-right {
    left: -12.5px;
    right: auto; }
  .contents-detail .bwp-single-product .bwp-single-info .image-thumbnail-list:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 30px;
    height: 30px;
    line-height: 30px; }
  .contents-detail .bwp-single-product .vapier-bt-video {
    position: absolute;
    left: 16px;
    bottom: 18px;
    z-index: 9999; }
  .rtl .contents-detail .bwp-single-product .vapier-bt-video {
    right: 16px;
    left: auto; }
  .contents-detail .bwp-single-product .vapier-bt-video .bwp-video {
    line-height: 55px;
    width: 55px;
    height: 55px;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    text-align: center;
    text-indent: 3px;
    color: #000;
    cursor: pointer; }
  .contents-detail .bwp-single-product .vapier-bt-video .bwp-video h2 {
    display: none; }
  .contents-detail .bwp-single-product .vapier-bt-video .bwp-video:before {
    display: inline-block;
    content: "\e90d";
    font-family: wpbingofont;
    font-size: 16px;
    line-height: 1; }
  .contents-detail .bwp-single-product .vapier-bt-video .bwp-video:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product .vapier-bt-video .content-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5); }
  .contents-detail .bwp-single-product .vapier-bt-video .content-video .remove-show-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; }
  .contents-detail .bwp-single-product .vapier-bt-video .content-video.show .remove-show-modal, .contents-detail .bwp-single-product .vapier-bt-video .content-video.show .modal-dialog {
    display: block; }
  .contents-detail .bwp-single-product .vapier-bt-video .content-video .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none; }
  .contents-detail .bwp-single-product .vapier-bt-video .content-video .modal-dialog iframe {
    min-height: 60vh; }
  @media (max-width: 991px) {
            .contents-detail .bwp-single-product .vapier-bt-video .content-video .modal-dialog iframe {
              max-width: 70vw; } }
  .contents-detail .bwp-single-product.zoom .col-sm-12 {
    position: relative; }
  .contents-detail .bwp-single-product.zoom .img-thumbnail-video {
    height: 100%; }
  .contents-detail .bwp-single-product.zoom .img-thumbnail-video img {
    border: 1px solid rgba(163, 163, 163, 0.25);
    height: 100%;
    object-fit: cover;
    max-height: 154px; }
  .contents-detail .bwp-single-product.zoom .img-thumbnail-video.active img {
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product.zoom .view-gallery {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 42px;
    text-align: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 16px;
    color: #000; }
  .rtl .contents-detail .bwp-single-product.zoom .view-gallery {
    left: 15px;
    right: auto; }
  .contents-detail .bwp-single-product.zoom .view-gallery:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product.zoom .image-additional {
    vertical-align: top;
    display: inline-block;
    position: relative;
    border: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #e0e0e0; }
  .contents-detail .bwp-single-product.zoom .image-additional img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
  .contents-detail .bwp-single-product.zoom .image-additional.active {
    opacity: 1;
    visibility: visible; }
  .contents-detail .bwp-single-product.zoom .video-additional {
    display: none;
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 100%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
    z-index: 1000; }
  .contents-detail .bwp-single-product.zoom .video-additional iframe {
    width: 100% !important;
    height: 100% !important; }
  .contents-detail .bwp-single-product.zoom .video-additional.active {
    display: block; }
  .contents-detail .bwp-single-product.scroll .slick-arrow {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px; }
  .contents-detail .bwp-single-product.scroll .slick-arrow:hover {
    background: #D3AD47;
    color: #fff; }
  .contents-detail .bwp-single-product.scroll .slick-arrow:after {
    display: none; }
  .contents-detail .bwp-single-product.scroll .slick-arrow.fa-angle-right {
    bottom: -35px;
    top: auto; }
  .contents-detail .bwp-single-product.scroll:hover .slick-arrow {
    opacity: 1; }
  .contents-detail .bwp-single-product.scroll:hover .slick-arrow.fa-angle-left {
    top: -30px; }
  .contents-detail .bwp-single-product.scroll:hover .slick-arrow.fa-angle-right {
    bottom: -30px; }
  .contents-detail .bwp-single-product.scroll div.col-sm-12 .scroll-image .slick-arrow.fa-angle-left {
    left: 20px !important; }
  .rtl .contents-detail .bwp-single-product.scroll div.col-sm-12 .scroll-image .slick-arrow.fa-angle-left {
    right: 20px !important;
    left: auto; }
  .contents-detail .bwp-single-product.scroll div.col-sm-12 .scroll-image .slick-arrow.fa-angle-right {
    right: 20px !important; }
  .rtl .contents-detail .bwp-single-product.scroll div.col-sm-12 .scroll-image .slick-arrow.fa-angle-right {
    left: 20px !important;
    right: auto; }
  .contents-detail .bwp-single-product.scroll .slick-track, .contents-detail .bwp-single-product.scroll .slick-list {
    display: flex; }
  .contents-detail .bwp-single-product.scroll .img-thumbnail {
    float: unset;
    display: inline-flex; }
  .contents-detail .bwp-single-product.scroll .img-thumbnail.slick-current .img-thumbnail-scroll {
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product.scroll .video-additional {
    float: unset;
    height: 100%;
    display: inline-flex; }
  .contents-detail .bwp-single-product.scroll .video-additional iframe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden; }
  .contents-detail .bwp-single-product.special .bwp-single-image .images img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: 1px solid #e0e0e0; }
  .contents-detail .bwp-single-product.special .content-special {
    display: flex;
    margin: 0 -7.5px; }
  .contents-detail .bwp-single-product.special .content-special > div {
    padding: 0 7.5px;
    width: 25%;
    flex: 0 0 25%;
    min-height: 165px; }
  .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: 1px solid #dbdbdb;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    position: unset;
    text-align: center; }
  .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button h2 {
    margin: 8px 0 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin: -54px 0 0; }
  .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button i {
    font-size: 45px; }
  .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button:hover h2 {
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping {
    height: 100%; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: 1px solid #dbdbdb;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    position: unset;
    cursor: pointer;
    color: #000;
    text-align: center; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping h2 {
    margin: 8px 0 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin: -54px 0 0; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping i {
    font-size: 45px; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping:hover h2 {
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping {
    max-width: 700px;
    background: #fff;
    width: 100%;
    padding: 50px;
    position: relative; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping strong, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping label, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping b, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping th, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .content-shipping dt {
    color: #000; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h1, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h2, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h3, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h4, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h5, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping h6 {
    margin: 0 0 30px; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping.active {
    display: flex; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    z-index: 1;
    display: inline-block;
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%; }
  .rtl .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping {
    left: 20px;
    right: auto; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 20px;
    top: 50%;
    left: calc(50% - 10px);
    margin-top: -1px;
    background-color: #000;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 20px;
    top: 50%;
    left: calc(50% - 10px);
    margin-top: -1px;
    background-color: #000;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping:hover:after, .contents-detail .bwp-single-product.special .special-shipping .content-product-shipping .vapier-bt-shipping:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .contents-detail .bwp-single-product.special .vapier-product-button {
    height: 100%; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video {
    position: unset;
    height: 100%; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video .bwp-video {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: 1px solid #dbdbdb;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 20px; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video .bwp-video:before {
    font-size: 50px;
    content: "\e921"; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video .bwp-video h2 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: -54px 0 0;
    width: 100%; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video .bwp-video:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video .bwp-video:hover h2 {
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special {
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    text-align: center; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special h2 {
    margin: 8px 0 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special i {
    font-size: 50px; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special:hover {
    border-color: #D3AD47;
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special:hover h2 {
    color: #D3AD47; }
  .contents-detail .bwp-single-product.special .content-thumbs-scroll-special .thumbs-scroll-special.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #000;
    padding: 30px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    z-index: 1;
    display: inline-block;
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%; }
  .rtl .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special {
    left: 30px;
    right: auto; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special:after {
    content: '';
    position: absolute;
    height: 4px;
    width: 30px;
    top: 50%;
    left: calc(50% - 15px);
    margin-top: -1px;
    background-color: #fff;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special:before {
    content: '';
    position: absolute;
    height: 4px;
    width: 30px;
    top: 50%;
    left: calc(50% - 15px);
    margin-top: -1px;
    background-color: #fff;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special:hover:after, .contents-detail .bwp-single-product.special .thumbs-scroll-special .show-scroll-special:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional {
    height: calc(100% - 100px);
    padding: 60px 0 90px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional {
    height: 100%; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional * {
    height: 100%; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional img {
    width: auto;
    margin: auto;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px; }
  @media (max-width: 480px) {
              .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional img {
                height: auto; } }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional .img-thumbnail, .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .image-additional .img-thumbnail-scroll {
    display: flex;
    align-items: center;
    justify-content: center; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .slick-arrow.fa-angle-left {
    left: 50px; }
  .rtl .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .slick-arrow.fa-angle-left {
    right: 50px;
    left: auto; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .slick-arrow.fa-angle-right {
    right: 50px; }
  .rtl .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-additional .slick-arrow.fa-angle-right {
    left: 50px;
    right: auto; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail {
    height: 100px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail {
    height: 100%;
    max-width: 1200px;
    margin: auto; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail.max-thumbnail .img-thumbnail {
    width: auto !important;
    padding: 0 5px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail.max-thumbnail .slick-track {
    width: auto !important;
    display: flex;
    justify-content: center;
    transform: unset !important; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail * {
    height: 100%; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail img {
    width: auto;
    margin: auto; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail .img-thumbnail {
    padding: 0 5px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail .slick-list {
    margin: 0 -5px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail .slick-current > span {
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail .slick-current > span img {
    filter: brightness(1); }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail span {
    border-width: 2px; }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail span img {
    filter: brightness(0.7); }
  .contents-detail .bwp-single-product.special .thumbs-scroll-special .content-image-thumbnail .image-thumbnail span:hover img {
    filter: brightness(1); }
  @media (max-width: 1199px) {
      .contents-detail .bwp-single-product.special .content-thumbs-scroll-special > .show-scroll-special i {
        font-size: 30px; }
      .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video a {
        padding-top: 10px; }
        .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video a:before {
          font-size: 30px; }
        .contents-detail .bwp-single-product.special .vapier-product-button > .vapier-bt-video a h2 {
          margin: -35px 0 0; }
      .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button {
        padding-top: 10px; }
        .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button i {
          font-size: 30px; }
        .contents-detail .bwp-single-product.special .special-btn-360 > .vapier-360-button h2 {
          margin: -35px 0 0; }
      .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping {
        padding-top: 10px; }
        .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping i {
          font-size: 30px; }
        .contents-detail .bwp-single-product.special .special-shipping .vapier-product-shipping > .vapier-bt-shipping h2 {
          margin: -35px 0 0; }
      .contents-detail .bwp-single-product.special .content-special > div {
        min-height: 110px; } }
  .contents-detail .bwp-single-product .image-thumbnail .slick-slide {
    border: none;
    cursor: pointer; }
  .contents-detail .bwp-single-product .image-thumbnail .slick-slide > a, .contents-detail .bwp-single-product .image-thumbnail .slick-slide > .img-thumbnail-scroll {
    vertical-align: top;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid rgba(163, 163, 163, 0.25);
    overflow: hidden; }
  .contents-detail .bwp-single-product .image-thumbnail .slick-slide.slick-active.slick-center > .img-thumbnail-scroll, .contents-detail .bwp-single-product .image-thumbnail .slick-slide > a.active, .contents-detail .bwp-single-product .image-thumbnail .slick-slide:hover > a, .contents-detail .bwp-single-product .image-thumbnail .slick-slide:hover > .img-thumbnail-scroll {
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product .image-thumbnail .img-thumbnail-video {
    border: none;
    cursor: pointer; }
  .contents-detail .bwp-single-product .image-thumbnail .img-thumbnail-video:before {
    content: "\e90d";
    font-family: wpbingofont;
    font-size: 14px;
    color: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    z-index: 10;
    line-height: 48px;
    text-indent: 3px;
    background: rgba(0, 0, 0, 0.5); }
  .contents-detail .bwp-single-product .image-thumbnail .img-thumbnail-video > img {
    vertical-align: top;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid rgba(163, 163, 163, 0.25);
    overflow: hidden;
    height: 100%;
    object-fit: cover; }
  .contents-detail .bwp-single-product .image-thumbnail .img-thumbnail-video.slick-active.slick-center > img, .contents-detail .bwp-single-product .image-thumbnail .img-thumbnail-video:hover > img {
    border-color: #D3AD47; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery .slick-slide {
    vertical-align: top;
    border: 0; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery .slick-slide .img-thumbnail {
    vertical-align: top; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery .slick-slide img {
    display: inline-block;
    vertical-align: top; }
  @media (max-width: 767px) {
          .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 {
            margin-top: 20px; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow:after, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow:after {
    display: none; }
  @media (max-width: 991px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow {
                opacity: 1;
                visibility: visible; }
                .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow.fa-angle-left, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-left {
                  top: -12.5px; }
                .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow.fa-angle-right, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-right {
                  bottom: -12.5px; } }
  @media (min-width: 768px) {
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow {
              right: calc(50% - 12.5px);
              left: auto;
              width: 30px;
              height: 30px;
              line-height: 30px;
              background: #D3AD47;
              color: #fff;
              font-family: FontAwesome;
              text-align: center; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow:before, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow:before {
                content: "\f106"; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow:after, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow:after {
                display: none; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow.fa-angle-right, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-right {
                bottom: -35px;
                top: auto; }
                .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow.fa-angle-right:before, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-right:before {
                  content: "\f107"; }
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10:hover .slick-arrow, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2:hover .slick-arrow {
              opacity: 1;
              visibility: visible; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10:hover .slick-arrow.fa-angle-left, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2:hover .slick-arrow.fa-angle-left {
                top: -12.5px; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10:hover .slick-arrow.fa-angle-right, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2:hover .slick-arrow.fa-angle-right {
                bottom: -12.5px; } }
  @media (max-width: 767px) {
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-slider .slick-list, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-slider .slick-list {
              margin: 0 -10px; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-slider .slick-list .slick-slide, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-slider .slick-list .slick-slide {
                padding: 0 10px; }
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow {
              right: calc(50% - 25px); }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow.fa-angle-left, .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-left {
                right: 50%;
                left: auto; } }
  @media (max-width: 767px) {
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .slick-arrow {
              top: auto;
              bottom: -40px; }
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10:hover .slick-arrow {
              opacity: 1;
              bottom: -30px; }
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-10 .image-additional {
              text-align: center; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .image-thumbnail .slick-list {
    padding: 0 !important;
    margin: 0 -14px; }
    .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .image-thumbnail .slick-list .slick-slide {
      padding-bottom: 20px; }
  @media (max-width: 767px) {
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow {
              display: none !important; } }
  @media (min-width: 768px) {
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2 .slick-arrow.fa-angle-right {
              bottom: -20px; }
            .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-md-2:hover .slick-arrow.fa-angle-right {
              bottom: 0; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow {
    opacity: 0; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow:after {
    display: none; }
  @media (min-width: 1440px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12.content-thumbs-scroll .slick-arrow.fa-angle-left {
                left: -20px; }
                .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12.content-thumbs-scroll .slick-arrow.fa-angle-left {
                  right: -20px;
                  left: auto; }
                .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12.content-thumbs-scroll .slick-arrow.fa-angle-right {
                  right: -20px; }
                .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12.content-thumbs-scroll .slick-arrow.fa-angle-right {
                  left: -20px;
                  right: auto; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail {
    margin-top: 20px; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail .slick-list {
    margin: 0 -7px;
    display: flex; }
    .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail .slick-list .slick-track {
      display: flex; }
    .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail .slick-list .slick-slide {
      padding: 0 10px;
      padding-bottom: 0;
      float: unset;
      display: inline-flex;
      height: 100%; }
    @media (max-width: 480px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail .slick-list {
                margin: 0 -4px; }
                .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .image-thumbnail .slick-list .slick-slide {
                  padding: 0 5px; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow {
    top: calc(50% - 12.5px);
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #000;
    background: transparent;
    font-size: 22px;
    border: 0;
    font-family: wpbingofont; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-right {
    right: -20px; }
    .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-right {
      left: -20px;
      right: auto; }
    .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-right:before {
      content: "\e91b"; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-left {
    left: -20px; }
    .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-left {
      right: -20px;
      left: auto; }
    .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-left:before {
      content: "\e91a"; }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow:hover {
    color: #D3AD47; }
  @media (max-width: 1500px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-right {
                right: 10px; }
                .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-right {
                  left: 10px;
                  right: auto; }
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-left {
                left: 10px; }
                .rtl .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow.fa-angle-left {
                  right: 10px;
                  left: auto; } }
  @media (max-width: 991px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow {
                opacity: 1;
                visibility: visible; } }
  @media (max-width: 480px) {
              .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12 .slick-arrow {
                top: calc(50% - 1.5px);
                width: 20px;
                height: 20px;
                line-height: 20px; } }
  .contents-detail .bwp-single-product .woocommerce-product-gallery > .row > div.col-sm-12:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .contents-detail .bwp-single-product .image-thumbnail-list {
    padding: 0;
    margin-top: 15px;
    position: relative;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 10px; }
  .contents-detail .bwp-single-product .wpb-iconbox {
    border: 1px solid #dfdfdf;
    text-align: center;
    padding: 20px 20px 30px; }
  .contents-detail .bwp-single-product .wpb-iconbox .icon {
    color: #000;
    font-size: 36px; }
  .contents-detail .bwp-single-product .wpb-iconbox .title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 10px; }
  .contents-detail .bwp-single-product .featured-icon {
    margin-top: 40px; }
  .contents-detail .bwp-single-product .featured-icon .block-top-link {
    margin-left: -15px;
    margin-right: -15px;
    display: flex; }
  .contents-detail .bwp-single-product .featured-icon .block-top-link > * {
    padding: 0 15px;
    flex: 1;
    margin: 0; }
  .contents-detail .bwp-single-product .featured-icon .block-top-link > * > div {
    height: 100%; }
  @media (max-width: 767px) {
        .contents-detail .bwp-single-product .featured-icon .block-top-link {
          flex-wrap: wrap; }
          .contents-detail .bwp-single-product .featured-icon .block-top-link > * {
            flex: 50%;
            margin: 0 0 20px; }
            .contents-detail .bwp-single-product .featured-icon .block-top-link > * > div {
              height: 100%; } }
  @media (max-width: 480px) {
        .contents-detail .bwp-single-product .featured-icon .block-top-link > * {
          flex: 100%; } }
  .contents-detail .bwp-single-product .featured-icon .wpb-iconfeatured {
    text-align: center;
    border: 1px solid #d7d7d7;
    height: 100%;
    padding: 20px 20px 25px; }
  .contents-detail .bwp-single-product .featured-icon .wpb-iconfeatured .icon {
    color: #D3AD47;
    font-size: 30px;
    margin-bottom: 10px; }
  .contents-detail .bwp-single-product .featured-icon .wpb-iconfeatured .title {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600; }

.single-product, .quickview-container {
  /*------ social -------*/
  /*------ Infor -------*/ }
  .single-product .button_single, .quickview-container .button_single {
    display: inline-flex;
    margin-bottom: 5px;
    vertical-align: top; }
  .single-product .product_title, .quickview-container .product_title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
    color: #000;
    word-break: break-word;
    display: block; }
  @media (max-width: 480px) {
    .single-product .product_title, .quickview-container .product_title {
      font-size: 30px; } }
  .single-product .thumbnails, .quickview-container .thumbnails {
    padding: 35px 80px; }
  .single-product .thumbnails .img-thumbnail, .quickview-container .thumbnails .img-thumbnail {
    position: relative;
    display: inline-block;
    vertical-align: top; }
  .single-product .thumbnails .img-thumbnail img, .quickview-container .thumbnails .img-thumbnail img {
    opacity: 0.8;
    filter: alpha(opacity=80); }
  .single-product .thumbnails .img-thumbnail:hover, .quickview-container .thumbnails .img-thumbnail:hover {
    border-color: #D3AD47; }
  .single-product .thumbnails .img-thumbnail:hover img, .quickview-container .thumbnails .img-thumbnail:hover img {
    opacity: 1;
    filter: alpha(opacity=100); }
  .single-product .thumbnails .img-thumbnail:hover:before, .quickview-container .thumbnails .img-thumbnail:hover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D3AD47;
    opacity: 0.35;
    filter: alpha(opacity=35);
    z-index: 1; }
  .single-product .thumbnails .carousel-control, .quickview-container .thumbnails .carousel-control {
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    background: #fff;
    top: 50%;
    margin-top: -21px;
    cursor: pointer; }
  .single-product .thumbnails .carousel-control.disabled, .quickview-container .thumbnails .carousel-control.disabled {
    display: none; }
  .single-product .bwp-single-info .breadcrumb-noheading, .quickview-container .bwp-single-info .breadcrumb-noheading {
    margin-bottom: 5px; }
  .single-product .bwp-single-info .breadcrumb-noheading > .container, .quickview-container .bwp-single-info .breadcrumb-noheading > .container {
    padding: 0; }
  .single-product .bwp-single-info .breadcrumb-noheading .breadcrumb, .quickview-container .bwp-single-info .breadcrumb-noheading .breadcrumb {
    padding: 0;
    margin-bottom: 7px; }
  .single-product .bwp-single-info .quantity-text, .quickview-container .bwp-single-info .quantity-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px; }
  .single-product .bwp-single-info .quantity, .quickview-container .bwp-single-info .quantity {
    margin: 5px 0;
    border: 1px solid #e0e0e0;
    height: 45px;
    display: inline-block;
    margin-right: 7px;
    position: relative; }
  .rtl .single-product .bwp-single-info .quantity, .rtl .quickview-container .bwp-single-info .quantity {
    margin-left: 7px;
    margin-right: 0; }
  @media (max-width: 767px) {
      .single-product .bwp-single-info .quantity, .quickview-container .bwp-single-info .quantity {
        margin-right: 15px; }
        .rtl .single-product .bwp-single-info .quantity, .rtl .quickview-container .bwp-single-info .quantity {
          margin-left: 15px;
          margin-right: 0; } }
  .single-product .bwp-single-info .quantity input[type=number]::-webkit-inner-spin-button, .quickview-container .bwp-single-info .quantity input[type=number]::-webkit-inner-spin-button, .single-product .bwp-single-info .quantity input[type=number]::-webkit-outer-spin-button, .quickview-container .bwp-single-info .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .single-product .bwp-single-info .quantity input, .quickview-container .bwp-single-info .quantity input {
    width: 150px;
    border: 0;
    height: 45px;
    text-align: center;
    padding: 0 38px;
    font-size: 15px;
    font-weight: 500; }
  .single-product .bwp-single-info .quantity button, .quickview-container .bwp-single-info .quantity button {
    outline-color: transparent;
    color: #868686;
    font-size: 0; }
  .single-product .bwp-single-info .quantity button:hover, .quickview-container .bwp-single-info .quantity button:hover, .single-product .bwp-single-info .quantity button:focus, .quickview-container .bwp-single-info .quantity button:focus {
    border: none;
    color: #D3AD47; }
  .single-product .bwp-single-info .quantity button:before, .quickview-container .bwp-single-info .quantity button:before {
    font-family: eleganticons;
    display: inline-block;
    font-size: 18px; }
  .single-product .bwp-single-info .quantity button.plus, .quickview-container .bwp-single-info .quantity button.plus {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    line-height: 24px;
    border: none;
    width: 40px;
    height: 43px; }
  .rtl .single-product .bwp-single-info .quantity button.plus, .rtl .quickview-container .bwp-single-info .quantity button.plus {
    left: 0;
    right: auto; }
  .single-product .bwp-single-info .quantity button.plus:before, .quickview-container .bwp-single-info .quantity button.plus:before {
    content: "\4c";
    position: relative;
    top: 2px; }
  .single-product .bwp-single-info .quantity button.minus, .quickview-container .bwp-single-info .quantity button.minus {
    position: absolute;
    left: 0;
    bottom: 0;
    border: none;
    width: 40px;
    height: 43px;
    background: transparent; }
  .rtl .single-product .bwp-single-info .quantity button.minus, .rtl .quickview-container .bwp-single-info .quantity button.minus {
    right: 0;
    left: auto; }
  .single-product .bwp-single-info .quantity button.minus:before, .quickview-container .bwp-single-info .quantity button.minus:before {
    content: "\4b";
    position: relative;
    top: 4px; }
  .single-product .bwp-single-info .product_meta, .quickview-container .bwp-single-info .product_meta {
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
    margin-top: 30px; }
  .single-product .bwp-single-info .product_meta > span, .quickview-container .bwp-single-info .product_meta > span {
    margin-bottom: 0; }
  .single-product .bwp-single-info .product_meta #report_abuse, .quickview-container .bwp-single-info .product_meta #report_abuse {
    margin-bottom: 16px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    color: #D3AD47; }
  .single-product .bwp-single-info .product_meta #report_abuse_form, .quickview-container .bwp-single-info .product_meta #report_abuse_form {
    border: 0;
    padding: 20px; }
  .single-product .bwp-single-info .product_meta #report_abuse_form.simplePopup, .quickview-container .bwp-single-info .product_meta #report_abuse_form.simplePopup {
    -webkit-box-shadow: 0px 1px 10px 0px rgba(144, 144, 144, 0.75);
    box-shadow: 0px 1px 10px 0px rgba(144, 144, 144, 0.75); }
  .single-product .bwp-single-info .product_meta #report_abuse_form .simplePopupClose, .quickview-container .bwp-single-info .product_meta #report_abuse_form .simplePopupClose {
    color: #fff;
    background: red;
    width: 20px;
    height: 20px;
    line-height: 20.5px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .single-product .bwp-single-info .product_meta #report_abuse_form .simplePopupClose:hover, .quickview-container .bwp-single-info .product_meta #report_abuse_form .simplePopupClose:hover {
    background: #D3AD47; }
  .single-product .bwp-single-info .product_meta #report_abuse_form h3.wcmp-abuse-report-title, .quickview-container .bwp-single-info .product_meta #report_abuse_form h3.wcmp-abuse-report-title {
    margin-bottom: 20px;
    font-size: 18px; }
  .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table, .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table {
    border: 0; }
  .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr td, .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr td {
    border: 0;
    padding: 0;
    padding-bottom: 20px !important; }
    .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input[type="submit"], .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input[type="submit"] {
      background: #D3AD47;
      padding: 5px 15px;
      color: #fff;
      border: 0;
      margin-top: 10px; }
    .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input[type="submit"]:hover, .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input[type="submit"]:hover {
      background: #025029; }
    .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr textarea::placeholder, .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr textarea::placeholder, .single-product .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input::placeholder, .quickview-container .bwp-single-info .product_meta #report_abuse_form #report-abuse table tbody tr input::placeholder {
      font-size: 14px; }
  .single-product .bwp-single-info .product_meta .sku_wrapper, .quickview-container .bwp-single-info .product_meta .sku_wrapper, .single-product .bwp-single-info .product_meta .posted_in, .quickview-container .bwp-single-info .product_meta .posted_in, .single-product .bwp-single-info .product_meta .tagged_as, .quickview-container .bwp-single-info .product_meta .tagged_as {
    display: block;
    width: 100%;
    color: #000;
    margin-bottom: 5px;
    font-weight: 600; }
  .single-product .bwp-single-info .product_meta .sku_wrapper span, .quickview-container .bwp-single-info .product_meta .sku_wrapper span, .single-product .bwp-single-info .product_meta .posted_in span, .quickview-container .bwp-single-info .product_meta .posted_in span, .single-product .bwp-single-info .product_meta .tagged_as span, .quickview-container .bwp-single-info .product_meta .tagged_as span {
    font-weight: 400;
    color: #000; }
  .single-product .bwp-single-info .product_meta .sku_wrapper a, .quickview-container .bwp-single-info .product_meta .sku_wrapper a, .single-product .bwp-single-info .product_meta .posted_in a, .quickview-container .bwp-single-info .product_meta .posted_in a, .single-product .bwp-single-info .product_meta .tagged_as a, .quickview-container .bwp-single-info .product_meta .tagged_as a {
    font-weight: 400;
    color: #000; }
  .single-product .bwp-single-info .product_meta .sku_wrapper a:hover, .quickview-container .bwp-single-info .product_meta .sku_wrapper a:hover, .single-product .bwp-single-info .product_meta .posted_in a:hover, .quickview-container .bwp-single-info .product_meta .posted_in a:hover, .single-product .bwp-single-info .product_meta .tagged_as a:hover, .quickview-container .bwp-single-info .product_meta .tagged_as a:hover {
    color: #D3AD47; }
  .single-product .bwp-single-info .product_meta .posted_in a, .quickview-container .bwp-single-info .product_meta .posted_in a {
    color: #D3AD47; }
  .single-product .bwp-single-info .product_meta .posted_in a:hover, .quickview-container .bwp-single-info .product_meta .posted_in a:hover {
    color: #000; }
  .single-product .bwp-single-info .image-thumbnail .slick-list, .quickview-container .bwp-single-info .image-thumbnail .slick-list {
    margin: 0 -9px; }
  .single-product .bwp-single-info .image-thumbnail .slick-list .slick-slide, .quickview-container .bwp-single-info .image-thumbnail .slick-list .slick-slide {
    padding: 0 10px;
    padding-bottom: 10px; }
  .single-product .bwp-single-info .image-thumbnail .slick-arrow, .quickview-container .bwp-single-info .image-thumbnail .slick-arrow {
    top: 50%;
    margin-top: -17px; }
  .single-product .bwp-single-info .image-thumbnail .slick-arrow.fa-angle-left, .quickview-container .bwp-single-info .image-thumbnail .slick-arrow.fa-angle-left {
    left: 5px;
    right: auto; }
  .single-product .bwp-single-info .image-thumbnail .slick-arrow.fa-angle-right, .quickview-container .bwp-single-info .image-thumbnail .slick-arrow.fa-angle-right {
    right: 5px; }
  .single-product .bwp-single-info .woocommerce-product-rating, .quickview-container .bwp-single-info .woocommerce-product-rating {
    padding-top: 0;
    padding-bottom: 0;
    clear: both;
    display: inline-block;
    margin-bottom: 10px; }
  .single-product .bwp-single-info .woocommerce-product-rating:after, .quickview-container .bwp-single-info .woocommerce-product-rating:after {
    display: inline-block;
    content: "";
    height: 18px;
    width: 1px;
    background: #ddd;
    margin: 0 5px;
    position: relative;
    top: 1px; }
  .single-product .bwp-single-info .star-rating, .quickview-container .bwp-single-info .star-rating {
    display: inline-block;
    margin-right: 0;
    width: 85px;
    font-size: 12px;
    margin-bottom: 0; }
  .rtl .single-product .bwp-single-info .star-rating, .rtl .quickview-container .bwp-single-info .star-rating {
    margin-left: 0;
    margin-right: 0; }
  .single-product .bwp-single-info .star-rating:before, .quickview-container .bwp-single-info .star-rating:before {
    letter-spacing: 4.8px; }
  .single-product .bwp-single-info .star-rating span:before, .quickview-container .bwp-single-info .star-rating span:before {
    letter-spacing: 4.8px; }
  .single-product .bwp-single-info .woocommerce-review-link, .quickview-container .bwp-single-info .woocommerce-review-link {
    position: relative;
    top: -1px;
    color: #868686;
    font-size: 12px; }
  .single-product .bwp-single-info .description, .quickview-container .bwp-single-info .description {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0; }
  .single-product .bwp-single-info .description > p:last-child, .quickview-container .bwp-single-info .description > p:last-child {
    margin-bottom: 0; }
  .single-product .bwp-single-info .description ul, .quickview-container .bwp-single-info .description ul {
    padding: 0;
    list-style: none;
    padding: 0; }
  .single-product .bwp-single-info .description ul li, .quickview-container .bwp-single-info .description ul li {
    padding: 3px 0; }
  .single-product .bwp-single-info .description ul li:before, .quickview-container .bwp-single-info .description ul li:before {
    content: "\f04b";
    color: #D3AD47;
    font-size: 8px;
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: -1px; }
  .rtl .single-product .bwp-single-info .description ul li:before, .rtl .quickview-container .bwp-single-info .description ul li:before {
    margin-left: 8px;
    margin-right: 0; }
  .single-product .bwp-single-info .stock.in-stock, .quickview-container .bwp-single-info .stock.in-stock {
    margin-top: -10px; }
  .single-product .bwp-single-info .stock.out-of-stock, .quickview-container .bwp-single-info .stock.out-of-stock {
    display: none; }
  .single-product .bwp-single-info .variations_form .stock.out-of-stock, .quickview-container .bwp-single-info .variations_form .stock.out-of-stock {
    display: block; }
  .single-product .bwp-single-info .product-stock, .quickview-container .bwp-single-info .product-stock {
    margin-top: 2px;
    margin-bottom: 15px; }
  .single-product .bwp-single-info .product-stock i, .quickview-container .bwp-single-info .product-stock i {
    color: #868686;
    padding: 0 10px;
    font-size: 20px;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px); }
  .single-product .bwp-single-info .product-stock .stock, .quickview-container .bwp-single-info .product-stock .stock {
    color: #868686; }
  .single-product .bwp-single-info .prices, .quickview-container .bwp-single-info .prices {
    margin-top: 0;
    margin-bottom: 15px;
    width: 50%;
    display: inline-block; }
  .single-product .bwp-single-info .prices .price, .quickview-container .bwp-single-info .prices .price {
    margin: 0; }
  .single-product .bwp-single-info .prices .price del, .quickview-container .bwp-single-info .prices .price del {
    font-size: 18px;
    letter-spacing: 0; }
  @media (max-width: 767px) {
      .single-product .bwp-single-info .button_single, .quickview-container .bwp-single-info .button_single {
        display: inline-flex; } }
  .single-product .bwp-single-info .cart, .quickview-container .bwp-single-info .cart {
    padding: 0; }
  .single-product .bwp-single-info .woosw-wishlist, .quickview-container .bwp-single-info .woosw-wishlist, .single-product .bwp-single-info .woosc-compare, .quickview-container .bwp-single-info .woosc-compare {
    display: inline-block; }
  .single-product .bwp-single-info .woosw-btn, .quickview-container .bwp-single-info .woosw-btn {
    margin-top: 20px;
    text-align: center;
    color: #000;
    display: inline-flex;
    vertical-align: top;
    margin-right: 20px;
    align-items: center;
    font-weight: 500;
    background: transparent;
    border: 0; }
  .rtl .single-product .bwp-single-info .woosw-btn, .rtl .quickview-container .bwp-single-info .woosw-btn {
    margin-left: 20px;
    margin-right: 0; }
  .single-product .bwp-single-info .woosw-btn:before, .quickview-container .bwp-single-info .woosw-btn:before {
    content: "\f08a";
    font-family: 'FontAwesome';
    font-size: 13px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #cecece;
    margin-right: 10px;
    color: #868686;
    font-weight: 400;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .rtl .single-product .bwp-single-info .woosw-btn:before, .rtl .quickview-container .bwp-single-info .woosw-btn:before {
    margin-left: 10px;
    margin-right: 0; }
  .single-product .bwp-single-info .woosw-btn:hover, .quickview-container .bwp-single-info .woosw-btn:hover {
    color: #D3AD47; }
  .single-product .bwp-single-info .woosw-btn:hover:before, .quickview-container .bwp-single-info .woosw-btn:hover:before {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .single-product .bwp-single-info .woosw-btn.woosw-added:before, .quickview-container .bwp-single-info .woosw-btn.woosw-added:before {
    content: "\f004";
    font-family: 'FontAwesome';
    font-size: 13px;
    color: #000;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    top: 0; }
  .single-product .bwp-single-info .woosw-btn.woosw-added:hover:before, .quickview-container .bwp-single-info .woosw-btn.woosw-added:hover:before {
    color: #fff; }
  .single-product .bwp-single-info .woosw-btn:hover, .quickview-container .bwp-single-info .woosw-btn:hover {
    cursor: pointer; }
  .single-product .bwp-single-info .woosw-btn:hover a, .quickview-container .bwp-single-info .woosw-btn:hover a {
    color: #D3AD47; }
  .single-product .bwp-single-info .woosw-btn:hover a:before, .quickview-container .bwp-single-info .woosw-btn:hover a:before {
    color: #D3AD47; }
  .single-product .bwp-single-info .woosc-btn, .quickview-container .bwp-single-info .woosc-btn {
    margin-top: 20px;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 0; }
  .single-product .bwp-single-info .woosc-btn:before, .quickview-container .bwp-single-info .woosc-btn:before {
    content: "\e909";
    font-family: icomoon;
    font-size: 13px;
    line-height: 1;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #cecece;
    margin-right: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center; }
  .rtl .single-product .bwp-single-info .woosc-btn:before, .rtl .quickview-container .bwp-single-info .woosc-btn:before {
    margin-left: 10px;
    margin-right: 0; }
  .single-product .bwp-single-info .woosc-btn:hover, .quickview-container .bwp-single-info .woosc-btn:hover {
    color: #D3AD47; }
  .single-product .bwp-single-info .woosc-btn:hover:before, .quickview-container .bwp-single-info .woosc-btn:hover:before {
    color: #fff;
    background: #D3AD47;
    border-color: #D3AD47; }
  .single-product .bwp-single-info .single_add_to_cart_button.button, .quickview-container .bwp-single-info .single_add_to_cart_button.button {
    -webkit-transition: none;
    transition: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 45px;
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    min-width: 214px;
    white-space: nowrap;
    margin: 5px 10px 5px 0; }
  .rtl .single-product .bwp-single-info .single_add_to_cart_button.button, .rtl .quickview-container .bwp-single-info .single_add_to_cart_button.button {
    margin: 5px 0 5px 10px; }
  .single-product .bwp-single-info .single_add_to_cart_button.button.disabled, .quickview-container .bwp-single-info .single_add_to_cart_button.button.disabled {
    background: rgba(0, 0, 0, 0.5) !important;
    cursor: not-allowed; }
  .single-product .bwp-single-info .single_add_to_cart_button.button:before, .quickview-container .bwp-single-info .single_add_to_cart_button.button:before {
    content: "\e906";
    font-family: icomoon;
    margin-right: 10px; }
  .rtl .single-product .bwp-single-info .single_add_to_cart_button.button:before, .rtl .quickview-container .bwp-single-info .single_add_to_cart_button.button:before {
    margin-left: 10px;
    margin-right: 0; }
  .single-product .bwp-single-info .single_add_to_cart_button.button:hover, .quickview-container .bwp-single-info .single_add_to_cart_button.button:hover {
    background: #D3AD47;
    color: #fff; }
  .single-product .bwp-single-info .button.quick-buy, .quickview-container .bwp-single-info .button.quick-buy {
    display: inline-block;
    -webkit-transition: none;
    transition: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 45px;
    position: relative;
    background: #D3AD47;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0 15px;
    border: 0;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    margin: 5px 0;
    min-width: 214px;
    white-space: nowrap; }
  .rtl .single-product .bwp-single-info .button.quick-buy, .rtl .quickview-container .bwp-single-info .button.quick-buy {
    margin-left: 20px;
    margin-right: 0; }
  .single-product .bwp-single-info .button.quick-buy:hover, .quickview-container .bwp-single-info .button.quick-buy:hover {
    background: #025029;
    color: #fff; }
  .single-product .bwp-single-info .button.quick-buy.disabled, .quickview-container .bwp-single-info .button.quick-buy.disabled {
    background: rgba(3, 130, 66, 0.5);
    cursor: not-allowed; }
  .single-product .bwp-single-info .cart a.single_add_to_cart_button.button, .quickview-container .bwp-single-info .cart a.single_add_to_cart_button.button {
    display: inline-block;
    width: 100%; }
  .single-product .social-icon, .quickview-container .social-icon {
    margin-top: 5px; }
  .single-product .social-icon label, .quickview-container .social-icon label {
    display: none; }
  .single-product .social-icon .social-share, .quickview-container .social-icon .social-share {
    display: inline-block; }
  .single-product .social-icon .social-share > a, .quickview-container .social-icon .social-share > a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 15px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background: #3b5998; }
  .rtl .single-product .social-icon .social-share > a, .rtl .quickview-container .social-icon .social-share > a {
    margin-left: 15px;
    margin-right: 0; }
  .single-product .social-icon .social-share > a:last-child, .quickview-container .social-icon .social-share > a:last-child {
    margin-right: 0; }
  .rtl .single-product .social-icon .social-share > a:last-child, .rtl .quickview-container .social-icon .social-share > a:last-child {
    margin-left: 0;
    margin-right: 0; }
  .single-product .social-icon .social-share > a.share-twitter, .quickview-container .social-icon .social-share > a.share-twitter {
    background: #55acee; }
  .single-product .social-icon .social-share > a.share-linkedin, .quickview-container .social-icon .social-share > a.share-linkedin {
    background: #007ab9; }
  .single-product .social-icon .social-share > a.share-pinterest, .quickview-container .social-icon .social-share > a.share-pinterest {
    background: #cb2027; }
  .single-product .social-icon .social-share > a:hover, .quickview-container .social-icon .social-share > a:hover {
    background: #D3AD47; }
  .single-product .entry-summary .price-single, .quickview-container .entry-summary .price-single {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 100%;
    display: flex; }
  .single-product .entry-summary .vendor-info, .quickview-container .entry-summary .vendor-info {
    color: #000;
    font-weight: 500;
    margin-bottom: 10px; }
  .single-product .entry-summary .vendor-info label, .quickview-container .entry-summary .vendor-info label {
    margin: 0; }
  .single-product .entry-summary .vendor-info a, .quickview-container .entry-summary .vendor-info a {
    color: #f03333;
    text-transform: uppercase; }
  .single-product .entry-summary .price, .quickview-container .entry-summary .price {
    color: #000;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600; }
  .single-product .entry-summary .price del, .quickview-container .entry-summary .price del {
    font-size: 20px; }
  .single-product .entry-summary .price ins, .quickview-container .entry-summary .price ins {
    color: #000; }
  @media (max-width: 767px) {
      .single-product .entry-summary .price, .quickview-container .entry-summary .price {
        font-size: 25px; } }
  .single-product .entry-summary .product-lable, .quickview-container .entry-summary .product-lable {
    position: relative;
    top: -2px;
    margin-left: 15px; }
  .rtl .single-product .entry-summary .product-lable, .rtl .quickview-container .entry-summary .product-lable {
    margin-right: 15px;
    margin-left: 0; }
  .single-product .entry-summary .product-lable .hot, .quickview-container .entry-summary .product-lable .hot {
    display: none; }
  .single-product .entry-summary .product-lable .onsale, .quickview-container .entry-summary .product-lable .onsale {
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid #ff4545;
    border-right: 0;
    color: #ff4545;
    line-height: 22px;
    top: 0;
    left: 0;
    padding: 0 2px 0 10px;
    z-index: 2;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .rtl .single-product .entry-summary .product-lable .onsale, .rtl .quickview-container .entry-summary .product-lable .onsale {
    padding: 0 10px 0 2px; }
  .single-product .entry-summary .product-lable .onsale:before, .quickview-container .entry-summary .product-lable .onsale:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    right: -20px;
    border-color: #ff4545;
    border-style: solid;
    border-width: 13px;
    border-right-color: transparent;
    top: -2px;
    display: inline-block !important;
    z-index: -2; }
  .single-product .entry-summary .product-lable .onsale:after, .quickview-container .entry-summary .product-lable .onsale:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    right: -15px;
    border-color: #fff;
    border-style: solid;
    border-width: 11px;
    border-right-color: transparent;
    top: 0;
    z-index: -1; }
  .single-product .product-type-variable .bwp-single-info .description, .quickview-container .product-type-variable .bwp-single-info .description {
    margin-bottom: 15px; }
  .single-product .product-type-variable .variations_form.cart, .quickview-container .product-type-variable .variations_form.cart {
    float: none; }
  .single-product .product-type-variable .variations_form.cart .single_variation_wrap, .quickview-container .product-type-variable .variations_form.cart .single_variation_wrap {
    display: block;
    vertical-align: top; }
  .single-product .product-type-variable .variations_form.cart .single_variation_wrap .price, .quickview-container .product-type-variable .variations_form.cart .single_variation_wrap .price {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 23px; }
  .single-product .product-type-variable .variations_form.cart .single_variation_wrap .price del, .quickview-container .product-type-variable .variations_form.cart .single_variation_wrap .price del {
    font-size: 14px; }
  .single-product .product-type-variable .variations_form.cart table, .quickview-container .product-type-variable .variations_form.cart table {
    border: none;
    margin-top: 10px;
    position: relative;
    margin-bottom: 0; }
  .single-product .product-type-variable .variations_form.cart table tr, .quickview-container .product-type-variable .variations_form.cart table tr {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap; }
  .single-product .product-type-variable .variations_form.cart table tr td, .quickview-container .product-type-variable .variations_form.cart table tr td {
    border: none;
    padding: 0;
    margin-bottom: 20px !important;
    text-align: left; }
  .rtl .single-product .product-type-variable .variations_form.cart table tr td, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td {
    text-align: right; }
  .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches {
    padding: 0;
    display: flex;
    flex-wrap: wrap; }
  .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch-item-wrapper, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch-item-wrapper {
    margin-right: 15px;
    margin-bottom: 10px; }
    .rtl .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch-item-wrapper, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch-item-wrapper {
      margin-left: 15px;
      margin-right: 0; }
  .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch {
    cursor: pointer;
    overflow: unset; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color {
      opacity: 1;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      position: relative;
      text-indent: 100%;
      margin-right: 15px;
      font-size: 0;
      padding: 0;
      min-width: unset;
      border: 0;
      margin-bottom: 0;
      text-indent: 0; }
    .rtl .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color {
      margin-left: 15px;
      margin-right: 0; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:last-child, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:last-child {
      margin-right: 0; }
      .rtl .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:last-child, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:last-child {
        margin-left: 0;
        margin-right: 0; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:before, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:before {
      position: absolute;
      -webkit-transform: unset;
      -moz-transform: unset;
      -ms-transform: unset;
      -o-transform: unset;
      transform: unset;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      content: "\4e";
      font-family: eleganticons;
      color: #fff;
      left: 10px;
      top: 4px;
      font-size: 18px;
      width: auto;
      height: auto;
      border: 0; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip {
      font-size: 10px;
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      padding: 0 8px;
      line-height: 18px; }
      .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip:after, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip:after {
        z-index: -1; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color.selected, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color.selected, .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:hover, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:hover {
      border: 0 !important; }
      .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color.selected:before, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color.selected:before, .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:hover:before, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color:hover:before {
        opacity: 1;
        visibility: visible; }
    @media (max-width: 480px) {
                .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color {
                  margin-right: 15px !important; }
                  .rtl .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color {
                    margin-left: 15px !important;
                    margin-right: 0; }
                  .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-color .swatch__tooltip {
                    display: none !important; } }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image {
      width: 50px;
      height: 50px;
      padding: 0;
      font-size: 0;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      line-height: 20px;
      min-width: 50px;
      display: inline-block;
      border: 1px solid #ccc;
      color: #868686;
      font-weight: 500;
      margin-right: 10px;
      margin-bottom: 0;
      padding: 5px;
      overflow: hidden; }
    .rtl .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image {
      margin-left: 10px;
      margin-right: 0; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image img, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image img {
      object-fit: cover;
      vertical-align: middle;
      height: 100%;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image:hover, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image:hover, .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image.selected, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image.selected {
      border: 1px solid #000; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image.disabled, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image.disabled {
      cursor: not-allowed; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image .swatch__tooltip, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image .swatch__tooltip {
      font-size: 10px;
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      padding: 0 8px;
      top: 5px;
      line-height: 18px; }
      .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image .swatch__tooltip:after, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-image .swatch__tooltip:after {
        z-index: -1; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label {
      min-width: 40px;
      background: transparent;
      border: 1px solid #ccc;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      padding: 0 15px;
      margin-bottom: 0;
      width: auto;
      height: auto; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label:hover, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label:hover, .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label.selected, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label.selected {
      border: 1px solid #000;
      background: #000;
      color: #fff; }
    .single-product .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label.disabled, .quickview-container .product-type-variable .variations_form.cart table tr td.value .tawcvs-swatches .swatch.swatch-label.disabled {
      cursor: not-allowed; }
  .single-product .product-type-variable .variations_form.cart table tr td.label, .quickview-container .product-type-variable .variations_form.cart table tr td.label {
    width: 100%;
    margin-bottom: 0 !important; }
  .single-product .product-type-variable .variations_form.cart table tr td.value, .quickview-container .product-type-variable .variations_form.cart table tr td.value {
    margin-bottom: 0 !important;
    display: block;
    width: 100%; }
  .single-product .product-type-variable .variations_form.cart table tr td label, .quickview-container .product-type-variable .variations_form.cart table tr td label {
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
    margin-right: 15px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 600; }
  .rtl .single-product .product-type-variable .variations_form.cart table tr td label, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td label {
    margin-left: 15px;
    margin-right: 0; }
  .single-product .product-type-variable .variations_form.cart table tr td .swatch__tooltip, .quickview-container .product-type-variable .variations_form.cart table tr td .swatch__tooltip {
    display: none; }
  .single-product .product-type-variable .variations_form.cart table tr td select, .quickview-container .product-type-variable .variations_form.cart table tr td select {
    padding: 0 40px 0 10px;
    height: 40px;
    line-height: 40px;
    color: #868686;
    background-position: calc(100% - 18px) calc(1em + 3px), calc(100% - 13px) calc(1em + 3px), calc(100% - 2.5em) 0.5em;
    cursor: pointer;
    border-color: #ccc;
    margin-bottom: 15px; }
  .rtl .single-product .product-type-variable .variations_form.cart table tr td select, .rtl .quickview-container .product-type-variable .variations_form.cart table tr td select {
    padding: 0 10px 0 40px; }
  .single-product .product-type-variable .variations_form.cart table tr td select:focus, .quickview-container .product-type-variable .variations_form.cart table tr td select:focus {
    background-position: calc(100% - 14px) calc(1em + 3px), calc(100% - 20px) calc(1em + 3px), calc(100% - 2.5em) 0.5em; }
  .single-product .product-type-variable .variations_form.cart table .reset_variations, .quickview-container .product-type-variable .variations_form.cart table .reset_variations {
    color: #000;
    font-size: 13px;
    display: none;
    margin-bottom: -5px;
    position: relative; }
  .single-product .product-type-variable .variations_form.cart table .reset_variations:before, .quickview-container .product-type-variable .variations_form.cart table .reset_variations:before {
    content: "\4d";
    font-family: ElegantIcons;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: 3px; }
  .single-product .product-type-variable .variations_form.cart table .reset_variations:hover, .quickview-container .product-type-variable .variations_form.cart table .reset_variations:hover {
    color: #D3AD47; }
  .single-product .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation p, .quickview-container .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation p {
    margin-bottom: 30px; }
  .single-product .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart, .quickview-container .product-type-variable .variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: inline-flex;
    flex-wrap: wrap;
    vertical-align: bottom; }
  .single-product .product-type-variable .entry-summary .prices, .quickview-container .product-type-variable .entry-summary .prices {
    margin: 0; }
  .single-product .product-type-grouped .group_table tr > th, .quickview-container .product-type-grouped .group_table tr > th {
    padding: 20px 10px;
    background-color: #f4f4f4;
    text-align: center;
    font-weight: 700; }
  @media (max-width: 480px) {
          .single-product .product-type-grouped .group_table tr > th, .quickview-container .product-type-grouped .group_table tr > th {
            padding: 20px 1px; } }
  .single-product .product-type-grouped .group_table tr td, .quickview-container .product-type-grouped .group_table tr td {
    padding: 10px;
    vertical-align: middle;
    text-align: center; }
  .single-product .product-type-grouped .group_table tr td.product-thumb img, .quickview-container .product-type-grouped .group_table tr td.product-thumb img {
    max-width: 70px; }
  .single-product .product-type-grouped .group_table tr td .product-title, .quickview-container .product-type-grouped .group_table tr td .product-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0px;
    line-height: 35px; }
  .single-product .product-type-grouped .group_table tr td .product-title a, .quickview-container .product-type-grouped .group_table tr td .product-title a {
    color: #868686; }
  .single-product .product-type-grouped .group_table tr td .product-title a:hover, .quickview-container .product-type-grouped .group_table tr td .product-title a:hover {
    color: #D3AD47; }
  .single-product .product-type-grouped .group_table tr td.product-price, .quickview-container .product-type-grouped .group_table tr td.product-price {
    font-size: 14px;
    color: #000;
    line-height: 35px; }
  .single-product .product-type-grouped .group_table tr td.product-price ins, .quickview-container .product-type-grouped .group_table tr td.product-price ins {
    text-decoration: none; }
  .single-product .product-type-grouped .group_table tr td .product_type_external, .quickview-container .product-type-grouped .group_table tr td .product_type_external {
    line-height: 35px; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .group_table, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .group_table {
    border: 1px solid #e5e5e5;
    margin-bottom: 30px; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product td, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product td {
    padding: 0;
    border: 0; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product:last-child, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product:last-child {
    border-bottom: 0; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-content, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-content {
    display: flex;
    align-items: center;
    flex: 1; }
  @media (max-width: 480px) {
            .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-content, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-content {
              flex: 0 0 100%; } }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-thumb, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-thumb {
    flex: 0 0 60px;
    margin-right: 10px; }
  .rtl .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-thumb, .rtl .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .type-product .product-thumb {
    margin-left: 10px;
    margin-right: 0; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .product-info, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .product-info {
    padding: 0; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 2px;
    text-transform: uppercase; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title a, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title a {
    color: #868686; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title a:hover, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .product-title a:hover {
    color: #D3AD47; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart del, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart del {
    font-size: 11px; }
  .single-product .product-type-grouped .bwp-single-info .entry-summary > .cart .product-price, .quickview-container .product-type-grouped .bwp-single-info .entry-summary > .cart .product-price {
    color: #000;
    font-weight: 500; }
  .single-product .product-type-grouped .bwp-single-info .quantity, .quickview-container .product-type-grouped .bwp-single-info .quantity {
    margin: 0;
    border: 1px solid #e5e5e5 !important;
    height: 33px;
    display: inline-block;
    position: relative;
    width: 135px;
    padding: 0 20px;
    display: flex;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .single-product .product-type-grouped .bwp-single-info .quantity:before, .quickview-container .product-type-grouped .bwp-single-info .quantity:before {
    display: none; }
  @media (max-width: 480px) {
        .single-product .product-type-grouped .bwp-single-info .quantity, .quickview-container .product-type-grouped .bwp-single-info .quantity {
          margin-top: 10px; } }
  .single-product .product-type-grouped .bwp-single-info .quantity input[type=number]::-webkit-inner-spin-button, .quickview-container .product-type-grouped .bwp-single-info .quantity input[type=number]::-webkit-inner-spin-button, .single-product .product-type-grouped .bwp-single-info .quantity input[type=number]::-webkit-outer-spin-button, .quickview-container .product-type-grouped .bwp-single-info .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .single-product .product-type-grouped .bwp-single-info .quantity input, .quickview-container .product-type-grouped .bwp-single-info .quantity input {
    border: 0;
    height: 31px;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    width: 100%; }
  .single-product .product-type-grouped .bwp-single-info .quantity button, .quickview-container .product-type-grouped .bwp-single-info .quantity button {
    outline-color: transparent;
    color: #868686;
    font-size: 0;
    position: relative; }
  .single-product .product-type-grouped .bwp-single-info .quantity button:hover, .quickview-container .product-type-grouped .bwp-single-info .quantity button:hover, .single-product .product-type-grouped .bwp-single-info .quantity button:focus, .quickview-container .product-type-grouped .bwp-single-info .quantity button:focus {
    border: none;
    color: #D3AD47; }
  .single-product .product-type-grouped .bwp-single-info .quantity button:before, .quickview-container .product-type-grouped .bwp-single-info .quantity button:before {
    display: inline-block;
    font-size: 13px; }
  .single-product .product-type-grouped .bwp-single-info .quantity button.plus, .quickview-container .product-type-grouped .bwp-single-info .quantity button.plus {
    background: transparent;
    line-height: 15px;
    border: none;
    width: 18px;
    height: 31px; }
  .single-product .product-type-grouped .bwp-single-info .quantity button.plus:before, .quickview-container .product-type-grouped .bwp-single-info .quantity button.plus:before {
    position: relative;
    top: 4px; }
  .single-product .product-type-grouped .bwp-single-info .quantity button.minus, .quickview-container .product-type-grouped .bwp-single-info .quantity button.minus {
    border: none;
    width: 18px;
    height: 31px;
    background: transparent; }
  .single-product .product-type-grouped .bwp-single-info .quantity button.minus:before, .quickview-container .product-type-grouped .bwp-single-info .quantity button.minus:before {
    position: relative;
    top: 2px; }
  .single-product .product-type-grouped .bwp-single-info .quantity button.minus:after, .quickview-container .product-type-grouped .bwp-single-info .quantity button.minus:after {
    display: none; }
  .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info {
    display: flex;
    flex-wrap: wrap; }
  .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-heading {
    flex: 1; }
  .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .group_table, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .group_table {
    width: 100%; }
  .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .single_add_to_cart_button, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .single_add_to_cart_button {
    margin: 0; }
  .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .quantity .plus, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .quantity .plus, .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .quantity .minus, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info form.cart .quantity .minus {
    height: 32px; }
  @media (max-width: 991px) {
        .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-heading {
          flex: 0 0 100%; }
        .single-product .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-cart, .quickview-container .product-type-grouped .bwp-single-product.full_width .bwp-single-info .entry-cart {
          width: 100%; } }
  @media (max-width: 1500px) and (min-width: 991px) {
        .single-product .product-type-grouped .bwp-single-product.full_width .social-icon, .quickview-container .product-type-grouped .bwp-single-product.full_width .social-icon {
          display: none; } }
  .single-product .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-title a, .quickview-container .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-title a {
    color: #fff; }
  .single-product .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-title a:hover, .quickview-container .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-title a:hover {
    color: #D3AD47; }
  .single-product .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-price, .quickview-container .product-type-grouped .single-product-background.dark .bwp-single-info .entry-summary > .cart .product-price {
    color: #fff; }
  .single-product .product-type-simple .bwp-single-info .entry-summary > .cart, .quickview-container .product-type-simple .bwp-single-info .entry-summary > .cart {
    margin-top: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
  .single-product .product-type-simple .bwp-single-info .entry-summary > .cart .quantity-button, .quickview-container .product-type-simple .bwp-single-info .entry-summary > .cart .quantity-button {
    display: flex;
    flex-wrap: wrap; }
  .single-product .product-type-simple .bwp-single-product.full_width .bwp-single-info, .quickview-container .product-type-simple .bwp-single-product.full_width .bwp-single-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end; }
  .single-product .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-heading {
    flex: 1; }
  .single-product .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-cart, .quickview-container .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-cart {
    margin-bottom: 20px; }
  @media (max-width: 991px) {
        .single-product .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-heading {
          flex: 0 0 100%; }
        .single-product .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-cart, .quickview-container .product-type-simple .bwp-single-product.full_width .bwp-single-info .entry-cart {
          width: 100%; } }
  .single-product .product-type-external .quick_buy_container, .quickview-container .product-type-external .quick_buy_container {
    display: none; }
  .single-product .product-type-external .bwp-single-info .entry-summary > .cart, .quickview-container .product-type-external .bwp-single-info .entry-summary > .cart {
    margin-bottom: 15px;
    clear: both; }
  .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end; }
  .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-heading {
    flex: 1; }
  .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart {
    margin-bottom: 20px;
    min-width: 500px;
    display: flex; }
  .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart .cart, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart .cart {
    flex: 1; }
  @media (max-width: 991px) {
        .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-heading, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-heading {
          flex: 0 0 100%; }
        .single-product .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart, .quickview-container .product-type-external .bwp-single-product.full_width .bwp-single-info .entry-cart {
          width: 100%;
          min-width: unset; } }
  .single-product .type-product > div:last-of-type.woocommerce-tabs, .quickview-container .type-product > div:last-of-type.woocommerce-tabs {
    margin-bottom: 0; }
  .single-product .type-product.outofstock .variations, .quickview-container .type-product.outofstock .variations {
    display: none; }
  .single-product .type-product.outofstock .variations_button, .quickview-container .type-product.outofstock .variations_button {
    display: none !important; }
  .single-product .type-product.outofstock .product-stock, .quickview-container .type-product.outofstock .product-stock {
    margin: 0;
    line-height: 45px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-align: center;
    background: #ededed;
    cursor: no-drop;
    margin-bottom: 5px;
    font-weight: 500;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .single-product .type-product.outofstock .product-stock span, .quickview-container .type-product.outofstock .product-stock span {
    color: #000; }
  .single-product .brands-single, .quickview-container .brands-single {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    top: -4px; }
  .single-product .brands-single .title-brand, .quickview-container .brands-single .title-brand {
    margin: 0 5px 0 0;
    font-size: 13px;
    color: #868686; }
  .rtl .single-product .brands-single .title-brand, .rtl .quickview-container .brands-single .title-brand {
    margin: 0 0 0 5px; }
  .single-product .brands-single ul, .quickview-container .brands-single ul {
    padding: 0;
    list-style: none; }
  .single-product .brands-single ul li, .quickview-container .brands-single ul li {
    display: inline-block; }
  .single-product .brands-single ul li:last-child a:after, .quickview-container .brands-single ul li:last-child a:after {
    display: none; }
  .single-product .brands-single ul li a, .quickview-container .brands-single ul li a {
    display: inline-block;
    color: #f03333;
    font-size: 13px; }
  .single-product .brands-single ul li a:after, .quickview-container .brands-single ul li a:after {
    content: ",";
    margin: 0 5px 0 0; }
  .rtl .single-product .brands-single ul li a:after, .rtl .quickview-container .brands-single ul li a:after {
    margin: 0 0 0 5px; }
  .single-product .brands-single ul li a:hover, .quickview-container .brands-single ul li a:hover {
    color: #000; }
  .single-product .countdown-single, .quickview-container .countdown-single {
    margin: 25px 0 10px;
    display: flex;
    align-items: center; }
  .single-product .countdown-single .title-countdown h2, .quickview-container .countdown-single .title-countdown h2 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase; }
  .single-product .countdown-single .title-countdown p, .quickview-container .countdown-single .title-countdown p {
    font-size: 12px;
    margin: 0; }
  .single-product .countdown-single .product-countdown, .quickview-container .countdown-single .product-countdown {
    padding-left: 10px; }
  .rtl .single-product .countdown-single .product-countdown, .rtl .quickview-container .countdown-single .product-countdown {
    padding-right: 10px;
    padding-left: 0; }
  .single-product .countdown-single .product-countdown .countdown-content > span, .quickview-container .countdown-single .product-countdown .countdown-content > span {
    display: inline-block;
    margin-right: 10px;
    text-align: center; }
  .rtl .single-product .countdown-single .product-countdown .countdown-content > span, .rtl .quickview-container .countdown-single .product-countdown .countdown-content > span {
    margin-left: 10px;
    margin-right: 0; }
  .single-product .countdown-single .product-countdown .countdown-content > span:last-child, .quickview-container .countdown-single .product-countdown .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .single-product .countdown-single .product-countdown .countdown-content > span:last-child, .rtl .quickview-container .countdown-single .product-countdown .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .single-product .countdown-single .product-countdown .countdown-content .countdown-amount, .quickview-container .countdown-single .product-countdown .countdown-content .countdown-amount {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    background: #D3AD47; }
  .single-product .countdown-single .product-countdown .countdown-content .countdown-text, .quickview-container .countdown-single .product-countdown .countdown-content .countdown-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    margin-top: 2px; }
  @media (max-width: 480px) {
        .single-product .countdown-single .product-countdown .countdown-content > span, .quickview-container .countdown-single .product-countdown .countdown-content > span {
          margin-right: 10px; }
          .rtl .single-product .countdown-single .product-countdown .countdown-content > span, .rtl .quickview-container .countdown-single .product-countdown .countdown-content > span {
            margin-left: 10px;
            margin-right: 0; }
        .single-product .countdown-single .product-countdown .countdown-content .countdown-amount, .quickview-container .countdown-single .product-countdown .countdown-content .countdown-amount {
          width: 60px;
          height: 60px;
          line-height: 56px;
          font-size: 22px; }
        .single-product .countdown-single .product-countdown .countdown-content .countdown-text, .quickview-container .countdown-single .product-countdown .countdown-content .countdown-text {
          font-size: 12px;
          letter-spacing: 1.6px;
          text-indent: 1.6px; } }

.quickview-container .bwp-single-info .entry-summary .quantity-button, .quickview-container .bwp-single-info .entry-summary .woocommerce-variation-add-to-cart {
  width: 100%; }
  .quickview-container .bwp-single-info .entry-summary .single_add_to_cart_button.button {
    min-width: 160px;
    margin-right: 0;
    flex: 1; }
  .rtl .quickview-container .bwp-single-info .entry-summary .single_add_to_cart_button.button {
    margin-left: 0;
    margin-right: 0; }
  .quickview-container .bwp-single-info .entry-summary .quantity input {
    width: 120px; }
  .quickview-container .bwp-single-info .entry-summary .quantity button {
    width: 30px; }
  .quickview-container .bwp-single-info .entry-summary .button.quick-buy {
    min-width: 150px;
    width: 100%; }
  .quickview-container .product-type-grouped .bwp-single-info .entry-summary .button.quick-buy {
    width: auto;
    min-width: 160px; }
  .quickview-container .product-type-grouped .bwp-single-info .entry-summary .single_add_to_cart_button.button {
    min-width: 160px; }

.wishlist-items-wrapper .product-price {
  font-size: 15px; }
  .wishlist-items-wrapper .product-price ins {
    text-decoration: none; }

.woocommerce-account .woocommerce-form-row {
  margin: 0;
  margin-bottom: 14px; }
  .woocommerce-account .woocommerce-form-row label {
    display: block;
    width: 100%; }
  .woocommerce-account .woocommerce-form-row .password-input {
    width: 100%; }
  .woocommerce-account .woocommerce-MyAccount-content fieldset {
    margin-top: 30px; }
  @media (max-width: 991px) {
    .woocommerce-account #customer_login > div {
      margin: 25px 0; } }
  .woocommerce-account #customer_login .box-form-login {
    border: 2px solid #eaeaea;
    padding: 50px 0 40px;
    height: 100%; }
  .woocommerce-account #customer_login .required {
    color: red; }
  .woocommerce-account #customer_login h2 {
    text-align: center;
    position: relative;
    margin: 0 0 40px;
    font-size: 20px;
    padding-bottom: 15px; }
  .woocommerce-account #customer_login h2:before {
    font-size: 21px;
    content: "\e90c";
    font-family: wpbingofont;
    display: inline-block;
    margin-right: 10px; }
  .rtl .woocommerce-account #customer_login h2:before {
    margin-left: 10px;
    margin-right: 0; }
  .woocommerce-account #customer_login h2:after {
    content: "";
    width: 132px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -2px;
    left: calc(50% - 66px); }
  .woocommerce-account #customer_login h2.register:before {
    content: "\e915"; }
  .woocommerce-account #customer_login .button-login, .woocommerce-account #customer_login .button-register {
    text-align: center; }
  .woocommerce-account #customer_login .button-login input[type="submit"], .woocommerce-account #customer_login .button-register input[type="submit"] {
    background: #000;
    border: 0;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px; }
  .woocommerce-account #customer_login .button-login input[type="submit"]:hover, .woocommerce-account #customer_login .button-register input[type="submit"]:hover {
    background: #D3AD47; }
  .woocommerce-account #customer_login .button-register input[type="submit"] {
    background: #b9b9b9; }
  .woocommerce-account #customer_login .button-register input[type="submit"]:hover {
    background: #D3AD47; }
  .woocommerce-account #customer_login .box-content {
    padding: 0 90px 0; }
  .woocommerce-account #customer_login .box-content input {
    width: 100%;
    height: 55px;
    line-height: 55px; }
  .woocommerce-account #customer_login .box-content .username input, .woocommerce-account #customer_login .box-content .password input, .woocommerce-account #customer_login .box-content .email input {
    padding: 0 20px;
    margin-bottom: 15px; }
  @media (max-width: 1199px) {
      .woocommerce-account #customer_login .box-content {
        padding: 0 50px; } }
  @media (max-width: 991px) {
      .woocommerce-account #customer_login .box-content {
        padding: 0 30px; } }
  @media (max-width: 480px) {
      .woocommerce-account #customer_login .box-content {
        padding: 0 15px; } }
  .woocommerce-account #customer_login .user-role {
    margin: 0 0 18px;
    justify-content: space-between; }
  .woocommerce-account #customer_login .user-role:after, .woocommerce-account #customer_login .user-role:before {
    display: none; }
  .woocommerce-account #customer_login .user-role input {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: 3px; }
  .woocommerce-account #customer_login .user-role .radio {
    color: #000;
    font-weight: 500;
    cursor: pointer; }
  .woocommerce-account #customer_login .form-row {
    margin-left: 0;
    margin-right: 0; }
  .woocommerce-account #customer_login .woocommerce-password-hint {
    margin-bottom: 20px;
    display: block; }
  .woocommerce-account #customer_login .rememberme-lost {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px; }
  .woocommerce-account #customer_login .rememberme-lost .rememberme {
    margin-right: 10px;
    position: relative; }
  .rtl .woocommerce-account #customer_login .rememberme-lost .rememberme {
    margin-left: 10px;
    margin-right: 0; }
  .woocommerce-account #customer_login .rememberme-lost .rememberme input {
    position: absolute;
    opacity: 0;
    height: 22px;
    cursor: pointer; }
  .woocommerce-account #customer_login .rememberme-lost .rememberme input:checked + label:after {
    opacity: 1; }
  .woocommerce-account #customer_login .rememberme-lost .rememberme input:checked + label:before {
    border-color: #0075ff; }
  .woocommerce-account #customer_login .rememberme-lost .inline {
    color: #000;
    font-weight: 500;
    cursor: pointer; }
  .woocommerce-account #customer_login .rememberme-lost .inline:before {
    width: 16px;
    height: 16px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #000;
    margin-right: 5px;
    position: relative;
    top: 3px;
    z-index: 2; }
  .rtl .woocommerce-account #customer_login .rememberme-lost .inline:before {
    margin-left: 5px;
    margin-right: 0; }
  .woocommerce-account #customer_login .rememberme-lost .inline:after {
    width: 16px;
    height: 16px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 3px;
    border: 2.5px solid #fff;
    left: 0;
    background: #0075ff;
    z-index: 1;
    opacity: 0; }
  .rtl .woocommerce-account #customer_login .rememberme-lost .inline:after {
    right: 0;
    left: auto; }
  .woocommerce-account #customer_login .rememberme-lost .lost_password {
    font-weight: 500; }
  .woocommerce-account #customer_login .rememberme-lost .lost_password a {
    display: inline-block;
    position: relative; }
  .woocommerce-account #customer_login .rememberme-lost .lost_password a:before {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #000; }
  .woocommerce-account #customer_login .rememberme-lost .lost_password a:hover:before {
    background: #D3AD47;
    width: 50%; }
  .woocommerce-account legend {
    color: #000;
    font-weight: 500;
    margin-top: 30px; }

.woocommerce-cart .woocommerce-cart-form .actions .coupon {
  flex: 0 0 50%;
  display: flex; }
  .woocommerce-cart .woocommerce-cart-form .actions .coupon input {
    line-height: 50px;
    padding: 0 10px;
    flex: 1;
    margin-right: 5px; }
  .rtl .woocommerce-cart .woocommerce-cart-form .actions .coupon input {
    margin-left: 5px;
    margin-right: 0; }
  .woocommerce-cart .woocommerce-cart-form .actions .bottom-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
  .woocommerce-cart .woocommerce-cart-form .actions .bottom-cart h2 {
    margin: 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif; }
  @media (max-width: 991px) {
        .woocommerce-cart .woocommerce-cart-form .actions .bottom-cart h2 {
          margin: 8px 0 15px; }
        .woocommerce-cart .woocommerce-cart-form .actions .bottom-cart .coupon {
          flex: 0 0 100%;
          margin-bottom: 10px;
          flex-wrap: wrap; } }
  .woocommerce-cart .cart-collaterals {
    background: #f6f6f6;
    padding-bottom: 45px;
    max-width: 370px;
    margin-left: auto; }
  .rtl .woocommerce-cart .cart-collaterals {
    margin-right: auto;
    margin-left: 0; }
  .woocommerce-cart .cart-collaterals h2 {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    padding: 15px 30px 11px;
    background: #e9e9e9;
    margin: 0;
    line-height: 1.8;
    border-bottom: 0;
    font-weight: 600; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-totals {
    display: flex;
    padding: 15px 30px;
    align-items: center; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-totals h2 {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    background: transparent;
    padding: 0; }
  .woocommerce-cart .cart-collaterals .woocommerce-shipping-totals > * {
    flex: 1; }
  .woocommerce-cart .cart-collaterals .cart-subtotal {
    display: flex;
    padding: 15px 30px;
    align-items: center; }
  .woocommerce-cart .cart-collaterals .cart-subtotal > * {
    flex: 1; }
  .woocommerce-cart .cart-collaterals .cart-subtotal > * .woocommerce-Price-amount {
    font-size: 20px;
    color: #000; }
  .woocommerce-cart .cart-collaterals .order-total {
    display: flex;
    padding: 15px 30px;
    align-items: center; }
  .woocommerce-cart .cart-collaterals .order-total > div {
    flex: 1; }
  .woocommerce-cart .cart-collaterals .order-total .woocommerce-Price-amount {
    font-size: 24px;
    color: #000; }
  .woocommerce-cart .cart-collaterals .title {
    color: #000; }
  .woocommerce-cart .cart-collaterals .woocs_special_price_code {
    color: #000;
    font-size: 20px; }
  .woocommerce-cart .cart-collaterals a.shipping-calculator-button {
    color: #000;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    font-size: 13px; }
  .woocommerce-cart .cart-collaterals a.shipping-calculator-button:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .woocommerce-cart .cart-collaterals a.shipping-calculator-button:hover {
    color: #D3AD47; }
  .woocommerce-cart .cart-collaterals a.shipping-calculator-button:hover:before {
    background: #D3AD47;
    width: 60%; }
  .woocommerce-cart .cart-collaterals .shipping-calculator-form {
    margin-top: 20px; }
  .woocommerce-cart .cart-collaterals .shipping-calculator-form .button {
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500; }
  .woocommerce-cart .cart-collaterals ul.woocommerce-shipping-methods {
    margin-bottom: 10px; }
  @media (max-width: 767px) {
        .woocommerce-cart .cart-collaterals ul.woocommerce-shipping-methods {
          display: block; } }
  .woocommerce-cart .cart-collaterals ul li {
    margin-right: 20px; }
  .rtl .woocommerce-cart .cart-collaterals ul li {
    margin-left: 20px;
    margin-right: 0; }
  .woocommerce-cart .cart-collaterals ul li input[type="radio"], .woocommerce-cart .cart-collaterals ul li input[type="checkbox"] {
    margin-top: 0; }
  .woocommerce-cart .cart-collaterals ul li .shipping_method {
    display: none; }
  .woocommerce-cart .cart-collaterals ul li label {
    margin: 0;
    margin-left: 0;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 18px;
    cursor: pointer; }
  .rtl .woocommerce-cart .cart-collaterals ul li label {
    margin-right: 0;
    margin-left: 0; }
  .rtl .woocommerce-cart .cart-collaterals ul li label {
    padding-right: 18px;
    padding-left: 0; }
  .woocommerce-cart .cart-collaterals ul li label:before {
    position: absolute;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border: 1px solid #868686;
    content: ""; }
  .rtl .woocommerce-cart .cart-collaterals ul li label:before {
    right: 0;
    left: auto; }
  .woocommerce-cart .cart-collaterals ul li .shipping_method:checked + label:before {
    background: #000;
    border-color: #000; }
  @media (max-width: 1440px) {
    .woocommerce-cart .cart-collaterals {
      max-width: 100%; } }

.woocommerce-wishlist .wishlist-title h2 {
  font-size: 19px;
  padding: 0;
  margin-bottom: 0; }
/*! Wcvendors Vendors */
.vendor_dashboard.logged-in .form-row label.checkbox {
  display: inline-block; }
  .vendor_dashboard.logged-in .form-row input[type="submit"] {
    background: #D3AD47;
    color: #fff;
    border: 1px solid #D3AD47; }
  .vendor_dashboard.logged-in .form-row input[type="submit"]:hover {
    background: #025029; }
  .vendor_dashboard.logged-in center > p > a {
    padding: 0 10px;
    position: relative; }
  .vendor_dashboard.logged-in center > p > a:before {
    content: "";
    width: 1px;
    height: 13px;
    position: absolute;
    background: #a3a3a3;
    top: 5px;
    left: -3px; }
  .rtl .vendor_dashboard.logged-in center > p > a:before {
    right: -3px;
    left: auto; }
  .vendor_dashboard.logged-in center > p > a:first-child:before {
    display: none; }
  .vendor_dashboard.logged-in input[type="submit"] {
    background: #D3AD47;
    border: 0;
    color: #fff; }
  .vendor_dashboard.logged-in input[type="submit"]:hover {
    background: #025029 !important; }
  .vendor_dashboard.logged-in table.table-vendor-sales-report thead > tr > th:empty {
    display: none; }

.shop_settings.logged-in input[type="submit"] {
  background: #D3AD47;
  border: 0;
  color: #fff; }
  .shop_settings.logged-in input[type="submit"]:hover {
    background: #025029 !important; }
  .shop_settings.logged-in #pv_shop_description_container .wp-editor-wrap, .shop_settings.logged-in #pv_seller_info_container .wp-editor-wrap {
    border: 0;
    margin-bottom: 20px; }

ul.wcv_vendorslist {
  list-style-type: none;
  padding: 0; }
  @media (min-width: 992px) {
  ul.wcv_vendorslist {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; }
    ul.wcv_vendorslist > li {
      width: calc(50% - 30px);
      float: left;
      margin-left: 15px;
      margin-right: 15px; }
      .rtl ul.wcv_vendorslist > li {
        float: right; }
      ul.wcv_vendorslist > li:nth-last-child(2):nth-child(2n+1) {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0; } }
  ul.wcv_vendorslist > li {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px; }
  @media (max-width: 767px) {
    ul.wcv_vendorslist > li {
      padding-bottom: 25px; } }
  ul.wcv_vendorslist > li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  ul.wcv_vendorslist > li .shop-name {
    font-size: 20px;
    padding-bottom: 10px;
    display: inline-block; }
  @media (max-width: 767px) {
      ul.wcv_vendorslist > li .vendor-list-infor {
        padding-top: 15px; } }
  ul.wcv_vendorslist > li .vendor-list-infor i {
    color: #D3AD47;
    text-align: center;
    width: 15px;
    margin-right: 10px; }
  .rtl ul.wcv_vendorslist > li .vendor-list-infor i {
    margin-left: 10px;
    margin-right: 0; }
  ul.wcv_vendorslist > li .vendor-list-infor > div {
    margin-bottom: 4px; }
  ul.wcv_vendorslist > li .vendor-list-infor > div:last-child {
    margin-bottom: 0; }

.vender-main-header {
  margin-bottom: 45px; }
  .vender-main-header h2 {
    font-size: 25px;
    margin-bottom: 20px; }
  .vender-main-header .vendor-list-top {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 25px; }
  .vender-main-header .vendor-list-top .vendor-list-infor i {
    color: #D3AD47;
    text-align: center;
    width: 15px;
    margin-right: 10px; }
  .rtl .vender-main-header .vendor-list-top .vendor-list-infor i {
    margin-left: 10px;
    margin-right: 0; }
  .vender-main-header .vendor-list-top .vendor-list-infor > div {
    margin-bottom: 4px; }
  .vender-main-header .vendor-list-top .vendor-list-infor > div:last-child {
    margin-bottom: 0; }

@media (min-width: 1280px) {
    .wcv-store-header, .pv_shop_description {
      max-width: 1280px;
      margin: auto;
      padding: 0 15px; } }

.pv_shop_description {
  margin-bottom: 50px; }

.wcv-store-header.header-modern .cover {
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }
  .wcv-store-header.header-modern .name {
    color: #000;
    font-weight: 700;
    text-shadow: unset; }
  .wcv-store-header.header-modern .desc {
    color: #868686;
    text-shadow: unset; }
  .wcv-store-header.header-modern .meta {
    margin-bottom: 30px;
    margin-top: 20px; }
/*! Dokan Vendors */
.dokan-stores .main-content {
  position: relative; }
  .dokan-stores .main-content .dokan-overlay {
    position: absolute;
    background: rgba(255, 255, 255, .3); }
  .dokan-stores .dokan-seller-search {
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    margin-bottom: 10px; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li {
    margin-bottom: 30px; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data p {
    color: #868686; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data h2 a {
    color: #000; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data h2 a:hover {
    color: #D3AD47; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li .store-footer a {
    background: #D3AD47;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .dokan-stores #dokan-seller-listing-wrap ul.dokan-seller-wrap li .store-footer a:hover {
    background: #026935; }

.dokan-store .dokan-single-store {
  width: 100%; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box {
    margin-bottom: 50px; }
  @media (min-width: 1199px) {
      .dokan-store .dokan-single-store .profile-frame .profile-info-box > img {
        min-height: 400px;
        object-fit: cover; } }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-default .store-social li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    background: #868686; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-default .store-social li a i {
    font-size: 13px !important;
    color: #fff !important;
    text-shadow: unset !important;
    -webkit-text-shadow: unset !important;
    -moz-text-shadow: unset !important;
    -ms-text-shadow: unset !important;
    -o-text-shadow: unset !important; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-default .store-social li a:hover {
    background: #D3AD47; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li {
    width: 100%; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li:before {
      display: none; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li i {
      color: #D3AD47;
      margin-top: 4px;
      font-size: 18px;
      width: 25px;
      text-align: center; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li.dokan-store-rating i, .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li.dokan-store-open-close i {
      font-size: 15px; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout2 .profile-info-summery-wrapper {
    height: auto; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout2 .profile-info {
    margin-bottom: -40px; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout2 .profile-info h2 {
    color: #000 !important;
    font-size: 25px !important; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery {
    border-color: #e0e0e0;
    padding: 20px; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info-head {
    margin-right: 0; }
  .rtl .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info-head {
    margin-left: 0;
    margin-right: 0; }
  @media (min-width: 768px) {
                .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info-head .profile-img {
                  margin-bottom: 0; } }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info-head .profile-img img {
      border: 0;
      padding: 0; }
  @media (max-width: 767px) {
              .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info {
                padding: 0; } }
  @media (min-width: 768px) {
              .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info {
                width: calc(100% - 150px); } }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info h2.store-name {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    line-height: 1; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li {
    width: 100%; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li:before {
      display: none; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li i {
      color: #D3AD47;
      margin-top: 4px;
      font-size: 18px;
      width: 25px; }
    .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li.dokan-store-rating i, .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info ul.dokan-store-info li.dokan-store-open-close i {
      font-size: 15px; }
  .dokan-store .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout3 .profile-info-summery-wrapper .profile-info-summery .profile-info .store-social-wrapper .store-social {
    display: block; }
  .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline {
    border: 0;
    width: 100%;
    display: none;
    vertical-align: top;
    margin-bottom: 30px; }
  .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
    border-right: 1px solid #fff;
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding-right: 30px;
    float: left; }
  .rtl .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
    border-left: 1px solid #fff;
    border-right: 0; }
  .rtl .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
    padding-left: 30px;
    padding-right: 0; }
  .rtl .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li {
    float: right; }
  .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li:last-child {
    border-right: 0;
    padding-right: 0; }
  .rtl .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li:last-child {
    border-left: 0;
    border-right: 0; }
  .rtl .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li:last-child {
    padding-left: 0;
    padding-right: 0; }
  .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li a {
    padding: 0;
    color: #868686;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding: 0 35px;
    line-height: 40px;
    display: inline-block;
    background: #f4f4f4; }
  .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li.active a, .dokan-store .dokan-single-store .dokan-store-tabs ul.dokan-list-inline li:hover a {
    color: #fff;
    background: #D3AD47; }
  .dokan-store .dokan-single-store .dokan-store-products-filter-area .product-name-search {
    margin-right: 10px;
    padding: 5px 15px; }
  .rtl .dokan-store .dokan-single-store .dokan-store-products-filter-area .product-name-search {
    margin-left: 10px;
    margin-right: 0; }
  .dokan-store .dokan-single-store .dokan-store-products-filter-area .search-store-products {
    cursor: pointer;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .dokan-store .dokan-single-store .dokan-store-products-filter-area .orderby-search {
    float: right;
    width: 100%;
    max-width: 300px;
    padding: 5px 15px; }
  .dokan-store .dokan-store-sidebar i.fa {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .dokan-store .dokan-store-sidebar .dokan-store-menu ul li a {
    border: 0 !important; }
  .dokan-store .dokan-store-sidebar .dokan-store-menu .caret-icon {
    float: right; }
  .rtl .dokan-store .dokan-store-sidebar .dokan-store-menu .caret-icon {
    float: left; }
  .dokan-store .dokan-store-sidebar .dokan-store-menu .caret-icon i.fa {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .dokan-store .dokan-store-sidebar .dokan-store-menu .caret-icon i.fa:before {
    content: "\f105"; }
  .dokan-store .dokan-store-sidebar .dokan-store-menu .caret-icon i.fa.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg); }
  .dokan-store .dokan-store-sidebar .dokan-store-contact ul {
    padding: 0 !important; }
  .dokan-store .dokan-store-sidebar .dokan-store-contact ul li {
    margin-bottom: 20px;
    padding: 0; }
  .dokan-store .dokan-store-sidebar .dokan-store-contact ul li > label {
    display: none; }
  .dokan-store .dokan-store-sidebar .dokan-store-contact ul li:before {
    display: none !important; }
  .dokan-store .dokan-store-sidebar .dokan-store-contact .dokan-btn-theme {
    background: #D3AD47;
    border-color: #D3AD47;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px; }
  .dokan-store .dokan-store-sidebar .dokan-store-contact .dokan-btn-theme:hover {
    background: #026935; }
  @media (max-width: 991px) {
  .dokan-store .dokan-single-store.dokan-w8, .dokan-store .dokan-store-sidebar.dokan-w3 {
    width: 100%; }
  .dokan-store .dokan-store-sidebar.dokan-w3 {
    margin-bottom: 50px; } }

.dokan-pagination-container .dokan-pagination li a {
  margin-right: 5px !important; }
  .rtl .dokan-pagination-container .dokan-pagination li a {
    margin-left: 5px !important;
    margin-right: 0; }

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.sells-graph .chart-placeholder.main .legend table, .dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.sells-graph .chart-placeholder.main .legend > div {
  width: calc(100% - 50px); }
  .dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.big-counter li:last-child {
    border: 0; }
  .dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.big-counter li:last-child > .count {
    border: 0; }
  .dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.products {
    display: block; }
  .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar {
    background: #000; }
  .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu {
    background: #000; }
  .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.active, .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover {
    background: #D3AD47; }
  .dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a:hover {
    background: #D3AD47; }
  .dokan-dashboard .pagination-wrap ul.pagination > li > span.current, .dokan-dashboard .pagination-wrap ul.pagination > li > span:hover {
    background: #D3AD47;
    color: #fff; }
  .dokan-dashboard .pagination-wrap ul.pagination > li a:hover {
    background: #D3AD47;
    color: #fff; }

input[type="submit"].dokan-btn-theme, a.dokan-btn-theme, .dokan-btn-theme {
  background: #D3AD47 !important;
  border-color: #D3AD47 !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0 20px;
  line-height: 33px;
  font-weight: 700;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px; }
  input[type="submit"].dokan-btn-theme:hover, a.dokan-btn-theme:hover, .dokan-btn-theme:hover {
    background: #025029 !important; }

#dokan-store-listing-filter-wrap .dokan-btn-theme {
  background: #D3AD47;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700; }
  #dokan-store-listing-filter-wrap .dokan-btn-theme:hover {
    background: #025029; }
  #dokan-store-listing-filter-wrap .toggle-view > span:hover, #dokan-store-listing-filter-wrap .toggle-view > span.active {
    color: #D3AD47 !important; }

#dokan-seller-listing-wrap .store-footer a .dokan-btn-theme {
  background: transparent !important;
  font-size: 25px;
  font-family: ElegantIcons;
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 0;
  line-height: 38px;
  border: 1px solid #d7d7d7 !important;
  color: #000; }
  .rtl #dokan-seller-listing-wrap .store-footer a .dokan-btn-theme {
    margin-left: 0;
    margin-right: 0; }
  #dokan-seller-listing-wrap .store-footer a .dokan-btn-theme:before {
    content: "\35";
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0px;
    text-align: center; }
  .rtl #dokan-seller-listing-wrap .store-footer a .dokan-btn-theme:before {
    right: 0px;
    left: auto; }
  #dokan-seller-listing-wrap .store-footer a:hover .dokan-btn-theme {
    background: #D3AD47 !important;
    border-color: #D3AD47;
    color: #fff; }
  #dokan-seller-listing-wrap .store-footer .seller-avatar img {
    margin: 0; }
  #dokan-seller-listing-wrap .store-header .store-banner img {
    object-fit: cover; }
  #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data h2 a {
    color: #000 !important;
    font-size: 20px; }
  #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data h2 a:hover {
    color: #D3AD47 !important; }
  #dokan-seller-listing-wrap ul.dokan-seller-wrap li.no-banner-img .store-content .store-data p {
    color: #868686 !important; }
  #dokan-seller-listing-wrap ul.dokan-seller-wrap li .store-content .store-data h2 a {
    font-size: 20px !important; }
  #dokan-seller-listing-wrap ul.dokan-seller-wrap li .store-phone i {
    margin-right: 10px; }
  .rtl #dokan-seller-listing-wrap ul.dokan-seller-wrap li .store-phone i {
    margin-left: 10px;
    margin-right: 0; }
  #dokan-seller-listing-wrap.list-view .store-content .store-data h2 {
    margin-bottom: -3px !important; }
  #dokan-seller-listing-wrap.list-view .store_open_is_on {
    margin-top: 0; }
  #dokan-seller-listing-wrap.list-view .store-address {
    margin-bottom: 5px !important;
    display: block !important;
    margin-top: 0 !important; }
  #dokan-seller-listing-wrap.list-view .store-address:before {
    color: #D3AD47 !important; }
  #dokan-seller-listing-wrap.list-view .store-phone {
    margin-bottom: 0 !important;
    display: block !important; }
  #dokan-seller-listing-wrap.list-view .store-phone i {
    color: #D3AD47 !important; }
  #dokan-seller-listing-wrap.list-view .store-footer a .dokan-btn-theme {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important; }
/*! Wc Marketplace */
#wcmp-store-conatiner {
  overflow: visible;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  white-space: normal;
  color: #868686; }
  #wcmp-store-conatiner .wcmp-store-map-pagination {
    border-bottom: 0; }
  #wcmp-store-conatiner input[type="submit"] {
    background: #D3AD47;
    color: #fff;
    border: none; }
  #wcmp-store-conatiner input[type="submit"]:hover {
    background: #025029; }
  #wcmp-store-conatiner .wcmp-store-locator-wrap .wcmp-store-map-filter {
    background: #f5f5f5; }
  #wcmp-store-conatiner .wcmp-store-locator-wrap .wcmp-store-map-pagination {
    margin-top: 30px;
    border: 0;
    padding: 0; }
  #wcmp-store-conatiner .wcmp-store-list-wrap {
    margin-top: 30px !important;
    margin-bottom: -40px !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    display: flex;
    flex-wrap: wrap; }
  @media (max-width: 767px) {
    #wcmp-store-conatiner .wcmp-store-list-wrap {
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list {
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: calc(33.333333% - 30px);
    margin-bottom: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e0e0e0; }
  @media (min-width: 768px) and (max-width: 991px) {
      #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list {
        width: calc(50% - 30px); } }
  @media (max-width: 767px) {
      #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important; } }
  #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list .wcmp-store-picture:after {
    display: none; }
  #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list .wcmp-store-detail-list li {
    padding: 0px; }
  #wcmp-store-conatiner .wcmp-store-list-wrap .wcmp-store-list .wcmp-store-detail-list li i {
    display: none; }
  #wcmp-store-conatiner .wcmp-pagination li {
    min-width: 30px;
    line-height: 30px;
    background: transparent;
    margin: 0 10px; }
  #wcmp-store-conatiner .wcmp-pagination li a, #wcmp-store-conatiner .wcmp-pagination li span {
    background: #fff;
    display: table-cell;
    padding: 0;
    float: none;
    height: 30px;
    min-width: 30px;
    line-height: normal;
    text-align: center;
    padding: 0 7px;
    vertical-align: middle;
    color: #000;
    font-size: 14px;
    border: 1px solid #a3a3a3;
    -webkit-transition: none;
    transition: none; }
  #wcmp-store-conatiner .wcmp-pagination li a:focus, #wcmp-store-conatiner .wcmp-pagination li span:focus {
    background-color: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  #wcmp-store-conatiner .wcmp-pagination li a:hover, #wcmp-store-conatiner .wcmp-pagination li span:hover, #wcmp-store-conatiner .wcmp-pagination li a.current, #wcmp-store-conatiner .wcmp-pagination li span.current {
    background: #D3AD47 !important;
    color: #fff;
    border-color: #D3AD47; }

.wcmp_vendor_banner_template.template2 {
  border-color: rgba(163, 163, 163, 0.2) !important;
  margin-bottom: 60px; }
  .wcmp_vendor_banner_template.template2 .vendor_address {
    margin-top: 25px; }
  .wcmp_vendor_banner_template.template2 .vendor_address label {
    color: #a3a3a3; }
  .wcmp_vendor_banner_template.template2 .vendor_address i {
    color: #D3AD47; }
  .wcmp_vendor_banner_template.template2 .vendor_address a.wcmp_vendor_detail {
    color: #a3a3a3; }
  .wcmp_vendor_banner_template.template2 .vendor_address a.wcmp_vendor_detail:hover {
    color: #D3AD47; }
  .wcmp_vendor_banner_template.template2 .description_data {
    margin-top: 15px; }
  .wcmp_vendor_banner_template.template2 .description_data p {
    color: #868686; }
  .wcmp_vendor_banner_template.template2 .vendor_description {
    padding: 30px; }

@-webkit-keyframes rightSpring {
  0% {
    left: 0; }

  50% {
    left: -30px; }

  100% {
    left: 0; } }

@keyframes rightSpring {
  0% {
    left: 0; }

  50% {
    left: -30px; }

  100% {
    left: 0; } }

@-webkit-keyframes leftSpring {
  0% {
    left: 0; }

  50% {
    left: 30px; }

  100% {
    left: 0; } }

@keyframes leftSpring {
  0% {
    left: 0; }

  50% {
    left: 30px; }

  100% {
    left: 0; } }

.simplePopupBackground {
  display: none !important; }

.woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address {
    flex: 0 0 50%;
    max-width: 50%; }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address address {
    padding: 15px;
    border: 1px solid #f5f5f5;
    margin-bottom: 0; }
  @media (max-width: 991px) {
      .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px; } }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0 0;
    padding: 15px;
    background: #f5f5f5; }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600; }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
    color: #D3AD47; }
  .woocommerce-account.my-account .woocommerce-MyAccount-content .woocommerce-Address-title a:hover {
    color: #000; }

.woocommerce-page-header {
  margin-bottom: 80px; }
  .woocommerce-page-header ul {
    list-style: none;
    padding: 0;
    text-align: center;
    position: relative; }
  .woocommerce-page-header ul li {
    display: inline-block;
    margin: 0 20px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500; }
  .woocommerce-page-header ul li a {
    display: inline-block;
    position: relative;
    color: #868686;
    padding-bottom: 5px; }
  .woocommerce-page-header ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #000;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -1px; }
  .woocommerce-page-header ul li:hover a, .woocommerce-page-header ul li.active a {
    color: #000; }
  .woocommerce-page-header ul li:hover a:before, .woocommerce-page-header ul li.active a:before {
    width: 100%; }
  @media (max-width: 991px) {
    .woocommerce-page-header ul:before {
      width: 100vw; }

    .woocommerce-page-header ul li {
      font-size: 20px;
      margin: 0 15px; } }
  @media (max-width: 480px) {
    .woocommerce-page-header ul:before {
      display: none; }

    .woocommerce-page-header ul li {
      margin: 0 0 5px;
      display: block;
      font-size: 16px; }
      .woocommerce-page-header ul li a {
        background: #f5f5f5;
        width: 100%;
        padding: 5px 0 0; }
        .woocommerce-page-header ul li a:before {
          display: none; } }

.woocommerce-form-track-order {
  color: #000;
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif; }
  .woocommerce-form-track-order > p:first-child {
    margin-bottom: 60px; }
  .woocommerce-form-track-order .input-text {
    height: 50px;
    line-height: 50px;
    padding: 0 20px; }
  .woocommerce-form-track-order .form-row {
    margin: 20px 0; }
  .woocommerce-form-track-order label {
    font-weight: 700; }
  .woocommerce-form-track-order .button {
    width: 100%;
    font-size: 14px !important;
    line-height: 55px !important;
    text-transform: uppercase;
    font-weight: 500; }

.order-info {
  color: #868686;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif; }

.woocommerce-order-details {
  color: #868686;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif; }
  @media (max-width: 730px) {
  .woocommerce-order-details .shop_table.my_account_orders {
    display: block;
    overflow: auto; }
    .woocommerce-order-details .shop_table.my_account_orders th, .woocommerce-order-details .shop_table.my_account_orders td {
      padding: 15px;
      min-width: 150px; } }
  .woocommerce-order-details .dokan-info {
    background: #D3AD47;
    color: #fff;
    border-top-color: #000; }
  .woocommerce-order-details .dokan-info:before {
    background: #000; }

.woocommerce-customer-details {
  color: #868686;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif; }
  .woocommerce-customer-details .woocommerce-column.col-1 {
    margin-top: 40px; }
  .woocommerce-customer-details .woocommerce-columns {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
  .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    margin-top: 40px;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px; }
  @media (max-width: 767px) {
    .woocommerce-customer-details .woocommerce-columns {
      margin: 0; }
      .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0; } }
  .woocommerce-customer-details address {
    padding: 25px 30px 30px 30px;
    border: 2px dashed #e0e0e0; }
  .woocommerce-customer-details .woocommerce-column__title {
    font-size: 20px; }

.checkout-top {
  display: flex;
  margin: -40px -15px 70px;
  flex-wrap: wrap; }
  .checkout-top > div {
    padding: 0 15px;
    flex: 1; }
  @media (max-width: 991px) {
    .checkout-top > div {
      flex: 0 0 100%;
      margin: 15px 0; } }
  .checkout-top .woocommerce-info {
    font-size: 12px;
    margin: 0;
    color: #868686;
    text-align: center;
    background: #f2f2f2;
    padding: 18px 15px 21px;
    border: 0;
    text-transform: uppercase;
    font-weight: 600; }
  .checkout-top .woocommerce-info a {
    font-weight: 500; }
  .checkout-top .woocommerce-info:before {
    left: 0;
    line-height: 1;
    font-size: 21px;
    color: #000;
    position: relative;
    top: 3px;
    margin-right: 15px;
    content: "\e916";
    font-family: wpbingofont;
    font-weight: 400; }
  .rtl .checkout-top .woocommerce-info:before {
    right: 0;
    left: auto; }
  .rtl .checkout-top .woocommerce-info:before {
    margin-left: 15px;
    margin-right: 0; }
  .checkout-top .woocommerce-form-coupon-toggle .woocommerce-info:before {
    content: "\e91c";
    font-size: 35px;
    margin-top: -13px;
    position: relative;
    top: 10px; }
  .checkout-top .woocommerce-form {
    display: flex;
    margin: 0 -9px;
    flex-wrap: wrap; }
  .checkout-top .woocommerce-form .description {
    flex: 0 0 100%;
    padding: 0 9px; }
  .checkout-top .woocommerce-form .description p {
    color: #000;
    max-width: 580px;
    margin: 30px auto 35px;
    text-align: center; }
  .checkout-top .woocommerce-form .username, .checkout-top .woocommerce-form .password {
    flex: 1;
    padding: 0 9px; }
  @media (max-width: 767px) {
      .checkout-top .woocommerce-form .username, .checkout-top .woocommerce-form .password {
        flex: 0 0 100%;
        margin-top: 15px; } }
  .checkout-top .woocommerce-form .rememberme-lost, .checkout-top .woocommerce-form .button-login {
    flex: 0 0 100%;
    padding: 0 9px; }
  .checkout-top .woocommerce-form .input-text {
    width: 100%;
    height: 55px;
    line-height: 53px;
    padding: 0 20px; }
  .checkout-top .woocommerce-form .rememberme {
    color: #000;
    text-align: right;
    margin-top: 20px; }
  .rtl .checkout-top .woocommerce-form .rememberme {
    text-align: left; }
  .checkout-top .woocommerce-form .button {
    width: 100%;
    font-size: 12px;
    margin-top: 5px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 600; }
  .checkout-top .checkout_coupon .description {
    max-width: 200px;
    color: #000;
    margin: 30px auto 35px;
    text-align: center; }
  .checkout-top .checkout_coupon .input-button {
    display: flex;
    flex-wrap: wrap; }
  .checkout-top .checkout_coupon .input-button .input-text {
    flex: 1;
    height: 55px;
    line-height: 53px;
    padding: 0 20px; }
  .checkout-top .checkout_coupon .input-button .button {
    margin-left: 5px;
    font-size: 12px;
    line-height: 55px;
    padding: 0 70px;
    text-transform: uppercase;
    font-weight: 500; }
  .rtl .checkout-top .checkout_coupon .input-button .button {
    margin-right: 5px;
    margin-left: 0; }
  @media (max-width: 767px) {
      .checkout-top .checkout_coupon .input-button .input-text {
        flex: 0 0 100%; }
      .checkout-top .checkout_coupon .input-button .button {
        width: 100%;
        margin-left: 0;
        margin-top: 15px; }
        .rtl .checkout-top .checkout_coupon .input-button .button {
          margin-right: 0;
          margin-left: 0; } }

.checkout-page-style-1 .page-title {
  display: none; }
  .checkout-page-style-1 .woocommerce-page-header {
    margin-top: 50px; }

.checkout-page-style-2 .bwp-header {
  border: 0 !important;
  position: absolute;
  left: 0;
  width: 100%; }
  .checkout-page-style-2 .bwp-header .header-wrapper {
    padding: 50px 0; }
  .checkout-page-style-2 .bwp-header .header-wrapper .container {
    max-width: 1440px; }
  .checkout-page-style-2 .bwp-header .header-desktop {
    border: 0 !important; }
  .checkout-page-style-2 .bwp-header #bwp-topbar, .checkout-page-style-2 .bwp-header .wpbingo-menu-mobile, .checkout-page-style-2 .bwp-header .header-page-link {
    display: none; }
  .checkout-page-style-2 .page-title, .checkout-page-style-2 .woocommerce-page-header, .checkout-page-style-2 .bwp-footer {
    display: none; }
  .checkout-page-style-2 .checkout-top {
    margin: 0 0 40px;
    padding: 0 15px !important; }
  .checkout-page-style-2 .checkout-top > div {
    padding: 0 15px; }
  @media (max-width: 1199px) {
      .checkout-page-style-2 .checkout-top > div {
        flex: 0 0 100%;
        margin: 10px 0; } }
  .checkout-page-style-2 .checkout-top .woocommerce-info {
    padding: 0;
    background: transparent;
    text-align: left; }
  .rtl .checkout-page-style-2 .checkout-top .woocommerce-info {
    text-align: right; }
  @media (max-width: 991px) {
    .checkout-page-style-2 .checkout-top {
      padding: 0 !important; } }
  .checkout-page-style-2 .woocommerce-checkout .row {
    margin: 0; }
  .checkout-page-style-2 .woocommerce-checkout .row > div {
    padding: 0;
    padding-top: 200px; }
  .checkout-page-style-2 #bwp-main .container {
    max-width: 100%;
    padding: 0; }
  .checkout-page-style-2 #bwp-main .container > .row {
    margin: 0; }
  .checkout-page-style-2 #bwp-main .container > .row > .col-lg-12 {
    padding: 0; }
  .checkout-page-style-2 .woocommerce-checkout .col-xl-8 {
    flex: 0 0 63.5%;
    max-width: 63.5%; }
  .checkout-page-style-2 .woocommerce-checkout .col-xl-8 > div {
    max-width: 990px;
    padding: 0 30px;
    margin-left: auto; }
  .rtl .checkout-page-style-2 .woocommerce-checkout .col-xl-8 > div {
    margin-right: auto;
    margin-left: 0; }
  .checkout-page-style-2 .woocommerce-checkout .col-xl-4 {
    flex: 0 0 36.5%;
    max-width: 36.5%;
    background: #f0f0f0; }
  .checkout-page-style-2 .woocommerce-checkout .col-xl-4 > div {
    max-width: 450px;
    margin-right: auto; }
  .rtl .checkout-page-style-2 .woocommerce-checkout .col-xl-4 > div {
    margin-left: auto;
    margin-right: 0; }
  .checkout-page-style-2 .woocommerce-checkout .checkout-review-order-table-wrapper {
    padding: 0 0 0 90px;
    border: 0; }
  .rtl .checkout-page-style-2 .woocommerce-checkout .checkout-review-order-table-wrapper {
    padding: 0 90px 0 0; }
  @media (max-width: 1199px) {
      .checkout-page-style-2 .woocommerce-checkout .checkout-review-order-table-wrapper {
        padding: 0 30px; } }
  @media (max-width: 991px) {
      .checkout-page-style-2 .woocommerce-checkout .checkout-review-order-table-wrapper {
        padding: 0 15px 50px; } }
  .checkout-page-style-2 .woocommerce-checkout .payment_methods {
    border: 0;
    background: #fff; }
  @media (max-width: 991px) {
    .checkout-page-style-2 .woocommerce-checkout .col-xl-8 {
      flex: 0 0 100%;
      max-width: 100%; }
      .checkout-page-style-2 .woocommerce-checkout .col-xl-8 > div {
        max-width: 990px;
        padding: 0 15px; }

    .checkout-page-style-2 .woocommerce-checkout .col-xl-4 {
      flex: 0 0 100%;
      max-width: 100%;
      background: #f0f0f0; }
      .checkout-page-style-2 .woocommerce-checkout .col-xl-4 > div {
        max-width: 100%;
        margin-right: auto; }
        .rtl .checkout-page-style-2 .woocommerce-checkout .col-xl-4 > div {
          margin-left: auto;
          margin-right: 0; } }
  .checkout-page-style-2 #customer_details > div {
    padding: 0;
    position: relative; }
  .checkout-page-style-2 #customer_details .back-to-cart {
    font-weight: 700;
    position: absolute;
    top: 2px;
    right: 0; }
  .rtl .checkout-page-style-2 #customer_details .back-to-cart {
    left: 0;
    right: auto; }
  .checkout-page-style-2 #customer_details .back-to-cart span {
    margin-left: 5px;
    font-size: 20px;
    position: relative;
    top: 4px; }
  .rtl .checkout-page-style-2 #customer_details .back-to-cart span {
    margin-right: 5px;
    margin-left: 0; }

@media (min-width: 1530px) {
          body.single-product.clean .bwp-header.header-v1 .header-desktop, body.single-product.clean .bwp-header.header-v2 .header-desktop, body.single-product.clean .bwp-header.header-v4 .header-desktop, body.single-product.clean .bwp-header.header-v7 .header-desktop {
            position: absolute;
            width: 100%; } }
  @media (min-width: 1199px) {
    body.single-product.clean .main-single-product {
      margin: 0; }
      body.single-product.clean .main-single-product .woocommerce-notices-wrapper {
        position: absolute;
        top: 100px;
        max-width: 100%;
        z-index: 10; }
        body.single-product.clean .main-single-product .woocommerce-notices-wrapper > div {
          max-width: 1410px;
          margin: auto; } }
  body.single-product.moderm .bwp-header.header-v1 .header-desktop, body.single-product.moderm .bwp-header.header-v2 .header-desktop, body.single-product.moderm .bwp-header.header-v4 .header-desktop, body.single-product.moderm .bwp-header.header-v7 .header-desktop {
    position: absolute;
    width: 100%; }
  body.single-product.moderm .main-single-product {
    margin: 0; }
  @media (min-width: 991px) {
      body.single-product.moderm .main-single-product .woocommerce-notices-wrapper {
        position: absolute;
        top: 100px;
        max-width: 100%;
        z-index: 10; }
        body.single-product.moderm .main-single-product .woocommerce-notices-wrapper > div {
          max-width: 1410px;
          margin: auto; } }
  body.single-product.full_width .bwp-header.header-v1 .header-desktop, body.single-product.full_width .bwp-header.header-v2 .header-desktop, body.single-product.full_width .bwp-header.header-v4 .header-desktop, body.single-product.full_width .bwp-header.header-v7 .header-desktop {
    position: absolute;
    width: 100%; }
  body.single-product.full_width .main-single-product {
    margin: 0; }
  @media (min-width: 991px) {
      body.single-product.full_width .main-single-product .woocommerce-notices-wrapper {
        position: absolute;
        top: 100px;
        max-width: 100%;
        z-index: 10; }
        body.single-product.full_width .main-single-product .woocommerce-notices-wrapper > div {
          max-width: 1410px;
          margin: auto; } }
  body.single-product.single-background .bwp-header.header-v1 .header-desktop, body.single-product.single-background .bwp-header.header-v2 .header-desktop, body.single-product.single-background .bwp-header.header-v4 .header-desktop, body.single-product.single-background .bwp-header.header-v7 .header-desktop {
    position: absolute;
    width: 100%; }
  body.single-product.single-background .main-single-product {
    margin: 0; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-header.header-v1 .header-desktop, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-header.header-v2 .header-desktop, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-header.header-v4 .header-desktop, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-header.header-v7 .header-desktop {
    border-color: rgba(255, 255, 255, 0.15); }
  @media (min-width: 991px) {
        body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-header .wpbingoLogo img {
          filter: contrast(0) brightness(200%); } }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0 > a {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0 > a > span:before {
    background: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current_page_item > a, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0:hover > a, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current-menu-item > a, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current-menu-ancestor > a {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current_page_item > a > span:before, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0:hover > a > span:before, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current-menu-item > a > span:before, body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .bwp-navigation ul > li.level-0.current-menu-ancestor > a > span:before {
    width: 100%; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .search-box .search-toggle {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .search-box .search-toggle:hover {
    color: #D3AD47; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .login-header > a {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .login-header > a:hover {
    color: #D3AD47; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .login-header .block-top-link .widget-title {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .login-header .block-top-link .widget-title:hover {
    color: #D3AD47; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .wishlist-box a {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .wishlist-box a:hover {
    color: #D3AD47; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .mini-cart .cart-icon .icons-cart {
    color: #fff; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .mini-cart .cart-icon .icons-cart:hover {
    color: #D3AD47; }
  body.single-product.single-background self.dark:not(.full_width,.moderm,.clean) .header-page-link .mini-cart .cart-icon .cart-count {
    background: #fff;
    color: #000; }
  body.single-product.sticky {
    padding: 0; }

body.woocommerce-cart .bwp-header, body.order-tracking .bwp-header {
  margin-bottom: 70px; }
  body.woocommerce-cart .page-title, body.order-tracking .page-title {
    display: none; }
/*------------------------------ Shop page --------------------------*/
.content-categories-top > ul.content-categories {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0; }
  .content-categories-top > ul.content-categories li.items {
    padding: 0 15px;
    width: 25%;
    margin-bottom: 15px; }
  @media (max-width: 1199px) {
      .content-categories-top > ul.content-categories li.items {
        width: 33.33%; } }
  @media (max-width: 991px) {
      .content-categories-top > ul.content-categories li.items {
        width: 50%; } }
  @media (max-width: 480px) {
      .content-categories-top > ul.content-categories li.items {
        width: 100%; } }
  .content-categories-top .item-product-cat-content {
    overflow: hidden;
    padding: 30px;
    margin-bottom: 15px; }
  .content-categories-top .item-product-cat-content:hover .item-image img {
    -webkit-animation-name: shakes;
    animation-name: shakes;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
  .content-categories-top .item-image {
    text-align: center; }
  .content-categories-top .item-image img {
    margin: auto;
    max-height: 190px;
    object-fit: cover; }
  .content-categories-top .item-title {
    margin: 0 0 15px;
    font-size: 20px;
    font-family: 'Audiowide', cursive;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
    padding-bottom: 10px; }
  .content-categories-top .item-title:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #D3AD47;
    bottom: 0; }
  .content-categories-top ul.item-children {
    padding: 0;
    list-style: none;
    font-size: 14px;
    margin-bottom: 17px; }
  .content-categories-top ul.item-children li {
    padding: 3px 0; }
  .content-categories-top ul.item-children i {
    font-size: 8px;
    color: #D3AD47;
    position: relative;
    top: -2px;
    margin-right: 7px; }
  .rtl .content-categories-top ul.item-children i {
    margin-left: 7px;
    margin-right: 0; }
  .content-categories-top ul.item-children a:hover {
    color: #D3AD47; }
  .content-categories-top .item-btn a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    padding: 0 10px;
    background: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0; }
  .content-categories-top .item-btn a:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  @media (max-width: 991px) {
  .content-categories-top .item-title {
    font-size: 15px; } }
  .content-categories-top.style_2 li.items {
    max-width: 25%;
    flex: 0 0 25%; }
  .content-categories-top.style_2 .item-product-cat-content {
    padding: 25px;
    background: #f4f4f4; }
  .content-categories-top.style_2 .item-image {
    margin-bottom: 10px; }
  .content-categories-top.style_2 .item-image img {
    filter: brightness(0.96); }
  @media (max-width: 1199px) {
    .content-categories-top.style_2 li.items {
      max-width: 33.33333%;
      flex: 0 0 33.33333%; } }
  @media (max-width: 767px) {
    .content-categories-top.style_2 li.items {
      max-width: 100%;
      flex: 0 0 100%; } }
  .content-categories-top.style_1 li.items {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
    margin-bottom: 30px; }
  .content-categories-top.style_1 .item-product-cat-content {
    padding: 20px 10px;
    display: flex;
    border: 1px solid #e0e0e0;
    background: #fff;
    height: 100%;
    margin-bottom: 0; }
  .content-categories-top.style_1 .item-product-cat-content .content {
    padding: 0 15px; }
  .content-categories-top.style_1 .item-image {
    flex: 0 0 42.5%;
    width: 42.5%; }
  @media (max-width: 1199px) {
    .content-categories-top.style_1 li.items {
      max-width: 50%;
      flex: 0 0 50%; } }
  @media (max-width: 767px) {
    .content-categories-top.style_1 li.items {
      max-width: 100%;
      flex: 0 0 100%; } }

.bestseller-product, .featured-product {
  position: relative; }
  .bestseller-product .title-bestseller, .featured-product .title-bestseller {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px; }
  .bestseller-product .title-bestseller h2, .featured-product .title-bestseller h2 {
    margin: 0;
    font-size: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px; }
  .bestseller-product .title-bestseller h2:before, .featured-product .title-bestseller h2:before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -2px;
    width: 50px;
    background: #D3AD47; }
  .bestseller-product .slick-track, .featured-product .slick-track {
    padding: 15px 0; }
  .bestseller-product .slick-arrow, .featured-product .slick-arrow {
    opacity: 1;
    visibility: visible;
    width: 21px;
    height: 21px;
    border: 1px solid #000;
    color: #000;
    font-size: 8px;
    line-height: 18px;
    font-weight: 600;
    top: 5px;
    background: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0; }
  .bestseller-product .slick-arrow:hover, .featured-product .slick-arrow:hover {
    background: #D3AD47;
    color: #fff;
    border-color: #D3AD47; }
  .bestseller-product .slick-arrow.fa-angle-left, .featured-product .slick-arrow.fa-angle-left {
    right: 26px;
    left: auto; }
  .bestseller-product .slick-arrow.fa-angle-right, .featured-product .slick-arrow.fa-angle-right {
    right: 0; }

.banner-shop {
  margin-bottom: 30px;
  position: relative; }
  .banner-shop img {
    min-height: 350px;
    object-fit: cover; }
  .banner-shop .content-info {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 15px; }
  .banner-shop .title {
    color: #000;
    text-transform: uppercase;
    font-size: 35px;
    font-family: 'Audiowide', cursive;
    line-height: 40px;
    margin: 0 0 10px; }
  .banner-shop .description {
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 0 15px; }
  .banner-shop .button {
    display: inline-block;
    background: #00b8ff;
    line-height: 35px;
    padding: 0 25px;
    color: #fff;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase; }
  .banner-shop .button:hover {
    background: #D3AD47; }
  @media (max-width: 480px) {
  .banner-shop .title {
    font-size: 25px;
    line-height: 30px; } }

.wishlist_table .product-add-to-cart a {
  background: #D3AD47;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 5px 10px;
  display: inline-block !important;
  color: #fff; }
  .wishlist_table .product-name a {
    font-size: 14px; }
  .wishlist_table .product-name a:hover {
    color: #D3AD47; }

.buy-together-products {
  padding: 0 15px; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product {
    width: 20%;
    flex: 0 0 20%;
    padding: 0 15px;
    position: relative; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product .thumbnail-wrap {
    padding: 0; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product .item-product-title {
    min-height: auto;
    margin: 20px 0 5px;
    line-height: 18px; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product .item-product-info .buy-together-price {
    font-size: 18px;
    color: #D3AD47;
    font-weight: 500; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product .item-product-info .buy-together-price del {
    color: #868686; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product .item-product-info .buy-together-price ins {
    text-decoration: none;
    color: #D3AD47; }
  .buy-together-products .item-products-wrap:not(.wpb-check) .item-product.buy-together-hidden {
    display: block;
    opacity: 0.3; }
  @media (max-width: 1199px) {
      .buy-together-products .item-products-wrap:not(.wpb-check) .item-product {
        width: 33.33%;
        flex: 0 0 33.33%; } }
  @media (max-width: 767px) {
      .buy-together-products .item-products-wrap:not(.wpb-check) .item-product {
        width: 50%;
        flex: 0 0 50%; } }
  .buy-together-products .item-products-wrap.wpb-check .item-product-title {
    font-size: 13px; }
  .buy-together-products .item-products-wrap.wpb-check:not(.buy-together-main-item) {
    cursor: pointer; }
  .buy-together-products .item-products-wrap.wpb-check .buy-together-price {
    font-size: 13px;
    color: #D3AD47;
    font-weight: 500; }
  .buy-together-products .item-products-wrap.wpb-check .buy-together-price del {
    color: #868686;
    font-size: 11px; }
  .buy-together-products .item-products-wrap.wpb-check .buy-together-price ins {
    text-decoration: none;
    color: #D3AD47; }
  .buy-together-products .item-products-wrap.wpb-check .buy-together-hidden {
    display: block;
    opacity: 0.7; }
  .buy-together-products .item-products-wrap.wpb-check .item-product {
    margin-bottom: 0; }
  .buy-together-products .buy-together-right-part {
    padding: 0 15px;
    width: 20%;
    flex: 0 0 20%;
    margin-bottom: 50px; }
  .buy-together-products .buy-together-right-part .total-price-html {
    color: #D3AD47;
    font-size: 32px;
    font-weight: 500;
    margin-right: 10px; }
  .rtl .buy-together-products .buy-together-right-part .total-price-html {
    margin-left: 10px;
    margin-right: 0; }
  .buy-together-products .buy-together-right-part .total-price-wrap {
    margin-bottom: 5px; }
  .buy-together-products .buy-together-right-part .total-price-wrap .for-items-text {
    font-size: 12px; }
  .buy-together-products .buy-together-right-part .buy-together-add-all-to-cart-btn-wrap .buy-together-add-all-to-cart {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    padding: 0 30px;
    line-height: 40px; }
  .buy-together-products .buy-together-right-part .buy-together-add-all-to-cart-btn-wrap .buy-together-add-all-to-cart:before {
    display: none; }
  .buy-together-products .buy-together-right-part .buy-together-add-all-to-cart-btn-wrap .btn-primary:not(:disabled):not(.disabled):active, .buy-together-products .buy-together-right-part .buy-together-add-all-to-cart-btn-wrap .btn-primary:not(:disabled):not(.disabled).active, .buy-together-products .buy-together-right-part .buy-together-add-all-to-cart-btn-wrap .show > .btn-primary.dropdown-toggle {
    background: #000;
    border-color: #000; }
  @media (max-width: 1199px) {
    .buy-together-products .buy-together-right-part {
      width: 33.33%;
      flex: 0 0 33.33%; } }
  @media (max-width: 767px) {
    .buy-together-products .buy-together-right-part {
      width: 100%;
      flex: 0 0 100%; } }

body.show-background-yes #main {
  background: #f4f4f4;
  margin-top: -50px;
  padding-top: 50px;
  margin-bottom: -60px;
  padding-bottom: 60px; }
  body.show-background-yes .bwp-top-bar.top .content-topbar-bottom {
    border: 1px solid #e0e0e0; }
  body.show-background-yes .content-categories-top.style_2 .item-product-cat-content {
    background: #fff; }

.tooltip {
  z-index: 9; }
  .tooltip .tooltip-inner {
    margin: 0;
    padding: 0 10px !important;
    line-height: 22px;
    color: #fff;
    font-size: 10px;
    background: #000;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    position: absolute;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap; }
  .tooltip .tooltip-inner:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #000;
    bottom: -2px;
    left: 50%;
    margin-left: -6px;
    z-index: -1; }
/*------------- photoswipe -------------------*/
.pswp {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none; }
  .pswp.pswp--open {
    display: block; }
  .pswp.pswp--open .pswp__top-bar {
    position: relative;
    z-index: 9; }
  .pswp.pswp--open .pswp__top-bar .pswp__counter {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    float: left;
    height: 44px;
    line-height: 44px;
    padding-left: 15px; }
  .rtl .pswp.pswp--open .pswp__top-bar .pswp__counter {
    float: right; }
  .rtl .pswp.pswp--open .pswp__top-bar .pswp__counter {
    padding-right: 15px;
    padding-left: 0; }
  .pswp.pswp--open .pswp__top-bar .pswp__button {
    float: right;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    cursor: pointer; }
  .rtl .pswp.pswp--open .pswp__top-bar .pswp__button {
    float: left; }
  .pswp.pswp--open .pswp__top-bar .pswp__button.pswp__button--close {
    background-position: 0 -44px; }
  .pswp.pswp--open .pswp__top-bar .pswp__button.pswp__button--share {
    background-position: -44px -44px;
    display: none; }
  .pswp.pswp--open .pswp__top-bar .pswp__button.pswp__button--zoom {
    background-position: -88px 0; }
  .pswp.pswp--open .pswp__button--arrow--left {
    position: absolute;
    top: 50%;
    font-family: wpbingofont;
    border: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    left: 50px; }
  .pswp.pswp--open .pswp__button--arrow--left:before {
    content: "\e91a"; }
  .pswp.pswp--open .pswp__button--arrow--right {
    position: absolute;
    top: 50%;
    font-family: wpbingofont;
    border: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    right: 50px;
    cursor: pointer; }
  .pswp.pswp--open .pswp__button--arrow--right:before {
    content: "\e91b"; }
  @media (max-width: 767px) {
    .pswp.pswp--open .pswp__button--arrow--left {
      color: #D3AD47;
      left: 15px; }

    .pswp.pswp--open .pswp__button--arrow--right {
      color: #D3AD47;
      right: 15px; } }
/* Woocommerce Product Detail --------------------------------------*/
.margin-22 {
  margin-bottom: 22px !important; }
/* Price */
.price {
  line-height: 24px;
  font-size: 18px;
  color: #D3AD47;
  font-weight: 500; }
  .price ins {
    text-decoration: none;
    color: #ff4545; }
  .price del span {
    text-decoration: line-through; }
  @media (max-width: 480px) {
  .price {
    font-size: 15px; } }
/* Product name */
.product-name a {
  font-size: 16px;
  line-height: 14px;
  font-weight: 400;
  color: #868686; }

.contents-detail .images .woocommerce-main-image img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none; }
  .contents-detail .images .woocommerce-main-image .owl-buttons .carousel-control {
    background: #fff; }
/* Product item container */
.products {
  display: flex;
  flex-wrap: wrap;
  /*  Product List ------------------------------------*/ }
  .products .product-list {
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    background: #fff; }
  .products .product-list img {
    height: auto; }
  .products .product-list .button-groups {
    text-align: right; }
  .rtl .products .product-list .button-groups {
    text-align: left; }
  .products .product-list .button-groups > div, .products .product-list .button-groups a {
    margin-top: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
    display: block;
    border: none; }
  .products .product-list .button-groups a {
    width: auto;
    height: auto;
    text-transform: capitalize; }
  .products .product-list .button-groups a:focus, .products .product-list .button-groups a:active, .products .product-list .button-groups a:hover {
    background: transparent !important;
    color: #D3AD47; }
  .products .product-list .button-groups .button {
    display: block;
    text-transform: uppercase; }
  .products .product-list .button-groups .fa, .products .product-list .button-groups .icon {
    margin-right: 6px !important;
    font-size: 14px; }
  .products .product-list .rating {
    margin-bottom: 10px; }
  .products .product-list .rating:before, .products .product-list .rating:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .products .product-list .rating:after {
    clear: both; }
  .products .product-list .rating .star-rating {
    float: right; }
  .rtl .products .product-list .rating .star-rating {
    float: left; }
  .products .product-list .price {
    margin-bottom: 10px;
    text-align: right; }
  .rtl .products .product-list .price {
    text-align: left; }
  .products .product-list .price ins {
    text-align: right; }
  .rtl .products .product-list .price ins {
    text-align: left; }
  .products .product-list .price > * {
    width: inherit; }
  .products .product-list .description {
    text-align: justify; }
  .products .product-list .product-assets {
    margin: 20px 20px 0 0;
    text-align: right; }
  .products .product-list .product-assets .name {
    display: none; }
  .rtl .products .product-list .product-assets {
    margin: 20px 0 0 20px; }
  .products .product-list .product-assets a {
    background: none !important;
    text-align: right;
    color: #868686;
    font-size: 1rem;
    font-weight: 300; }
  .products .product-list .product-assets a:hover, .products .product-list .product-assets a:focus, .products .product-list .product-assets a:active {
    background: none !important;
    color: #D3AD47; }
  .products .product-list .product-assets .btn-cart, .products .product-list .product-assets .btn-cart a {
    background: none; }
  .products .product-list .product-assets .btn-cart:after, .products .product-list .product-assets .btn-cart a:after, .products .product-list .product-assets .btn-cart:before, .products .product-list .product-assets .btn-cart a:before {
    content: none !important; }
/* Product Info ---------------------------------------------*/
.product-info {
  padding-bottom: 30px; }
  .product-info .product-title {
    font-size: 30px;
    line-height: 1.11111;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-transform: uppercase; }
  .product-info .woocommerce-main-image {
    margin-bottom: 5px;
    width: 100%;
    display: block;
    border: 1px solid #e0e0e0; }
  .product-info .summary {
    font-size: 16px; }
  .product-info .summary .product_meta {
    clear: both;
    color: #000;
    margin-top: 0;
    padding: 10px 0 5px; }
  .product-info .summary .product_meta a {
    color: #a0a0a0; }
  .product-info .summary .product_meta a:hover {
    color: #D3AD47;
    text-decoration: none; }
  .product-info .summary .product_meta > div {
    margin-bottom: 10px; }
  .product-info .single-product-description {
    margin-bottom: 22px; }
  .product-info .out-of-stock {
    display: none; }
  .product-info .label {
    color: #000;
    display: table-cell;
    padding: 0;
    vertical-align: middle;
    font-size: 1rem;
    text-align: right; }
  .rtl .product-info .label {
    text-align: left; }
  .product-info .addthis {
    clear: left;
    overflow: hidden;
    padding: 20px 0;
    min-height: 60px;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px; }
  .rtl .product-info .addthis {
    clear: right; }
  .product-info .rating {
    margin-bottom: 20px; }
  .product-info .rating:before, .product-info .rating:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .product-info .rating:after {
    clear: both; }
  .product-info .rating > * {
    float: left; }
  .rtl .product-info .rating > * {
    float: right; }
  .product-info .rating .star-rating {
    margin-top: 10px;
    margin-right: 10px; }
  .rtl .product-info .rating .star-rating {
    margin-left: 10px;
    margin-right: 0; }
  .product-info .cart {
    float: left; }
  .rtl .product-info .cart {
    float: right; }
  .product-info .cart > div {
    float: left; }
  .rtl .product-info .cart > div {
    float: right; }
  .product-info .cart .cart-number {
    padding: 0 0 20px 0; }
  .product-info .cart .cart-number:before, .product-info .cart .cart-number:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .product-info .cart .cart-number:after {
    clear: both; }
  .product-info .cart .cart-number > * {
    float: left; }
  .rtl .product-info .cart .cart-number > * {
    float: right; }
  .product-info .cart .qty {
    width: 60px;
    padding: 0;
    text-align: center;
    color: #000;
    font-weight: 400; }
  .product-info .cart .button {
    margin-bottom: 10px; }
  .product-info .cart .add-cart {
    margin-left: 10px; }
  .product-info .cart > a.add_to_cart_button, .product-info .cart .add-cart button {
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-transform: uppercase;
    font-size: 11px;
    position: relative;
    height: 38px;
    line-height: 36px;
    padding: 0 35px;
    display: block;
    font-weight: 600;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 1px solid #000;
    background: #000;
    color: #fff; }
  .product-info .cart > a.add_to_cart_button:active, .product-info .cart .add-cart button:active, .product-info .cart > a.add_to_cart_button:focus, .product-info .cart .add-cart button:focus, .product-info .cart > a.add_to_cart_button:hover, .product-info .cart .add-cart button:hover {
    border-color: #D3AD47;
    background: #D3AD47;
    color: #fff;
    text-decoration: none; }
  .product-info .cart > a.single_add_to_cart_button {
    float: left;
    display: inline-block; }
  .rtl .product-info .cart > a.single_add_to_cart_button {
    float: right; }
  .product-info .table-product-group {
    width: 100%;
    clear: both; }
  .product-info .table-product-group td {
    vertical-align: middle; }
  .product-info .table-product-group .add_cart {
    margin-left: 0; }
  .product-info .table-product-group .price {
    padding: 5px; }
  .product-info .table-product-group .cart-number {
    padding: 0; }
  .product-info .table-product-group .label label {
    font-weight: 300; }
  .product-info .table-product-group .price {
    display: inline-block !important;
    border: none;
    line-height: 50px; }
  .product-info .table-product-group .price del {
    float: right;
    margin-top: 5px; }
  .product-info .table-product-group .price ins {
    float: left;
    margin-right: 5px; }
  .product-info .button-action {
    color: #aaa;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    position: relative;
    height: 38px;
    line-height: 36px;
    padding: 0 35px;
    display: inline-block;
    font-weight: 600;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 1px solid #e0e0e0; }
  .product-info .button-action:focus, .product-info .button-action:hover {
    border-color: #D3AD47;
    background: #D3AD47;
    color: #fff;
    text-decoration: none; }
  .product-info .clear {
    display: none; }
  .product-info .price {
    display: table;
    color: #000;
    font-weight: 900;
    font-size: 30px;
    padding: 5px 0 10px;
    line-height: 30px; }
  .product-info .price > * {
    display: table-cell;
    vertical-align: middle; }
  .product-info .price del {
    padding-top: 10px;
    line-height: 20px; }
  .product-info .price del span {
    color: #000;
    margin-right: 10px; }
  .rtl .product-info .price del span {
    margin-left: 10px;
    margin-right: 0; }
  .product-info .onsale {
    left: 32px; }
  .rtl .product-info .onsale {
    right: 32px;
    left: auto; }
/* Product Category and Subcategories ------------------------*/
.product-category .product-category-content {
  position: relative;
  overflow: hidden;
  min-height: 45px;
  margin: 0 0 30px 0; }
  .product-category .product-category-image {
    display: block; }
  .product-category .product-category-image img {
    display: block;
    max-width: 100%;
    height: auto; }
  .product-category .product-category-title {
    text-transform: none;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    margin: 0;
    padding: 15px 10px;
    background: rgba(0, 0, 0, .3); }
  .rtl .product-category .product-category-title {
    right: 0;
    left: auto; }
  .product-category .product-category-title .count {
    background: transparent;
    color: #fff; }
/*  Bingo Product List---------------------------------------------*/
.woo-default-2 .title-block, .woo-slider-default .title-block {
  margin-bottom: 42px; }
  .woo-default-2 .title-block h2, .woo-slider-default .title-block h2 {
    display: inline-block;
    font-size: 25px;
    color: #000;
    margin: 0; }
  .woo-default-2 .products-list.grid, .woo-slider-default .products-list.grid {
    margin: -10px; }
  .woo-default-2 .products-list.grid .slick-list, .woo-slider-default .products-list.grid .slick-list {
    padding: 10px; }
  .woo-default-2 .products-list.grid .product-wapper, .woo-slider-default .products-list.grid .product-wapper {
    display: flex;
    margin-bottom: 20px;
    padding: 10px; }
  @media (max-width: 991px) and (min-width: 768px) {
      .woo-default-2 .products-list.grid .product-wapper, .woo-slider-default .products-list.grid .product-wapper {
        display: block; } }
  .woo-default-2 .products-list.grid .product-wapper .products-thumb, .woo-slider-default .products-list.grid .product-wapper .products-thumb {
    margin: 0;
    max-width: 120px;
    flex: 0 0 50%; }
  @media (max-width: 1199px) and (min-width: 992px) {
        .woo-default-2 .products-list.grid .product-wapper .products-thumb, .woo-slider-default .products-list.grid .product-wapper .products-thumb {
          max-width: 90px; } }
  @media (min-width: 768px) and (max-width: 991px) {
        .woo-default-2 .products-list.grid .product-wapper .products-thumb, .woo-slider-default .products-list.grid .product-wapper .products-thumb {
          max-width: 200px;
          flex: 0 0 30%; } }
  @media (min-width: 1550px) {
        .woo-default-2 .products-list.grid .product-wapper .products-thumb, .woo-slider-default .products-list.grid .product-wapper .products-thumb {
          max-width: 170px; } }
  .woo-default-2 .products-list.grid .product-wapper .products-thumb .product-thumb-hover, .woo-slider-default .products-list.grid .product-wapper .products-thumb .product-thumb-hover {
    overflow: hidden; }
  .woo-default-2 .products-list.grid .product-wapper .products-content, .woo-slider-default .products-list.grid .product-wapper .products-content {
    padding-top: 15px;
    text-align: left;
    padding-left: 30px;
    padding-bottom: 0; }
  .rtl .woo-default-2 .products-list.grid .product-wapper .products-content, .rtl .woo-slider-default .products-list.grid .product-wapper .products-content {
    text-align: right; }
  .rtl .woo-default-2 .products-list.grid .product-wapper .products-content, .rtl .woo-slider-default .products-list.grid .product-wapper .products-content {
    padding-right: 30px;
    padding-left: 0; }
  @media (max-width: 1199px) and (min-width: 992px) {
        .woo-default-2 .products-list.grid .product-wapper .products-content, .woo-slider-default .products-list.grid .product-wapper .products-content {
          padding-top: 0; } }
  @media (min-width: 768px) and (max-width: 991px) {
        .woo-default-2 .products-list.grid .product-wapper .products-content, .woo-slider-default .products-list.grid .product-wapper .products-content {
          padding-left: 15px;
          padding-top: 15px;
          padding-bottom: 15px;
          text-align: center; }
          .rtl .woo-default-2 .products-list.grid .product-wapper .products-content, .rtl .woo-slider-default .products-list.grid .product-wapper .products-content {
            padding-right: 15px;
            padding-left: 0; } }
  .woo-default-2 .products-list.grid .product-wapper .products-content h3.product-title, .woo-slider-default .products-list.grid .product-wapper .products-content h3.product-title {
    margin-bottom: 10px; }
  .woo-default-2 .products-list.grid .product-wapper .products-content h3.product-title a, .woo-slider-default .products-list.grid .product-wapper .products-content h3.product-title a {
    line-height: 24px; }
  .woo-default-2 .products-list.grid .product-wapper .products-content .price, .woo-slider-default .products-list.grid .product-wapper .products-content .price {
    padding: 0; }
  .woo-default-2 .products-list.grid .product-wapper .products-content .price:before, .woo-slider-default .products-list.grid .product-wapper .products-content .price:before {
    display: none; }
  .woo-default-2 .products-list.grid .product-wapper .products-content .star-rating, .woo-slider-default .products-list.grid .product-wapper .products-content .star-rating {
    margin: 0; }
  @media (min-width: 768px) and (max-width: 991px) {
          .woo-default-2 .products-list.grid .product-wapper .products-content .star-rating, .woo-slider-default .products-list.grid .product-wapper .products-content .star-rating {
            margin: auto; } }
  .woo-default-2 .products-list.grid .product-wapper .products-content .add_to_cart_button, .woo-slider-default .products-list.grid .product-wapper .products-content .add_to_cart_button, .woo-default-2 .products-list.grid .product-wapper .products-content .added_to_cart, .woo-slider-default .products-list.grid .product-wapper .products-content .added_to_cart, .woo-default-2 .products-list.grid .product-wapper .products-content .product_type_external, .woo-slider-default .products-list.grid .product-wapper .products-content .product_type_external, .woo-default-2 .products-list.grid .product-wapper .products-content .product_type_variable, .woo-slider-default .products-list.grid .product-wapper .products-content .product_type_variable, .woo-default-2 .products-list.grid .product-wapper .products-content .read_more, .woo-slider-default .products-list.grid .product-wapper .products-content .read_more {
    display: none; }
  .woo-default-2 .products-list.grid .product-wapper .product-button, .woo-slider-default .products-list.grid .product-wapper .product-button {
    display: none; }
  .woo-default-2 .products-list.grid .product-wapper .onsale, .woo-slider-default .products-list.grid .product-wapper .onsale, .woo-default-2 .products-list.grid .product-wapper .hot, .woo-slider-default .products-list.grid .product-wapper .hot {
    display: none; }
  .woo-default-2 .products-list.grid .product-wapper:hover .rating, .woo-slider-default .products-list.grid .product-wapper:hover .rating {
    opacity: 1;
    visibility: visible; }

.woo-slider-default-2 .content-product-list .slick-slider {
  overflow: unset; }
  .woo-slider-default-2 .title-block {
    margin-bottom: 30px;
    display: flex; }
  .woo-slider-default-2 .title-block h2 {
    display: inline-block;
    font-size: 35px;
    color: #000;
    margin: 0;
    padding-bottom: 37px;
    background: url("/wp-content/themes/vapier/images/bottom-2.png") left bottom no-repeat;
    flex: 1 25%; }
  .woo-slider-default-2 .title-block .page-description {
    flex: 1 100%; }

.woo-slider-default {
  position: relative; }
  .woo-slider-default .content-product-list .slick-arrow {
    top: 4px;
    right: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    color: #fff;
    background: #D3AD47; }
  .woo-slider-default .content-product-list .slick-arrow.fa-angle-left {
    right: 30px;
    left: auto; }
  .woo-slider-default .content-product-list .slick-arrow:hover {
    color: #D3AD47;
    background: #fff; }

.woo-slider-2 .content-product-list .slick-slider {
  overflow: unset; }
  .woo-slider-2 .content-product-list .slick-arrow {
    background: #fff;
    border-color: #D3AD47;
    top: calc(50% + 30px);
    opacity: 0;
    right: 0;
    left: auto; }
  .woo-slider-2 .content-product-list .slick-arrow.fa-angle-left {
    right: auto;
    left: 0; }
  .woo-slider-2 .content-product-list .slick-arrow:hover {
    border-color: #D3AD47;
    background: #D3AD47;
    color: #fff; }
  .woo-slider-2 .content-product-list:hover .slick-arrow {
    opacity: 1;
    right: -60px; }
  .woo-slider-2 .content-product-list:hover .slick-arrow.fa-angle-left {
    right: auto;
    left: -60px; }

.bwp-woo-slider .content-product-list {
  position: relative; }
  .bwp-woo-slider .banner-block {
    overflow: hidden; }
  .bwp-woo-slider .banner-block img {
    backface-visibility: hidden;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s; }
  .bwp-woo-slider .banner-block:hover img {
    filter: alpha(opacity=80);
    transform: scale3d(1.1, 1.1, 1); }
/************************************************************************************************
 LIST PROCDUCT  
 *************************************************************************************************/
.bwp_product_list.slider .slick-slider {
  overflow: unset; }
  @media (max-width: 1199px) {
    .bwp_product_list.slider .slick-list {
      margin: 0 -7.5px; }
      .bwp_product_list.slider .slick-list .item-product {
        padding: 0 7.5px; } }
  .bwp_product_list.default .bwp-heading-content {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 15px; }
  .bwp_product_list.default .content-title h2 {
    margin: 0;
    font-size: 24px; }
  .bwp_product_list.default .btn-all a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp_product_list.default .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp_product_list.default .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.default .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  .bwp_product_list.slider2 .item-product {
    border-right: 1px solid #e1e1e1; }
  .rtl .bwp_product_list.slider2 .item-product {
    border-left: 1px solid #e1e1e1;
    border-right: 0; }
  .bwp_product_list.slider2 .products-thumb {
    border: 0 !important; }
  .bwp_product_list:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp_product_list.scroll {
    margin: 0 -15px;
    position: relative; }
  .bwp_product_list.scroll .product-content .item-product {
    padding: 0 15px; }
  .bwp_product_list.scroll .scrollbar {
    margin: 50px 15px 0;
    height: 1px;
    background: #dfdfdf;
    line-height: 0;
    cursor: pointer; }
  .bwp_product_list.scroll .scrollbar .handle {
    background: #000;
    height: 3px;
    position: relative;
    top: -1px; }
  .bwp_product_list.scroll .scrollbar .mousearea {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    line-height: 20px;
    font-weight: 600; }
  .bwp_product_list.scroll .scrollbar .mousearea i {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    top: 3px;
    margin-left: 5px; }
  .rtl .bwp_product_list.scroll .scrollbar .mousearea i {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.scroll .scrollbar .mousearea:hover {
    color: #D3AD47; }
  .bwp_product_list.scroll .controls button {
    position: absolute;
    top: 33%;
    width: 33px;
    height: 33px;
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: #000; }
  .bwp_product_list.scroll .controls button.prev {
    left: 0; }
  .rtl .bwp_product_list.scroll .controls button.prev {
    right: 0;
    left: auto; }
  .bwp_product_list.scroll .controls button.next {
    right: 0; }
  .rtl .bwp_product_list.scroll .controls button.next {
    left: 0;
    right: auto; }
  .bwp_product_list.scroll .controls button.disabled {
    cursor: no-drop;
    opacity: 1; }
  .bwp_product_list.scroll .controls button:hover {
    background: #000;
    color: #fff; }
  @media (max-width: 1199px) and (min-width: 991px) {
    .bwp_product_list.scroll {
      margin: 0; } }
  .bwp_product_list.slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .bwp_product_list.slider .bwp-heading-content {
    display: flex;
    justify-content: space-between;
    margin: 0 0 35px; }
  .bwp_product_list.slider .page-description {
    font-size: 16px; }
  .bwp_product_list.slider .content-title h2 {
    margin: 0;
    font-size: 24px; }
  .bwp_product_list.slider .btn-all a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp_product_list.slider .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp_product_list.slider .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.slider .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  @media (max-width: 1199px) {
      .bwp_product_list.slider .slick-arrow.fa-angle-left {
        left: -15px; }
        .rtl .bwp_product_list.slider .slick-arrow.fa-angle-left {
          right: -15px;
          left: auto; }
      .bwp_product_list.slider .slick-arrow.fa-angle-right {
        right: -15px; }
        .rtl .bwp_product_list.slider .slick-arrow.fa-angle-right {
          left: -15px;
          right: auto; } }
  .bwp_product_list.slider .slick-dots {
    margin-top: 10px; }
  @media (max-width: 991px) {
    .bwp_product_list.slider .bwp-heading-content {
      display: block;
      text-align: center; }

    .bwp_product_list.slider .content-title h2 {
      font-size: 20px; } }
  .bwp_product_list.slider2 .bwp-heading-content {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 15px; }
  .bwp_product_list.slider2 .content-title h2 {
    margin: 0;
    font-size: 24px; }
  .bwp_product_list.slider2 .btn-all a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp_product_list.slider2 .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp_product_list.slider2 .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.slider2 .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  @media (max-width: 991px) {
    .bwp_product_list.slider2 .countdown {
      display: none; }

    .bwp_product_list.slider2 .slick-slider {
      overflow: unset; } }
  @media (max-width: 480px) {
    .bwp_product_list.slider2 .bwp-heading-content {
      display: block;
      text-align: center; }

    .bwp_product_list.slider2 .content-title h2 {
      font-size: 20px; } }
  .bwp_product_list.slider3 {
    background: #fff;
    padding-top: 25px; }
  .bwp_product_list.slider3 .bwp-heading-content {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    padding: 0 30px 7px;
    position: relative; }
  .bwp_product_list.slider3 .bwp-heading-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    bottom: 0;
    left: 0; }
  .bwp_product_list.slider3 .content-title h2 {
    margin: 0;
    font-size: 20px;
    position: relative; }
  .bwp_product_list.slider3 .content-title h2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: #D3AD47;
    bottom: -15px;
    z-index: 2; }
  .bwp_product_list.slider3 .btn-all {
    position: relative;
    top: -10px; }
  .bwp_product_list.slider3 .btn-all a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #000; }
  .bwp_product_list.slider3 .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp_product_list.slider3 .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.slider3 .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  .bwp_product_list.slider3 .slick-arrow {
    opacity: 1;
    visibility: visible;
    font-size: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #dadada;
    line-height: 33px;
    background: #fff;
    top: calc(50% - 50px); }
  .bwp_product_list.slider3 .slick-arrow:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp_product_list.slider3 .slick-arrow.fa-angle-left {
    left: -17.5px; }
  .rtl .bwp_product_list.slider3 .slick-arrow.fa-angle-left {
    right: -17.5px;
    left: auto; }
  .bwp_product_list.slider3 .slick-arrow.fa-angle-right {
    right: -17.5px; }
  .rtl .bwp_product_list.slider3 .slick-arrow.fa-angle-right {
    left: -17.5px;
    right: auto; }
  @media (max-width: 1199px) {
      .bwp_product_list.slider3 .slick-arrow.fa-angle-left {
        left: -15px; }
        .rtl .bwp_product_list.slider3 .slick-arrow.fa-angle-left {
          right: -15px;
          left: auto; }
      .bwp_product_list.slider3 .slick-arrow.fa-angle-right {
        right: -15px; }
        .rtl .bwp_product_list.slider3 .slick-arrow.fa-angle-right {
          left: -15px;
          right: auto; } }
  .bwp_product_list.slider3 .slick-dots {
    margin-top: 10px; }
  .bwp_product_list.slider3 .slick-list {
    margin: 0 -13px; }
  @media (max-width: 480px) {
    .bwp_product_list.slider3 .bwp-heading-content {
      display: block;
      text-align: center; }

    .bwp_product_list.slider3 .content-title h2 {
      font-size: 20px; } }
  @media (max-width: 991px) {
    .bwp_product_list.slider3 .bwp-heading-content {
      display: block; }

    .bwp_product_list.slider3 .content-title h2 {
      display: inline-block;
      margin: 0 0 15px; }
      .bwp_product_list.slider3 .content-title h2:before {
        bottom: -3px; } }
  .bwp_product_list.list-deal .content-product-list {
    position: relative; }
  .bwp_product_list.list-deal .slick-arrow {
    opacity: 1;
    visibility: visible;
    font-size: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #e0e0e0;
    line-height: 33px;
    background: #fff;
    top: calc(50% - 50px); }
  .bwp_product_list.list-deal .slick-arrow:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp_product_list.list-deal .slick-arrow.fa-angle-left {
    left: -17.5px; }
  .rtl .bwp_product_list.list-deal .slick-arrow.fa-angle-left {
    right: -17.5px;
    left: auto; }
  .bwp_product_list.list-deal .slick-arrow.fa-angle-right {
    right: -17.5px; }
  .rtl .bwp_product_list.list-deal .slick-arrow.fa-angle-right {
    left: -17.5px;
    right: auto; }
  .bwp_product_list.list-deal .list-product {
    padding: 55px 30px 0;
    border: 2px solid #D3AD47;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px; }
  .bwp_product_list.list-deal .content-title {
    display: flex;
    align-items: center;
    max-width: 500px;
    justify-content: center;
    border: 2px solid #e0e0e0;
    padding: 5px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-left: 120px;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    background: #fff; }
  .rtl .bwp_product_list.list-deal .content-title {
    margin-right: 120px;
    margin-left: 0; }
  .bwp_product_list.list-deal .content-title h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 30px 0 0; }
  .rtl .bwp_product_list.list-deal .content-title h2 {
    margin: 0 0 0 30px; }
  .bwp_product_list.list-deal .content-title h2:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #D3AD47; }
  .bwp_product_list.list-deal .countdown-deal {
    display: flex;
    align-items: center; }
  .bwp_product_list.list-deal .countdown-deal label {
    color: #000;
    font-weight: 500;
    margin: 0 10px 0 0; }
  .rtl .bwp_product_list.list-deal .countdown-deal label {
    margin: 0 0 0 10px; }
  .bwp_product_list.list-deal .countdown-deal .countdown-content > span {
    width: 40px;
    height: 40px;
    background: #D3AD47;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    line-height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    margin-right: 5px; }
  .rtl .bwp_product_list.list-deal .countdown-deal .countdown-content > span {
    margin-left: 5px;
    margin-right: 0; }
  .bwp_product_list.list-deal .countdown-deal .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp_product_list.list-deal .countdown-deal .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp_product_list.list-deal .products-thumb .countdown {
    display: none; }
  @media (max-width: 991px) {
    .bwp_product_list.list-deal .content-title {
      margin-left: 50px; }
      .rtl .bwp_product_list.list-deal .content-title {
        margin-right: 50px;
        margin-left: 0; } }
  @media (max-width: 767px) {
    .bwp_product_list.list-deal .content-title {
      margin-left: 0;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      border-radius: 50px;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      -ms-border-radius: 50px;
      -o-border-radius: 50px;
      max-width: 300px;
      margin: auto; }
      .rtl .bwp_product_list.list-deal .content-title {
        margin-right: 0;
        margin-left: 0; }
      .bwp_product_list.list-deal .content-title > * {
        width: 100%; }
      .bwp_product_list.list-deal .content-title h2 {
        margin: 0; }
      .bwp_product_list.list-deal .content-title .countdown-deal {
        justify-content: center; } }
  .bwp_product_list.list-deal2 .bwp-heading-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; }
  .bwp_product_list.list-deal2 .content-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .bwp_product_list.list-deal2 .content-title h2 {
    margin: 0;
    font-size: 28px; }
  .bwp_product_list.list-deal2 .content-title h2:after {
    display: inline-block;
    content: ".";
    color: #D3AD47; }
  .bwp_product_list.list-deal2 .countdown-deal {
    border: 2px solid #f03333;
    padding: 0 20px;
    margin-left: 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    color: #f03333;
    font-weight: 600; }
  .rtl .bwp_product_list.list-deal2 .countdown-deal {
    margin-right: 20px;
    margin-left: 0; }
  .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span {
    margin-right: 15px; }
  .rtl .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span {
    margin-left: 15px;
    margin-right: 0; }
  .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp_product_list.list-deal2 .countdown-deal .countdown-amount {
    font-size: 20px; }
  .bwp_product_list.list-deal2 .countdown-deal .countdown-text {
    font-size: 13px; }
  .bwp_product_list.list-deal2 .btn-all a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 2px solid #000; }
  .bwp_product_list.list-deal2 .btn-all a:after {
    content: "\24";
    display: inline-block;
    font-family: eleganticons;
    font-size: 18px;
    position: relative;
    top: 4px;
    margin-left: 5px; }
  .rtl .bwp_product_list.list-deal2 .btn-all a:after {
    margin-right: 5px;
    margin-left: 0; }
  .bwp_product_list.list-deal2 .btn-all a:hover {
    color: #D3AD47;
    border-color: #D3AD47; }
  .bwp_product_list.list-deal2 .list-product {
    background: #fff;
    padding: 30px 30px 0; }
  .bwp_product_list.list-deal2 .content-product-list {
    position: relative; }
  .bwp_product_list.list-deal2 .slick-arrow {
    opacity: 1;
    visibility: visible;
    font-size: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #e0e0e0;
    line-height: 33px;
    background: #fff;
    top: calc(50% - 50px); }
  .bwp_product_list.list-deal2 .slick-arrow:hover {
    background: #D3AD47;
    border-color: #D3AD47;
    color: #fff; }
  .bwp_product_list.list-deal2 .slick-arrow.fa-angle-left {
    left: -17.5px; }
  .rtl .bwp_product_list.list-deal2 .slick-arrow.fa-angle-left {
    right: -17.5px;
    left: auto; }
  .bwp_product_list.list-deal2 .slick-arrow.fa-angle-right {
    right: -17.5px; }
  .rtl .bwp_product_list.list-deal2 .slick-arrow.fa-angle-right {
    left: -17.5px;
    right: auto; }
  .bwp_product_list.list-deal2 .products-thumb .countdown {
    display: none; }
  @media (max-width: 991px) {
    .bwp_product_list.list-deal2 .content-title h2 {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .bwp_product_list.list-deal2 .bwp-heading-content {
      justify-content: center;
      text-align: center; }
      .bwp_product_list.list-deal2 .bwp-heading-content > * {
        width: 100%; }

    .bwp_product_list.list-deal2 .content-title > * {
      width: 100%; }

    .bwp_product_list.list-deal2 .countdown-deal {
      margin: 10px 0; }

    .bwp_product_list.list-deal2 .countdown-deal {
      padding: 0 10px;
      margin-left: 10px; }
      .rtl .bwp_product_list.list-deal2 .countdown-deal {
        margin-right: 10px;
        margin-left: 0; }
      .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span {
        margin-right: 10px; }
        .rtl .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span {
          margin-left: 10px;
          margin-right: 0; }
        .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span:last-child {
          margin-right: 0; }
          .rtl .bwp_product_list.list-deal2 .countdown-deal .countdown-content > span:last-child {
            margin-left: 0;
            margin-right: 0; }
      .bwp_product_list.list-deal2 .countdown-deal .countdown-amount {
        font-size: 16px; }
      .bwp_product_list.list-deal2 .countdown-deal .countdown-text {
        font-size: 13px; } }
  .bwp_product_list.list-deal3 {
    position: relative; }
  .bwp_product_list.list-deal3 .slick-arrow {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 767px) {
      .bwp_product_list.list-deal3 .slick-arrow {
        width: 21px;
        height: 21px;
        border: 1px solid #000;
        color: #000;
        font-size: 8px;
        line-height: 18px;
        font-weight: 600;
        top: 5px;
        background: #fff; }
        .bwp_product_list.list-deal3 .slick-arrow:hover {
          background: #D3AD47;
          color: #fff;
          border-color: #D3AD47; }
        .bwp_product_list.list-deal3 .slick-arrow.fa-angle-left {
          right: 26px;
          left: auto; }
        .bwp_product_list.list-deal3 .slick-arrow.fa-angle-right {
          right: 0px; } }
  .bwp_product_list.list-deal3 .bwp-heading-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-right: 80px; }
  .rtl .bwp_product_list.list-deal3 .bwp-heading-content {
    padding-left: 80px;
    padding-right: 0; }
  .bwp_product_list.list-deal3 .content-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .bwp_product_list.list-deal3 .content-title h2 {
    margin: 0;
    font-size: 28px; }
  .bwp_product_list.list-deal3 .content-title h2:after {
    display: inline-block;
    content: ".";
    color: #D3AD47; }
  .bwp_product_list.list-deal3 .countdown-deal {
    border: 2px solid #f03333;
    padding: 0 20px;
    margin-left: 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    color: #f03333;
    font-weight: 600; }
  .rtl .bwp_product_list.list-deal3 .countdown-deal {
    margin-right: 20px;
    margin-left: 0; }
  .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span {
    margin-right: 15px; }
  .rtl .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span {
    margin-left: 15px;
    margin-right: 0; }
  .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span:last-child {
    margin-right: 0; }
  .rtl .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span:last-child {
    margin-left: 0;
    margin-right: 0; }
  .bwp_product_list.list-deal3 .countdown-deal .countdown-amount {
    font-size: 20px; }
  .bwp_product_list.list-deal3 .countdown-deal .countdown-text {
    font-size: 13px; }
  .bwp_product_list.list-deal3 .list-link {
    padding-left: 30px; }
  .rtl .bwp_product_list.list-deal3 .list-link {
    padding-right: 30px;
    padding-left: 0; }
  .bwp_product_list.list-deal3 .list-link ul {
    list-style: none;
    padding: 0; }
  .bwp_product_list.list-deal3 .list-link ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    border: 1px dashed transparent;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 0 15px;
    color: #868686; }
  .rtl .bwp_product_list.list-deal3 .list-link ul li {
    margin-left: 10px;
    margin-right: 0; }
  .bwp_product_list.list-deal3 .list-link ul li.active {
    color: #D3AD47;
    border-color: #D3AD47; }
  .bwp_product_list.list-deal3 .list-link ul li a {
    color: #868686; }
  .bwp_product_list.list-deal3 .list-link ul li a:hover {
    color: #D3AD47; }
  .bwp_product_list.list-deal3 .list-link ul li:last-child {
    margin-right: 0; }
  .rtl .bwp_product_list.list-deal3 .list-link ul li:last-child {
    margin-left: 0;
    margin-right: 0; }
  @media (max-width: 1199px) {
    .bwp_product_list.list-deal3 .bwp-heading-content {
      padding-right: 50px; }
      .rtl .bwp_product_list.list-deal3 .bwp-heading-content {
        padding-left: 50px;
        padding-right: 0; }

    .bwp_product_list.list-deal3 .content-title h2 {
      font-size: 18px; }

    .bwp_product_list.list-deal3 .list-link {
      max-width: 350px; }
      .bwp_product_list.list-deal3 .list-link ul {
        white-space: nowrap;
        overflow: auto; } }
  @media (max-width: 991px) {
    .bwp_product_list.list-deal3 .list-link {
      max-width: 100%;
      width: 100%;
      padding: 10px 15px;
      border-bottom: 1px solid #e0e0e0; }

    .bwp_product_list.list-deal3 .bwp-heading-content {
      padding-right: 0; }
      .rtl .bwp_product_list.list-deal3 .bwp-heading-content {
        padding-left: 0;
        padding-right: 0; } }
  @media (max-width: 767px) {
    .bwp_product_list.list-deal3 .bwp-heading-content {
      justify-content: center;
      text-align: center; }
      .bwp_product_list.list-deal3 .bwp-heading-content > * {
        width: 100%; }

    .bwp_product_list.list-deal3 .content-title > * {
      width: 100%; }

    .bwp_product_list.list-deal3 .countdown-deal {
      margin: 10px 0; }

    .bwp_product_list.list-deal3 .countdown-deal {
      padding: 0 10px;
      margin-left: 10px; }
      .rtl .bwp_product_list.list-deal3 .countdown-deal {
        margin-right: 10px;
        margin-left: 0; }
      .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span {
        margin-right: 10px; }
        .rtl .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span {
          margin-left: 10px;
          margin-right: 0; }
        .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span:last-child {
          margin-right: 0; }
          .rtl .bwp_product_list.list-deal3 .countdown-deal .countdown-content > span:last-child {
            margin-left: 0;
            margin-right: 0; }
      .bwp_product_list.list-deal3 .countdown-deal .countdown-amount {
        font-size: 16px; }
      .bwp_product_list.list-deal3 .countdown-deal .countdown-text {
        font-size: 13px; } }
  .bwp_product_list.list-link1 .list-product {
    border: 1px solid #e6e6e6;
    border-top: 0; }
  .bwp_product_list.list-link1 .slick-list {
    margin: 0px; }
  .bwp_product_list.list-link1 .item-product {
    padding: 0px;
    border-right: 1px solid #e6e6e6; }
  .rtl .bwp_product_list.list-link1 .item-product {
    border-left: 1px solid #e6e6e6;
    border-right: 0; }
  .bwp_product_list.list-link1 .content-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 13px;
    margin-bottom: 25px;
    align-items: center; }
  .bwp_product_list.list-link1 .title-block h2 {
    margin: 0;
    font-size: 24px;
    display: inline-block;
    text-transform: uppercase; }
  .bwp_product_list.list-link1 .list-link {
    padding-left: 40px; }
  .rtl .bwp_product_list.list-link1 .list-link {
    padding-right: 40px;
    padding-left: 0; }
  .bwp_product_list.list-link1 .list-link ul {
    list-style: none;
    padding: 0; }
  .bwp_product_list.list-link1 .list-link ul li {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 24px;
    border: 1px solid transparent;
    padding: 0 15px;
    color: #000; }
  .rtl .bwp_product_list.list-link1 .list-link ul li {
    margin-left: 5px;
    margin-right: 0; }
  .bwp_product_list.list-link1 .list-link ul li.active {
    color: #de2828;
    border-color: #de2828; }
  .bwp_product_list.list-link1 .list-link ul li a {
    color: #000; }
  .bwp_product_list.list-link1 .list-link ul li a:hover {
    color: #de2828; }
  .bwp_product_list.list-link1 .list-link ul li:last-child {
    margin-right: 0;
    padding-right: 0; }
  .rtl .bwp_product_list.list-link1 .list-link ul li:last-child {
    margin-left: 0;
    margin-right: 0; }
  .rtl .bwp_product_list.list-link1 .list-link ul li:last-child {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 1199px) {
    .bwp_product_list.list-link1 .title-block h2 {
      font-size: 18px; }

    .bwp_product_list.list-link1 .list-link {
      max-width: 400px; }
      .bwp_product_list.list-link1 .list-link ul {
        white-space: nowrap;
        overflow: auto; } }
  @media (max-width: 991px) {
    .bwp_product_list.list-link1 .list-link {
      max-width: 100%;
      width: 100%;
      padding: 10px 15px;
      border-bottom: 1px solid #e0e0e0; }

    .bwp_product_list.list-link1 .content-heading {
      padding: 0;
      border: 0; }

    .bwp_product_list.list-link1 .title-block {
      padding-bottom: 6px;
      border-bottom: 1px solid #e0e0e0;
      width: 100%; } }
  .bwp_product_list.sidebar .items {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0; }
  .bwp_product_list.sidebar .items:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 {
    margin-bottom: 0; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 .products-thumb {
    flex: 0 0 85px; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 .products-content .cat-products {
    display: none; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 .products-content h3.product-title {
    margin-bottom: 0;
    margin-top: 3px; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 .price {
    font-size: 14px; }
  .bwp_product_list.sidebar .products-list.grid .product-wapper.content-product3 .price del {
    font-size: 12px; }
  .bwp_product_list.list-menu .products-list.grid .product-wapper.content-product3 {
    margin-bottom: 10px; }
  .bwp_product_list.list-menu .products-list.grid .product-wapper.content-product3:before {
    display: none; }
  .bwp_product_list.list-menu .products-list.grid .product-wapper.content-product3 .products-thumb {
    flex: 0 0 75px; }
  .bwp_product_list.list-menu .products-list.grid .product-wapper.content-product3 .products-thumb .product-thumb-hover .wp-post-image {
    visibility: unset; }
  .bwp_product_list.list-menu .cat-products, .bwp_product_list.list-menu .product-lable {
    display: none; }
/************************************************************************************************
 RELATE PROCDUCT  
 *************************************************************************************************/
.related, .cross_sell, .upsells {
  position: relative;
  margin-top: 50px;
  max-width: 1440px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  .related .slick-dots, .cross_sell .slick-dots, .upsells .slick-dots {
    margin-top: 30px; }
  .related .title-block, .cross_sell .title-block, .upsells .title-block {
    text-align: center;
    margin-bottom: 35px; }
  .related .title-block h2, .cross_sell .title-block h2, .upsells .title-block h2 {
    font-size: 24px;
    color: #000;
    margin: 0;
    display: inline-block;
    position: relative;
    font-weight: 600; }
  .related .content-product-list, .cross_sell .content-product-list, .upsells .content-product-list {
    position: relative; }
  .related .content-product-list:hover .slick-arrow, .cross_sell .content-product-list:hover .slick-arrow, .upsells .content-product-list:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  .related .content-product-list .slick-arrow, .cross_sell .content-product-list .slick-arrow, .upsells .content-product-list .slick-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid #a3a3a3;
    line-height: 28px;
    font-size: 10px;
    color: #000;
    top: calc(50% - 15px);
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .related .content-product-list .slick-arrow.fa-angle-left, .cross_sell .content-product-list .slick-arrow.fa-angle-left, .upsells .content-product-list .slick-arrow.fa-angle-left {
    left: -15px; }
  .rtl .related .content-product-list .slick-arrow.fa-angle-left, .rtl .cross_sell .content-product-list .slick-arrow.fa-angle-left, .rtl .upsells .content-product-list .slick-arrow.fa-angle-left {
    right: -15px;
    left: auto; }
  .related .content-product-list .slick-arrow.fa-angle-right, .cross_sell .content-product-list .slick-arrow.fa-angle-right, .upsells .content-product-list .slick-arrow.fa-angle-right {
    right: -15px; }
  .rtl .related .content-product-list .slick-arrow.fa-angle-right, .rtl .cross_sell .content-product-list .slick-arrow.fa-angle-right, .rtl .upsells .content-product-list .slick-arrow.fa-angle-right {
    left: -15px;
    right: auto; }
  .related .content-product-list .slick-arrow:hover, .cross_sell .content-product-list .slick-arrow:hover, .upsells .content-product-list .slick-arrow:hover {
    color: #fff;
    border-color: #D3AD47;
    background: #D3AD47; }
  @media (max-width: 767px) {
      .related .content-product-list .slick-arrow.fa-angle-left, .cross_sell .content-product-list .slick-arrow.fa-angle-left, .upsells .content-product-list .slick-arrow.fa-angle-left {
        left: 0; }
        .rtl .related .content-product-list .slick-arrow.fa-angle-left, .rtl .cross_sell .content-product-list .slick-arrow.fa-angle-left, .rtl .upsells .content-product-list .slick-arrow.fa-angle-left {
          right: 0;
          left: auto; }
      .related .content-product-list .slick-arrow.fa-angle-right, .cross_sell .content-product-list .slick-arrow.fa-angle-right, .upsells .content-product-list .slick-arrow.fa-angle-right {
        right: 0; }
        .rtl .related .content-product-list .slick-arrow.fa-angle-right, .rtl .cross_sell .content-product-list .slick-arrow.fa-angle-right, .rtl .upsells .content-product-list .slick-arrow.fa-angle-right {
          left: 0;
          right: auto; } }
  .related .content-product-list .products-list.grid .product-wapper, .cross_sell .content-product-list .products-list.grid .product-wapper, .upsells .content-product-list .products-list.grid .product-wapper {
    margin: 0 15px; }
  .related .product-container, .cross_sell .product-container, .upsells .product-container {
    margin: 0; }
/************************************************************************************************
 QUICK VIEW PRODUCT
 *************************************************************************************************/
.bwp-quick-view {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: inline-block;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out; }
  .bwp-quick-view.active {
    opacity: 1;
    visibility: visible; }
  .bwp-quick-view .quickview-container {
    position: fixed;
    z-index: 10;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .bwp-quick-view .quickview-container .quickview-close {
    text-align: center;
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 15px;
    color: #000;
    z-index: 10000;
    width: 36px;
    height: 36px;
    border: 9px solid transparent;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%; }
  .bwp-quick-view .quickview-container .quickview-close:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-quick-view .quickview-container .quickview-close:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .bwp-quick-view .quickview-container .quickview-close:hover {
    background: #e5e5e5; }
  .bwp-quick-view .quickview-container .quickview-close:hover:after, .bwp-quick-view .quickview-container .quickview-close:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .bwp-quick-view .quickview-container .product-type-variable .variations_form.cart table tr td.label {
    display: none; }
  .bwp-quick-view .quickview-container .img-quickview {
    width: 55%; }
  .bwp-quick-view .quickview-container .bwp-single-info {
    width: 45%;
    padding: 0 45px; }
  .bwp-quick-view .quickview-container .bwp-single-info .quantity {
    margin-right: 10px; }
  .rtl .bwp-quick-view .quickview-container .bwp-single-info .quantity {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-quick-view .quickview-container .bwp-single-info .description {
    margin-bottom: 15px; }
  .bwp-quick-view .quickview-container .bwp-single-info .content_product_detail {
    max-height: 435px;
    overflow-x: hidden;
    padding-right: 8px; }
  .bwp-quick-view .quickview-container .bwp-single-info .content_product_detail::-webkit-scrollbar-track {
    background-color: #f5f5f5; }
  .bwp-quick-view .quickview-container .bwp-single-info .content_product_detail::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5; }
  .bwp-quick-view .quickview-container .bwp-single-info .content_product_detail::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1); }
  .bwp-quick-view .quickview-container .bwp-single-info .woocommerce-variation-price, .bwp-quick-view .quickview-container .bwp-single-info .woocommerce-variation-availability, .bwp-quick-view .quickview-container .bwp-single-info .woocommerce-variation-add-to-cart .quantity {
    display: block !important;
    visibility: visible !important; }
  .bwp-quick-view .quickview-container .quickview-slick ul.slick-dots {
    position: initial;
    margin-top: 10px; }
  .bwp-quick-view .quickview-container .quickview-slick .slick-arrow {
    display: none !important; }
  .bwp-quick-view .quickview-container .product_detail {
    overflow: hidden;
    display: block;
    background: #fff;
    color: #868686;
    max-width: 980px;
    width: 100%;
    max-height: 705px;
    overflow-y: scroll; }
  .bwp-quick-view .quickview-container .product_detail .product_meta #report_abuse_form {
    padding: 0;
    box-shadow: none; }
  .bwp-quick-view .quickview-container .product_detail > .row {
    margin: 0;
    align-items: center; }
  .bwp-quick-view .quickview-container .product_detail::-webkit-scrollbar {
    width: 5px; }
  .bwp-quick-view .quickview-container .product_detail::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1); }
  .bwp-quick-view .quickview-container .woocommerce-message {
    display: none; }
  .bwp-quick-view .quickview-container .woocommerce-product-rating {
    display: flex; }
  .bwp-quick-view .quickview-container .slick-dots {
    position: absolute;
    bottom: 35px; }
  .bwp-quick-view .quickview-container .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-quick-view .quickview-container .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; }
  .bwp-quick-view .quickview-container .slick-dots li button:before {
    display: none; }
  .bwp-quick-view .quickview-container .slick-track, .bwp-quick-view .quickview-container .slick-list {
    display: flex; }
  .bwp-quick-view .quickview-container .slider_img_productd .img-thumbnail {
    border: 0;
    display: inline-block;
    float: unset; }
  .bwp-quick-view .quickview-container .slider_img_productd .video-additional {
    display: flex;
    float: unset;
    height: 100%; }
  .bwp-quick-view .quickview-container .slider_img_productd .video-additional iframe {
    width: 100% !important;
    height: 100% !important; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12 {
    padding: 0; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12 .slick-arrow {
    width: 25px;
    height: 25px;
    line-height: 25px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    top: calc(50% - 12.5px);
    border: 0;
    color: #000;
    font-size: 22px; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12 .slick-arrow:hover {
    color: #D3AD47;
    background: transparent; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12 .slick-arrow.fa-angle-right {
    right: 15px; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12 .slick-arrow.fa-angle-left {
    left: 15px; }
  .bwp-quick-view .quickview-container .slider_img_productd .col-sm-12:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }

.scroll-image {
  position: relative; }

.content-product-360-view {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  display: none; }
  .content-product-360-view.active {
    display: flex; }
  .content-product-360-view .product-360-view {
    width: calc(100% - 30px) !important;
    max-width: 700px;
    height: auto !important;
    padding: 30px;
    background: #fff; }
  .content-product-360-view .product-360-view .vapier-360-button {
    top: 10px;
    bottom: auto;
    right: 10px;
    background: #fff;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: 1px solid #e4e4e4;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    margin: 0;
    width: 28px;
    height: 28px;
    padding: 6px;
    border: 1px solid #d6d6d6;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%; }
  .content-product-360-view .product-360-view .vapier-360-button:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 12px;
    top: 50%;
    left: calc(50% - 6px);
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .content-product-360-view .product-360-view .vapier-360-button:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 12px;
    top: 50%;
    left: calc(50% - 6px);
    margin-top: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .content-product-360-view .product-360-view .vapier-360-button:hover {
    background: #e5e5e5; }
  .content-product-360-view .product-360-view .vapier-360-button:hover:after, .content-product-360-view .product-360-view .vapier-360-button:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .content-product-360-view .product-360-view .images-list {
    padding: 0;
    list-style: none;
    cursor: grab; }
  .content-product-360-view .product-360-view .images-list .images-display {
    display: none; }
  .content-product-360-view .product-360-view .images-list .images-display.active {
    display: block; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper {
    position: absolute;
    width: calc(100% - 60px);
    bottom: 60px; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar {
    max-width: 150px;
    margin: auto;
    display: flex;
    background: #fff;
    padding: 5px 10px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    -webkit-box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3);
    box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3); }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar > * {
    flex: 1;
    cursor: pointer;
    color: #000;
    font-size: 18px;
    text-align: center;
    font-family: FontAwesome; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar > *:hover {
    color: #D3AD47; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar-previous:before {
    content: "\f048"; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar-next:before {
    content: "\f051"; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar-play:before {
    content: "\f04b"; }
  .content-product-360-view .product-360-view .navigation-bar-wrapper .navigation-bar-play.navigation-bar-stop:before {
    content: "\f04d"; }
  .content-product-360-view .product-360-view .loading-spinner {
    display: block;
    position: absolute;
    z-index: 10000;
    background: #fff;
    opacity: 0.5; }
  .content-product-360-view .product-360-view .loading-spinner:after {
    display: block;
    background-image: url("/wp-content/themes/vapier/css/images/icons/loading.gif");
    background-size: contain;
    content: '';
    width: 50%;
    height: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100001; }
  @media (max-width: 991px) {
    .content-product-360-view .product-360-view {
      max-width: 500px !important; } }
  @media (max-width: 480px) {
    .content-product-360-view .product-360-view {
      padding: 15px; }
      .content-product-360-view .product-360-view .vapier-360-button {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        line-height: 24px; }
        .content-product-360-view .product-360-view .vapier-360-button i {
          font-size: 18px; }
      .content-product-360-view .product-360-view .navigation-bar-wrapper {
        bottom: 20px;
        width: calc(100% - 30px); } }

.vapier-360-button {
  position: absolute;
  bottom: 15px;
  width: 55px;
  height: 55px;
  border: 1px solid #000;
  right: 15px;
  line-height: 53px;
  color: #000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 9993;
  cursor: pointer; }
  .rtl .vapier-360-button {
    left: 15px;
    right: auto; }
  .vapier-360-button h2 {
    display: none; }
  .vapier-360-button i {
    font-size: 30px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle; }
  .vapier-360-button:hover {
    color: #D3AD47;
    border-color: #D3AD47; }

.zoomContainer {
  z-index: 999; }
/************************************************************************************************
 WIDGET WOO SEARCH
 *************************************************************************************************/
.woocommerce.widget_product_search .screen-reader-text {
  display: none; }
  .woocommerce.widget_product_search .woocommerce-product-search {
    border: 1px solid #e0e0e0;
    padding: 15px 10px;
    position: relative; }
  .woocommerce.widget_product_search .woocommerce-product-search .search-field {
    background: transparent;
    border: none; }
  .woocommerce.widget_product_search .woocommerce-product-search .btn-search {
    border: none; }
  .woocommerce.widget_product_search .woocommerce-product-search .btn-search:before {
    font-family: FontAwesome;
    content: "\f002"; }
/************************************************************************************************
 WIDGET WOO CATEGORIES
 *************************************************************************************************/
.widget.widget-products .tabs-container {
  overflow: hidden; }
  .widget.widget-products .carousel-control {
    left: auto; }
  .rtl .widget.widget-products .carousel-control {
    right: auto;
    left: auto; }
  .widget.widget-products .carousel-control.prev {
    right: 20px; }
  .rtl .widget.widget-products .carousel-control.prev {
    left: 20px;
    right: auto; }
  .widget.widget-products .carousel-control.next {
    right: 0px; }
  .rtl .widget.widget-products .carousel-control.next {
    left: 0px;
    right: auto; }
  .widget.widget_layered_nav {
    font-size: 14px; }
  .widget.widget_layered_nav ul, .widget.widget_layered_nav ol {
    padding: 0;
    list-style: none; }
  .widget.widget_layered_nav ul li .children > li:before, .widget.widget_layered_nav ol li .children > li:before {
    top: 24px; }
  .widget.widget_layered_nav ul ul li:first-child, .widget.widget_layered_nav ol ul li:first-child {
    padding-top: 14px;
    background-position: 0 24px; }
  .widget.widget_layered_nav .count {
    float: right; }
  .rtl .widget.widget_layered_nav .count {
    float: left; }
  .widget .widget-products-carousel {
    position: relative; }
/*------------------------------------*\
 Widget Price Filter
 \*------------------------------------*/
.widget_price_filter .price_slider {
  margin: 0 0 30px 0; }
  .rtl .widget_price_filter .price_slider {
    margin: 0 0 30px 0; }
  .widget_price_filter .price_slider_amount {
    line-height: 2.4em; }
  .widget_price_filter .ui-slider {
    position: relative;
    text-align: left; }
  .rtl .widget_price_filter .ui-slider {
    text-align: right; }
  .widget_price_filter .ui-slider .ui-slider-handle {
    z-index: 2;
    position: absolute;
    outline: none;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    cursor: pointer;
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(#026935), to(#04b45b));
    background-image: -webkit-linear-gradient(top, #026935, 0%, #04b45b, 100%);
    background-image: -moz-linear-gradient(top, #026935 0%, #04b45b 100%);
    background-image: linear-gradient(to bottom, #026935 0%, #04b45b 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF026935", endColorstr="#FF04B35B", GradientType=0); }
  .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 1rem;
    display: block;
    border: 0;
    -webkit-box-shadow: 0, 0, 0, 1px, rgba(0, 0, 0, 0.5);
    box-shadow: 0, 0, 0, 1px, rgba(0, 0, 0, 0.5);
    border-radius: 1em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    -o-border-radius: 1em; }
  .widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 1em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    -o-border-radius: 1em;
    background: #c7c7c7; }
  .widget_price_filter .ui-slider-horizontal {
    height: 5px; }
  .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: #e0e0e0; }
  .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
    left: -1px; }
  .rtl .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
    right: -1px;
    left: auto; }
  .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
    right: -1px; }
  .rtl .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
    left: -1px;
    right: auto; }
/*------------------------------------*\
 Product List Widget
 \*------------------------------------*/
.product_list_widget {
  padding: 0;
  margin: 0 !important; }
  .product_list_widget .widget-product {
    margin: 0px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0; }
  .product_list_widget .widget-product:first-child {
    padding-top: 0; }
  .product_list_widget .widget-product:last-child {
    border: 0;
    padding-bottom: 0; }
  .product_list_widget .widget-product .review {
    clear: left; }
  .rtl .product_list_widget .widget-product .review {
    clear: right; }
  .product_list_widget .widget-product .price del {
    color: #666; }
  .product_list_widget .widget-product .image {
    display: block;
    margin-right: 15px;
    width: 90px;
    height: 90px;
    border: 1px solid #e0e0e0; }
  .rtl .product_list_widget .widget-product .image {
    margin-left: 15px;
    margin-right: 0; }
  .product_list_widget .widget-product .rating {
    margin-bottom: 5px; }
  .product_list_widget .widget-product .star-rating {
    margin: 0; }
  .product_list_widget .widget-product .name {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
    text-transform: uppercase; }
/*------------------------------------*\
 Product Special Widget
 \*------------------------------------*/
.product_special_widget .widget-product {
  margin: 0;
  position: relative;
  border-bottom: 1px solid #fff; }
  .product_special_widget .widget-product:first-child {
    padding: 0; }
  .product_special_widget .widget-product:first-child .image {
    max-width: 60%;
    position: relative;
    margin: 0;
    margin-right: 10px; }
  .rtl .product_special_widget .widget-product:first-child .image {
    margin-left: 10px;
    margin-right: 0; }
  .product_special_widget .widget-product:first-child .image .first-order {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #D3AD47;
    padding: 5px 11px;
    z-index: 99;
    color: #fff;
    font-weight: 900; }
  .product_special_widget .widget-product:first-child .media-body {
    max-width: 40%;
    float: none;
    padding: 0; }
  .product_special_widget .widget-product .media-body {
    padding: 0 10px 10px 40px; }
  .product_special_widget .widget-product .order {
    width: 32px;
    background: #dadada;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    color: #6a6a6a;
    font-weight: 900;
    padding: 0 10px; }
  .product_special_widget .widget-product .order span {
    position: relative;
    top: 50%;
    margin-top: -10px;
    display: block; }
  .product_special_widget .widget-product .review {
    clear: left; }
  .rtl .product_special_widget .widget-product .review {
    clear: right; }
  .product_special_widget .widget-product .rating {
    margin-bottom: 15px; }
  .product_special_widget .widget-product .star-rating {
    margin: 0; }
  .product_special_widget .widget-product .name {
    font-size: 14px;
    font-weight: 400; }
  .product_special_widget .widget-product .price {
    text-align: left; }
  .rtl .product_special_widget .widget-product .price {
    text-align: right; }
  .product_special_widget .widget-product .price > * {
    color: #000; }
  .product_special_widget .widget-product.last {
    background: #f5f5f5; }
/*
 Widget Sidebar
 *------------------------------------------------------------------------
 */
.bwp-sidebar .product_list_widget .image {
  margin-right: 10px;
  width: 80px;
  height: auto; }
  .rtl .bwp-sidebar .product_list_widget .image {
    margin-left: 10px;
    margin-right: 0; }

.widget_deals_products {
  overflow: hidden; }
  .widget_deals_products .widget-title {
    margin: 0; }

.woo-deals .caption {
  border: 1px solid #e0e0e0;
  border-top: none;
  padding: 5px 20px 20px !important; }
  .woo-deals .carousel-inner {
    overflow: visible; }
  .woo-deals .product-block {
    margin: 0;
    border: none; }
  .woo-deals .product-block .price > * {
    color: #000; }
  .woo-deals .product-block .name {
    margin: 0;
    min-height: 0;
    font-weight: 400; }
  .woo-deals .description {
    margin-bottom: 10px;
    font-size: 13px; }
  .woo-deals .pts-countdown {
    padding: 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; }
  .woo-deals .deals-information {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0; }
  .woo-deals .deals-information > * {
    padding-top: 15px; }
  .woo-deals .rating > * {
    float: left; }
  .woo-deals .countdown-times {
    overflow: hidden;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .woo-deals .countdown-times > div {
    float: left;
    text-align: center;
    margin-right: 5%;
    width: 20%; }
  .woo-deals .countdown-times > div > b {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #D3AD47; }
  .woo-deals .countdown-times > div:last-child {
    padding-right: 0;
    float: right; }
  .woo-deals .cart {
    left: 0;
    position: absolute;
    right: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(0px, 60px);
    -ms-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden; }
  .woo-deals .cart .add_to_cart_button {
    color: #000;
    background: #fff;
    font-weight: 900; }
  .woo-deals .cart .add_to_cart_button.added {
    display: none; }
  .woo-deals .cart .add_to_cart_button:hover, .woo-deals .cart .add_to_cart_button:active, .woo-deals .cart .add_to_cart_button:focus {
    color: #fff;
    background: #D3AD47; }
  .woo-deals .cart .wc-forward {
    margin: 0 auto; }
  .woo-deals:hover .cart {
    -webkit-transform: translate(0px, 30px);
    -ms-transform: translate(0px, 30px);
    transform: translate(0px, 30px);
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100); }

.widget.product-bottom {
  display: table;
  height: auto;
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 10px; }

.vertical-menu .product-block .name a {
  font-size: 16px !important;
  line-height: 14px !important;
  color: #707070 !important;
  font-weight: 400 !important;
  text-transform: none !important; }
  .vertical-menu .product-block .name a:hover {
    color: #D3AD47; }

.widget.product-bottom {
  background: #fff; }
/* ***********************************************************************************************
 WIDGET POLICY  
 *************************************************************************************************/
.policy-detail .banner-policy {
  text-transform: uppercase; }
  .policy-detail .banner-policy .policy {
    width: 100%;
    padding: 20px 20px 25px;
    background: #252525;
    color: #fff;
    margin-bottom: 10px; }
  .policy-detail .banner-policy .policy .fa {
    color: #fff;
    font-size: 25px;
    text-align: center;
    display: inline-block;
    float: left;
    margin-left: 10px; }
  .rtl .policy-detail .banner-policy .policy .fa {
    float: right; }
  .rtl .policy-detail .banner-policy .policy .fa {
    margin-right: 10px;
    margin-left: 0; }
  .policy-detail .banner-policy .policy .banner-cont {
    margin-left: 65px; }
  .rtl .policy-detail .banner-policy .policy .banner-cont {
    margin-right: 65px;
    margin-left: 0; }
  .policy-detail .banner-policy .policy .banner-cont h2 {
    font-size: 14px;
    margin-top: 0;
    font-weight: bold;
    color: #fff;
    margin: 4px 0 0; }
/* ***********************************************************************************************
 BANNER DETAIL  
 *************************************************************************************************/
.contents-detail .banner-wrapper {
  margin-top: 30px; }
  .contents-detail .productListBanner {
    margin: 0; }
/*
 Product Sidebar
 *------------------------------------
 */
.bwp-woocommerce-filter-product {
  width: 100%; }

@media (max-width: 991px) {
    .sidebar-product {
      max-width: 330px;
      display: block !important;
      position: fixed;
      top: 0;
      left: 0;
      background: #fff;
      height: 100%;
      z-index: 99999;
      overflow: auto;
      padding: 30px 20px 0px !important;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-transform: translateX(-330px);
      -moz-transform: translateX(-330px);
      -ms-transform: translateX(-330px);
      -o-transform: translateX(-330px);
      transform: translateX(-330px);
      opacity: 0;
      visibility: hidden;
      margin: 0;
      -webkit-box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3);
      box-shadow: 0px 1px 12px 2px rgba(144, 144, 144, 0.3); }
      .sidebar-product .button-filter-toggle {
        color: #000;
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 700;
        font-weight: 500;
        text-align: right;
        cursor: pointer;
        position: relative;
        margin-bottom: 20px;
        padding: 0; }
        .sidebar-product .button-filter-toggle:after {
          content: "\f136";
          font-family: Material;
          font-size: 14px;
          display: inline-block;
          position: relative;
          top: 1px;
          margin-left: 5px; }
          .rtl .sidebar-product .button-filter-toggle:after {
            margin-right: 5px;
            margin-left: 0; }
      .sidebar-product.active.bwp-sidebar {
        opacity: 1;
        visibility: visible;
        max-width: 330px;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0); } }
  @media (max-width: 991px) and (max-width: 767px) {
      .sidebar-product {
        width: 260px;
        -webkit-transform: translateX(-260px);
        -moz-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        -o-transform: translateX(-260px);
        transform: translateX(-260px);
        padding: 30px 15px 0 !important; } }
  .sidebar-product > .widget.bwp_woo_categories_widget {
    border: 1px solid #e5e5e5;
    border-top: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    background: #fff; }
  .sidebar-product > .widget.bwp_woo_categories_widget .widget-title {
    padding: 15px 30px;
    margin: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories {
    margin: 0;
    overflow: hidden; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-category > a {
    color: #D3AD47 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-category > a span {
    color: #D3AD47; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent {
    position: relative; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent > span.arrow {
    top: 0;
    position: absolute;
    right: 0;
    text-align: center; }
  .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent > span.arrow {
    left: 0;
    right: auto; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent > span.arrow:hover {
    cursor: pointer; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent > span.arrow:after {
    content: "\4c";
    font-family: eleganticons;
    padding: 0 3px;
    font-size: 20px;
    color: #bababa;
    font-weight: 400;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.cat-parent.open > span.arrow:after {
    content: "\4b"; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a, .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a {
    color: #000 !important;
    position: relative; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a:hover, .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a:hover {
    color: #D3AD47 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a:hover span, .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a:hover span {
    color: #D3AD47; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a:before, .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a:before {
    content: "\f104";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    line-height: 1; }
  .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a:before, .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a:before {
    margin-left: 10px;
    margin-right: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.back-shop a span, .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li.current-parent a span {
    color: #000; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li span {
    color: #a4a4a4; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children {
    display: none;
    margin-top: 7px !important;
    position: relative;
    padding: 0 !important;
    padding-top: 8px !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children:before {
    content: "";
    position: absolute;
    top: 0;
    width: 500px;
    left: calc(50% - 250px);
    background: #e0e0e0;
    height: 1px; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li {
    padding: 1.5px 0 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a {
    color: #969696 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a:before {
    content: "\f0da";
    display: inline-block;
    font-family: FontAwesome;
    margin-right: 5px; }
    .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a:before {
      margin-left: 5px;
      margin-right: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a span {
    color: #a4a4a4; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a:hover {
    color: #D3AD47 !important; }
    .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li a:hover span {
      color: #D3AD47; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li span {
    color: #a4a4a4; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li ul.children {
    padding-left: 20px !important; }
  .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li ul.children li ul.children {
    padding-right: 20px !important;
    padding-left: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li a {
    color: #868686; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories li a:hover {
    color: #D3AD47; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li {
    padding: 9px 30px !important;
    border-bottom: 1px solid #e5e5e5; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li.open > a {
    color: #000 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li.open span {
    color: #000; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li:last-child {
    border-bottom: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li.cat-parent {
    position: relative; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li.cat-parent > span.arrow {
    top: 3px;
    right: 20px; }
  .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories > li.cat-parent > span.arrow {
    left: 20px;
    right: auto; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item {
    padding: 1.5px 20px !important;
    border: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item a {
    color: #868686 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item a:before {
    content: "\f0da";
    display: inline-block;
    font-family: FontAwesome;
    margin-right: 5px; }
  .rtl .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item a:before {
    margin-left: 5px;
    margin-right: 0; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item a:hover {
    color: #D3AD47 !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item a:hover span {
    color: #D3AD47; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.cat-item:last-child {
    padding-bottom: 7px !important; }
  .sidebar-product > .widget.bwp_woo_categories_widget ul.product-categories.sub-categories li.current-category {
    margin-bottom: 7px; }
  .sidebar-product .button-filter-toggle {
    color: #000;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: right;
    cursor: pointer;
    position: relative;
    font-weight: 700; }
  .rtl .sidebar-product .button-filter-toggle {
    text-align: left; }
  .sidebar-product .button-filter-toggle:after {
    content: "\f136";
    font-family: Material;
    font-size: 14px;
    display: inline-block;
    position: relative;
    top: 1px;
    margin-left: 5px; }
  .rtl .sidebar-product .button-filter-toggle:after {
    margin-right: 5px;
    margin-left: 0; }
  .sidebar-product .button-filter-toggle:hover {
    color: #D3AD47; }
  @media (max-width: 767px) {
    .sidebar-product .button-filter-toggle {
      margin-bottom: 30px;
      padding: 0; } }
/*
 Tags Widget
 *------------------------------------
 */
.widget_product_tag_cloud .tagcloud a {
  color: #a3a3a3;
  border: 1px solid rgba(134, 134, 134, 0.25);
  overflow: hidden;
  background: transparent;
  padding: 10px 20px;
  text-transform: capitalize;
  position: relative; }
  .widget_product_tag_cloud .tagcloud a:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 100%;
    right: 0;
    bottom: 0;
    background: #efefef;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1; }
  .rtl .widget_product_tag_cloud .tagcloud a:before {
    left: 0;
    right: auto; }
  .widget_product_tag_cloud .tagcloud a:hover {
    background: transparent; }
  .widget_product_tag_cloud .tagcloud a:hover:before {
    width: 100%;
    height: 100%;
    background: #D3AD47; }

.tagcloud a {
  position: relative;
  z-index: 1;
  font-size: 14px !important;
  color: #a3a3a3;
  margin: 0px 6px 10px 0;
  padding: 5px 25px;
  background: #f5f5f5;
  text-transform: capitalize;
  border: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-weight: 400;
  z-index: 0;
  line-height: 18px; }
  .lt-ie8 .tagcloud a {
    display: inline;
    zoom: 1; }
  .tagcloud a:hover {
    border-color: #D3AD47;
    background: #D3AD47;
    color: #fff; }
/*
 Widget Filter Product
 *------------------------------------
 */
.bwp_ajax_filte {
  display: -webkit-box; }
  .bwp_ajax_filte .bwp-block-title h2 {
    font-size: 18px;
    margin-bottom: 20px; }

.bwp-filter-ajax label {
  margin-bottom: 0; }
  .bwp-filter-ajax #bwp_form_filter_product {
    float: none; }
  .bwp-filter-ajax #bwp_form_filter_product > div {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-top: 0; }
  .bwp-filter-ajax #bwp_form_filter_product ul {
    padding: 0; }
  .bwp-filter-ajax #bwp_form_filter_product ul li {
    margin-left: 0; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product ul li {
    margin-right: 0;
    margin-left: 0; }
  .bwp-filter-ajax #bwp_form_filter_product ul li:before {
    display: none; }
  .bwp-filter-ajax #bwp_form_filter_product h3 {
    color: #000;
    padding: 15px 30px;
    background: #efefef;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    border-left: 3px solid #D3AD47; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product h3 {
    border-right: 3px solid #D3AD47;
    border-left: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price .content-filter-price {
    padding: 30px 30px 20px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price {
    margin: 0;
    background: #f5f5f5;
    border: 0;
    height: 2px;
    width: calc(100% - 14px);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-left: 7px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price {
    margin-right: 7px;
    margin-left: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price:after, .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price:before {
    display: none; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price .ui-slider-handle {
    width: 10px;
    height: 10px;
    background: #D3AD47;
    border-color: #D3AD47;
    top: -5px;
    margin-left: -5px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price .ui-slider-handle {
    margin-right: -5px;
    margin-left: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price #bwp_slider_price .ui-slider-range {
    top: -1px;
    height: 2px;
    position: absolute;
    background: #000;
    border-color: #000; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price .price-input {
    margin-top: 20px;
    color: #868686;
    font-weight: 500; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-price .price-input > span:not(.input-text) {
    color: #868686;
    font-weight: 400; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter .content_filter {
    padding: 30px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color {
    position: relative;
    line-height: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 0 5px;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin-right: 5px;
    margin-bottom: 15px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color {
    margin-left: 5px;
    margin-right: 0; }
  @media (max-width: 1199px) {
          .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color {
            margin-right: 10px; }
            .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color {
              margin-left: 10px;
              margin-right: 0; } }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color.white > span {
    border: 1px solid #cfcfcf; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color.white > span:before {
    color: #000; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color label {
    margin-left: 10px;
    cursor: pointer; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color label {
    margin-right: 10px;
    margin-left: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color mark {
    background: transparent;
    color: #868686; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color > span {
    width: 20px !important;
    height: 20px !important;
    overflow: visible;
    border: none !important;
    position: relative;
    -webkit-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0 !important;
    margin: 0 !important;
    min-width: unset;
    text-indent: unset;
    cursor: pointer; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color > span:before {
    content: "\4e";
    position: absolute;
    font-family: eleganticons;
    color: #fff;
    font-size: 10px;
    left: 5px;
    top: -5px;
    opacity: 0;
    visibility: hidden; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color:hover, .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color.active {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color:hover mark, .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color.active mark {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color:hover > span:before, .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_color.active > span:before {
    opacity: 1;
    visibility: visible; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther {
    cursor: pointer;
    display: block;
    float: unset; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div mark {
    background: transparent;
    color: #a4a4a4; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div label {
    cursor: pointer; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div span {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #d2d2d2;
    position: relative;
    margin: 0 10px 0 0;
    top: 3px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div span {
    margin: 0 0 0 10px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div span:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: #D3AD47;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
    opacity: 0;
    visibility: hidden; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div.active {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div.active span {
    border-color: #D3AD47; }
    .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div.active span:before {
      opacity: 1;
      visibility: visible; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_orther div:hover {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image {
    display: block;
    width: 100%; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div {
    cursor: pointer;
    display: flex;
    align-items: center; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div span {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #d2d2d2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    margin: 0 10px 0 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div span {
    margin: 0 0 0 10px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div.active {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div.active span {
    border-color: #D3AD47; }
    .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div.active span:before {
      opacity: 1;
      visibility: visible; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter ul li.filter_image div:hover {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product {
    padding: 30px;
    display: flex;
    flex-wrap: wrap; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li {
    padding: 0 5px !important;
    margin: 0 0 10px;
    width: 50%; }
  @media (min-width: 767px) and (max-width: 992px) {
          .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li {
            width: 33.33%; } }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li > span {
    width: 100% !important;
    height: 100% !important;
    padding: 5px !important;
    margin: 0 !important;
    box-sizing: inherit !important;
    min-height: 65px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li > span img {
    display: block !important; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li > span:after {
    display: none; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product li label {
    display: none !important; }
  @media (max-width: 1199px) {
        .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-brand ul.filter_brand_product {
          padding: 5px; } }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li {
    cursor: pointer;
    display: block;
    float: unset; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li .star-rating {
    top: 2px;
    font-size: 13px;
    width: 90px;
    margin-right: 5px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li .star-rating {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li .star-rating span {
    width: auto;
    height: auto;
    border: 0;
    margin: 0;
    text-indent: 0;
    font-size: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li .star-rating span:before {
    font-size: 13px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div {
    width: auto;
    height: auto;
    border: 0;
    margin: 0;
    overflow: unset;
    text-indent: unset;
    white-space: unset;
    position: relative;
    cursor: pointer; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div mark {
    background: transparent;
    color: #a4a4a4;
    padding: 0; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div label {
    cursor: pointer; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div > span {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #d2d2d2;
    position: relative;
    margin: 0 10px 0 0;
    top: 3px; }
  .rtl .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div > span {
    margin: 0 0 0 10px; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div > span:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: #D3AD47;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
    opacity: 0;
    visibility: hidden; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div.active {
    color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div.active > span {
    border-color: #D3AD47; }
    .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div.active > span:before {
      opacity: 1;
      visibility: visible; }
  .bwp-filter-ajax #bwp_form_filter_product .bwp-filter-rating ul li div:hover > span {
    border-color: #D3AD47; }
  .bwp-filter-ajax #bwp_form_filter_product > div {
    margin-bottom: 50px;
    float: unset;
    margin-bottom: 30px; }
  .bwp-filter-ajax #bwp_form_filter_product > div ul {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-height: 300px;
    overflow: auto; }
  .bwp-filter-ajax #bwp_form_filter_product > div ul::-webkit-scrollbar-track {
    background-color: #f5f5f5; }
  .bwp-filter-ajax #bwp_form_filter_product > div ul::-webkit-scrollbar {
    width: 3px;
    background-color: #f5f5f5; }
  .bwp-filter-ajax #bwp_form_filter_product > div ul::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1); }
  .bwp-filter-ajax #bwp_form_filter_product > div ul li {
    border: none;
    padding: 5px 0; }
  .bwp-filter-ajax #bwp_form_filter_product > div:last-child:last-child {
    margin-bottom: 0; }
  .bwp-filter-ajax .filter_clear_all {
    background: #D3AD47;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 12px;
    border: none;
    letter-spacing: 3.2px;
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer; }
  .bwp-filter-ajax .filter_clear_all:hover {
    background: #025029; }

.bwp-filter-attribute {
  border: 1px solid #e5e5e5;
  margin-bottom: 30px; }
  .bwp-filter-attribute h3 {
    color: #000;
    padding: 12px 20px;
    background: #efefef;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid #d7d7d7;
    font-family: 'Audiowide', cursive; }
  .bwp-filter-attribute .filter-attribute {
    padding: 20px; }
  .bwp-filter-attribute .filter-attribute span {
    color: #D3AD47;
    cursor: pointer;
    margin-right: 10px; }
  .rtl .bwp-filter-attribute .filter-attribute span {
    margin-left: 10px;
    margin-right: 0; }
  .bwp-filter-attribute .filter-attribute span:before {
    content: "\4d";
    font-family: ElegantIcons;
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #D3AD47;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 10px;
    text-align: center;
    font-size: 10px;
    margin-right: 5px; }
  .rtl .bwp-filter-attribute .filter-attribute span:before {
    margin-left: 5px;
    margin-right: 0; }
  .bwp-filter-attribute .filter-attribute span:hover:before {
    background: #000;
    color: #fff;
    border-color: #000; }
  .bwp-filter-attribute .filter-attribute .filter_clear_all {
    color: #D3AD47;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #D3AD47;
    padding: 0;
    line-height: 16px;
    color: #D3AD47;
    cursor: pointer; }
  .bwp-filter-attribute .filter-attribute .filter_clear_all:hover {
    color: #000;
    border-color: #000; }
/*
 *  Woocommerce Responsive
 */
@media (min-width: 992px) and (max-width: 1199px) {
  .product-block {
    -webkit-transition: none;
    transition: none; }
    .product-block .btn-outline, .product-block .button, .product-block #submit {
      min-width: inherit; }
    .product-block .image img, .product-block .image .image-hover {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
      .product-block .image:hover .image-hover {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; }
    .product-block .image-effect, .product-block .category, .product-block .overlay, .product-block .add-links {
      display: none; }
    .product-grid .add-button, .product-grid .price {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid:hover .price, .product-grid:hover .add-button {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-info .product-title {
      font-size: 20px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .product-block {
    -webkit-transition: none;
    transition: none; }
    .product-block .btn-outline, .product-block .button, .product-block #submit {
      min-width: inherit; }
    .product-block .image img, .product-block .image .image-hover {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
      .product-block .image:hover .image-hover {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; }
    .product-block .image-effect, .product-block .category, .product-block .overlay, .product-block .add-links {
      display: none; }
    .product-grid .add-button, .product-grid .price {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid:hover .price, .product-grid:hover .add-button {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid .name {
      min-height: 60px;
      font-size: 11px; } }

@media (max-width: 991px) {
  .product-block {
    -webkit-transition: none;
    transition: none; }
    .product-block .btn-outline, .product-block .button, .product-block #submit {
      min-width: inherit; }
    .product-block .image img, .product-block .image .image-hover {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
      .product-block .image:hover .image-hover {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; }
    .product-block .image-effect, .product-block .category, .product-block .overlay, .product-block .add-links {
      display: none; }
    .product-grid .add-button, .product-grid .price {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid:hover .price, .product-grid:hover .add-button {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid .btn-outline {
      padding: 0 10px; }
      .product-grid .btn-outline span {
        display: inline-block; } }

@media (max-width: 767px) {
  .product-block {
    -webkit-transition: none;
    transition: none; }
    .product-block .btn-outline, .product-block .button, .product-block #submit {
      min-width: inherit; }
    .product-block .image img, .product-block .image .image-hover {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
      .product-block .image:hover .image-hover {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; }
    .product-block .image-effect, .product-block .category, .product-block .overlay, .product-block .add-links {
      display: none; }
    .product-grid .add-button, .product-grid .price {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid:hover .price, .product-grid:hover .add-button {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid .btn-outline {
      padding: 0 10px; }
      .product-grid .btn-outline span {
        display: inline-block; } }

@media (max-width: 480px) {
  .product-block {
    -webkit-transition: none;
    transition: none; }
    .product-block .btn-outline, .product-block .button, .product-block #submit {
      min-width: inherit; }
    .product-block .image img, .product-block .image .image-hover {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
      .product-block .image:hover .image-hover {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; }
    .product-block .image-effect, .product-block .category, .product-block .overlay, .product-block .add-links {
      display: none; }
    .product-grid .add-button, .product-grid .price {
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid:hover .price, .product-grid:hover .add-button {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      visibility: visible;
      opacity: 1;
      filter: alpha(opacity=100); }
    .product-grid .btn-outline {
      padding: 0 10px; }
      .product-grid .btn-outline span {
        display: inline-block; } }
/* 10. Responsive */
/*
 *  Responsive
 */
@media (min-width: 992px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 768px) {
  .container {
    max-width: 100%; } }
  @media (min-width: 576px) {
  .container {
    max-width: 100%; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; }
    tr.hidden-xs {
      display: none !important; }
    th.hidden-xs, td.hidden-xs {
      display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; }
    tr.hidden-sm {
      display: none !important; }
    th.hidden-sm, td.hidden-sm {
      display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; }
    tr.hidden-md {
      display: none !important; }
    th.hidden-md, td.hidden-md {
      display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; }
    tr.hidden-lg {
      display: none !important; }
    th.hidden-lg, td.hidden-lg {
      display: none !important; } }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.dropdown-toggle:after {
  display: none; }

.hide {
  display: none; }

@media (min-width: 1440px) {
  .container {
    max-width: 1440px; } }

@media (min-width: 992px) {
  .bwp-navigation {
    display: inline-block;
    vertical-align: top; } }

@media (max-width: 992px) {
  #main-menu {
    margin: 0;
    float: left; }
    .rtl #main-menu {
      float: right; } }

@media (min-width: 768px) {
  .contents-detail .bwp-single-product .image-additional .image-zoom {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 1px solid rgba(163, 163, 163, 0.25);
    overflow: hidden; }
    .contents-detail .bwp-single-product .image-additional .image-zoom:before {
      position: absolute;
      content: "\54";
      font-family: ElegantIcons;
      bottom: 15px;
      right: 15px;
      z-index: 9;
      font-size: 18px;
      width: 40px;
      height: 40px;
      line-height: 38px;
      text-align: center;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      color: #000;
      text-indent: -2px;
      border: 1px solid #a3a3a3;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
      .rtl .contents-detail .bwp-single-product .image-additional .image-zoom:before {
        left: 15px;
        right: auto; }
    .contents-detail .bwp-single-product .image-additional .image-zoom:hover:before {
      background: #D3AD47;
      color: #fff;
      border-color: transparent; } }

@media (min-width: 768px) and (max-width: 991px) {
  .bwp-footer .wpbingo-newsletter input[type="submit"] {
    padding: 0 25px; } }

@media (max-width: 991px) {
  .active-mobile {
    width: 70px; }
    .active-mobile > .fa, .active-mobile > .icon {
      font-size: 25px !important; }

  .woocommerce-tabs .nav-tabs {
    margin-bottom: 20px; }
    .woocommerce-tabs .nav-tabs li {
      float: left;
      margin-right: 10px; }
      .rtl .woocommerce-tabs .nav-tabs li {
        float: right; }

  .blog-type .entry-image {
    height: auto; }

  .navbar-toggle {
    display: block; }

  .quickview-button, .product-quickview, .compare-button {
    display: none !important; }

  .wpbingo-menu-mobile {
    position: unset !important; }
    .wpbingo-menu-mobile .navbar-default .navbar-header {
      float: none; }
    .wpbingo-menu-mobile .navbar-default .navbar-toggle {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      text-transform: uppercase;
      color: #D3AD47;
      border: 0;
      border-top: 1px solid #D3AD47;
      border-bottom: 1px solid #D3AD47;
      position: unset;
      background: transparent; }

  .wpbingo-verticalmenu-mobile {
    position: unset; }
    .wpbingo-verticalmenu-mobile .navbar-header {
      float: none; }
    .wpbingo-verticalmenu-mobile .navbar-header .navbar-toggle {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      text-transform: uppercase;
      color: #D3AD47;
      border: 0;
      border-top: 1px solid #D3AD47;
      border-bottom: 1px solid #D3AD47;
      position: unset;
      background: transparent; }

  .main-archive-product, .main-single-product {
    display: flex;
    flex-direction: column; }
    .main-archive-product > .col-lg-12.col-md-12, .main-single-product > .col-lg-12.col-md-12 {
      display: flex;
      flex-direction: column; }

  .category-posts, .single-post-content {
    display: flex;
    flex-direction: column; }
    .category-posts .sidebar-blog, .single-post-content .sidebar-blog {
      order: 2;
      margin-top: 45px; }

  .header-categories .title-navigation-categories {
    font-size: 16px;
    font-weight: 700;
    color: #fff; }
    .header-categories .menu-categories {
      position: fixed;
      top: 0px;
      left: 0;
      bottom: 0px;
      background-color: #fff;
      width: 280px;
      padding: 100px 50px 0 50px !important;
      z-index: 9999;
      overflow-x: hidden;
      overflow-y: auto;
      visibility: hidden;
      border: 1px solid #f3f3f3;
      border-width: 1px 0 0 1px;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      -webkit-transform: translate3d(-280px, 0, 0);
      -moz-transform: translate3d(-280px, 0, 0);
      -ms-transform: translate3d(-280px, 0, 0);
      -o-transform: translate3d(-280px, 0, 0);
      transform: translate3d(-280px, 0, 0); }
    .header-categories .menu-categories.active {
      visibility: visible;
      -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); }
    .header-categories .menu-categories .vapier-close {
      text-align: center;
      margin-bottom: 40px; }
      .header-categories .menu-categories .vapier-close:hover {
        cursor: pointer; }
      .header-categories .menu-categories .vapier-close:before {
        content: "\f136";
        font-family: "Material";
        color: red;
        font-size: 30px; }

  .rtl .header-categories.menu-categories {
    -webkit-transform: translate3d(-280px, 0, 0);
    -moz-transform: translate3d(-280px, 0, 0);
    -ms-transform: translate3d(-280px, 0, 0);
    -o-transform: translate3d(-280px, 0, 0);
    transform: translate3d(-280px, 0, 0); }
    .rtl .header-categories.menu-categories.active {
      visibility: visible;
      -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); }

  .bwp-woo-categories.layout2 {
    border-bottom: 1px solid #fff; }
    .bwp-woo-categories.layout2 .content-category {
      display: flex;
      overflow: auto;
      padding: 20px; }
    .bwp-woo-categories.layout2 .content-category > div {
      white-space: nowrap;
      padding: 0 10px; }
      .bwp-woo-categories.layout2 .content-category > div .item-title {
        padding: 0; }
      .bwp-woo-categories.layout2 .content-category > div:first-child {
        padding-left: 0; }
        .rtl .bwp-woo-categories.layout2 .content-category > div:first-child {
          padding-right: 0;
          padding-left: 0; }
      .bwp-woo-categories.layout2 .content-category > div:last-child {
        padding-right: 0; }
        .rtl .bwp-woo-categories.layout2 .content-category > div:last-child {
          padding-left: 0;
          padding-right: 0; } }

@media (max-width: 767px) {
  .active-mobile.setting-popup .active-content {
    width: 100%;
    min-width: 320px;
    right: -100%;
    left: auto; }

  .zoomContainer {
    display: none; }

  .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
    width: 100%; }

  .post-single .post-content .entry-meta-content {
    display: block; }
    .post-single .post-content .entry-meta-content .entry-meta, .post-single .post-content .entry-meta-content .social-share {
      width: 100%;
      text-align: center; }

  .border-policy {
    padding: 20px 0; }

  .vc_col-sm-1\/5 {
    display: inline-block;
    vertical-align: top; } }

@media (max-width: 480px) {
  .single-product .woocommerce-tabs ul.tabs {
    text-align: center; }
    .single-product .woocommerce-tabs ul.tabs li {
      width: 100%; }
      .single-product .woocommerce-tabs ul.tabs li.active {
        border-bottom: none !important; }
      .single-product .woocommerce-tabs ul.tabs li a:before {
        display: none; } }

@media (max-width: 1600px) and (min-width: 1199px) {
  .wpb-col-xl-40 {
    width: 40% !important; }

  .wpb-col-xl-60 {
    width: 60% !important; }

  .m-t-xl-50 > .elementor-element-populated {
    margin-top: 50px !important; } }

@media (max-width: 1440px) and (min-width: 1199px) {
  .p-l-0 {
    padding-left: 0 !important; }

  .p-r-0 {
    padding-left: 0 !important; } }

@media (max-width: 1024px) and (min-width: 992px) {
  .order-wpb-md-1 {
    order: 1; }

  .order-wpb-md-2 {
    order: 2; }

  .order-wpb-md-3 {
    order: 3; }

  .wpb-col-md-100 {
    width: 100% !important; }

  .wpb-col-md-50 {
    width: 50% !important; } }

@media (max-width: 991px) and (min-width: 768px) {
  .wpb-col-sm-100 {
    width: 100% !important; }

  .wpb-col-sm-50 {
    width: 50% !important; }

  .wpb-col-sm-40 {
    width: 40% !important; }

  .wpb-col-sm-60 {
    width: 60% !important; }

  .wpb-col-sm-32 {
    width: 32.5% !important; }

  .wpb-col-sm-68 {
    width: 67.5% !important; }

  .m-t-100 {
    margin-top: 100px; }

  .m-t-30.elementor-inner-section {
    margin-top: 30px !important; }
    .m-t-30 .elementor-element-populated {
      margin-top: 30px !important; }

  .m-t-0 .elementor-element-populated {
    margin-top: 0 !important; }
    .m-t-0.elementor-inner-section {
      margin-top: 0 !important; }

  .m-t-50 {
    margin-top: 50px !important; }

  .p-t-30 > .elementor-element-populated {
    padding-top: 30px !important; }
    .p-t-30.elementor-inner-section {
      padding-top: 30px !important; }

  .p-t-50 {
    padding-top: 50px !important; }

  .m-b-30 {
    margin-bottom: 30px; }

  .m-b-15 {
    margin-bottom: 15px !important; }

  .order-wpb-sm-1 {
    order: 1; }

  .order-wpb-sm-2 {
    order: 2; }

  .order-wpb-sm-3 {
    order: 3; }

  .p-b-10 {
    padding-bottom: 10px !important; }

  .wpb-p-0 > .elementor-element-populated {
    padding: 0 !important; } }

@media (max-width: 767px) {
  .order-wpb-xs-1 {
    order: 1; }

  .order-wpb-xs-2 {
    order: 2; }

  .order-wpb-xs-3 {
    order: 3; } }

@media (max-width: 1510px) and (min-width: 1200px) {
  .container, .related, .cross_sell, .upsells {
    padding-left: 30px;
    padding-right: 30px; }

  .woocommerce-tabs .content-woocommerce-tabs .content-ul-tab ul.tabs, .woocommerce-tabs .content-woocommerce-tabs .content-tab {
    padding-left: 30px;
    padding-right: 30px; }

  .contents-detail .bwp-single-product {
    padding-left: 30px;
    padding-right: 30px; }

  .woocommerce-notices-wrapper {
    padding-left: 15px;
    padding-right: 15px; } }
/*! elementor-icons - v5.44.0 - 01-09-2025 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.44.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.44.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.44.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.44.0#eicon) format("svg");font-weight:400;font-style:normal}[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:a 2s infinite linear}.eicon-editor-link:before{content:"\e800"}.eicon-editor-unlink:before{content:"\e801"}.eicon-editor-external-link:before{content:"\e802"}.eicon-editor-close:before{content:"\e803"}.eicon-editor-list-ol:before{content:"\e804"}.eicon-editor-list-ul:before{content:"\e805"}.eicon-editor-bold:before{content:"\e806"}.eicon-editor-italic:before{content:"\e807"}.eicon-editor-underline:before{content:"\e808"}.eicon-editor-paragraph:before{content:"\e809"}.eicon-editor-h1:before{content:"\e80a"}.eicon-editor-h2:before{content:"\e80b"}.eicon-editor-h3:before{content:"\e80c"}.eicon-editor-h4:before{content:"\e80d"}.eicon-editor-h5:before{content:"\e80e"}.eicon-editor-h6:before{content:"\e80f"}.eicon-editor-quote:before{content:"\e810"}.eicon-editor-code:before{content:"\e811"}.eicon-elementor:before{content:"\e812"}.eicon-elementor-circle:before{content:"\e813"}.eicon-pojome:before{content:"\e814"}.eicon-plus:before{content:"\e815"}.eicon-menu-bar:before{content:"\e816"}.eicon-apps:before{content:"\e817"}.eicon-accordion:before{content:"\e818"}.eicon-alert:before{content:"\e819"}.eicon-animation-text:before{content:"\e81a"}.eicon-animation:before{content:"\e81b"}.eicon-banner:before{content:"\e81c"}.eicon-blockquote:before{content:"\e81d"}.eicon-button:before{content:"\e81e"}.eicon-call-to-action:before{content:"\e81f"}.eicon-captcha:before{content:"\e820"}.eicon-carousel:before{content:"\e821"}.eicon-checkbox:before{content:"\e822"}.eicon-columns:before{content:"\e823"}.eicon-countdown:before{content:"\e824"}.eicon-counter:before{content:"\e825"}.eicon-date:before{content:"\e826"}.eicon-divider-shape:before{content:"\e827"}.eicon-divider:before{content:"\e828"}.eicon-download-button:before{content:"\e829"}.eicon-dual-button:before{content:"\e82a"}.eicon-email-field:before{content:"\e82b"}.eicon-facebook-comments:before{content:"\e82c"}.eicon-facebook-like-box:before{content:"\e82d"}.eicon-form-horizontal:before{content:"\e82e"}.eicon-form-vertical:before{content:"\e82f"}.eicon-gallery-grid:before{content:"\e830"}.eicon-gallery-group:before{content:"\e831"}.eicon-gallery-justified:before{content:"\e832"}.eicon-gallery-masonry:before{content:"\e833"}.eicon-icon-box:before{content:"\e834"}.eicon-image-before-after:before{content:"\e835"}.eicon-image-box:before{content:"\e836"}.eicon-image-hotspot:before{content:"\e837"}.eicon-image-rollover:before{content:"\e838"}.eicon-info-box:before{content:"\e839"}.eicon-inner-section:before{content:"\e83a"}.eicon-mailchimp:before{content:"\e83b"}.eicon-menu-card:before{content:"\e83c"}.eicon-navigation-horizontal:before{content:"\e83d"}.eicon-nav-menu:before{content:"\e83e"}.eicon-navigation-vertical:before{content:"\e83f"}.eicon-number-field:before{content:"\e840"}.eicon-parallax:before{content:"\e841"}.eicon-php7:before{content:"\e842"}.eicon-post-list:before{content:"\e843"}.eicon-post-slider:before{content:"\e844"}.eicon-post:before{content:"\e845"}.eicon-posts-carousel:before{content:"\e846"}.eicon-posts-grid:before{content:"\e847"}.eicon-posts-group:before{content:"\e848"}.eicon-posts-justified:before{content:"\e849"}.eicon-posts-masonry:before{content:"\e84a"}.eicon-posts-ticker:before{content:"\e84b"}.eicon-price-list:before{content:"\e84c"}.eicon-price-table:before{content:"\e84d"}.eicon-radio:before{content:"\e84e"}.eicon-rtl:before{content:"\e84f"}.eicon-scroll:before{content:"\e850"}.eicon-search:before{content:"\e851"}.eicon-select:before{content:"\e852"}.eicon-share:before{content:"\e853"}.eicon-sidebar:before{content:"\e854"}.eicon-skill-bar:before{content:"\e855"}.eicon-slider-3d:before{content:"\e856"}.eicon-slider-album:before{content:"\e857"}.eicon-slider-device:before{content:"\e858"}.eicon-slider-full-screen:before{content:"\e859"}.eicon-slider-push:before{content:"\e85a"}.eicon-slider-vertical:before{content:"\e85b"}.eicon-slider-video:before{content:"\e85c"}.eicon-slides:before{content:"\e85d"}.eicon-social-icons:before{content:"\e85e"}.eicon-spacer:before{content:"\e85f"}.eicon-table:before{content:"\e860"}.eicon-tabs:before{content:"\e861"}.eicon-tel-field:before{content:"\e862"}.eicon-text-area:before{content:"\e863"}.eicon-text-field:before{content:"\e864"}.eicon-thumbnails-down:before{content:"\e865"}.eicon-thumbnails-half:before{content:"\e866"}.eicon-thumbnails-right:before{content:"\e867"}.eicon-time-line:before{content:"\e868"}.eicon-toggle:before{content:"\e869"}.eicon-url:before{content:"\e86a"}.eicon-t-letter:before{content:"\e86b"}.eicon-wordpress:before{content:"\e86c"}.eicon-text:before{content:"\e86d"}.eicon-anchor:before{content:"\e86e"}.eicon-bullet-list:before{content:"\e86f"}.eicon-code:before{content:"\e870"}.eicon-favorite:before{content:"\e871"}.eicon-google-maps:before{content:"\e872"}.eicon-image:before{content:"\e873"}.eicon-photo-library:before{content:"\e874"}.eicon-woocommerce:before{content:"\e875"}.eicon-youtube:before{content:"\e876"}.eicon-flip-box:before{content:"\e877"}.eicon-settings:before{content:"\e878"}.eicon-headphones:before{content:"\e879"}.eicon-testimonial:before{content:"\e87a"}.eicon-counter-circle:before{content:"\e87b"}.eicon-person:before{content:"\e87c"}.eicon-chevron-right:before{content:"\e87d"}.eicon-chevron-left:before{content:"\e87e"}.eicon-close:before{content:"\e87f"}.eicon-file-download:before{content:"\e880"}.eicon-save:before{content:"\e881"}.eicon-zoom-in:before{content:"\e882"}.eicon-shortcode:before{content:"\e883"}.eicon-nerd:before{content:"\e884"}.eicon-device-desktop:before{content:"\e885"}.eicon-device-tablet:before{content:"\e886"}.eicon-device-mobile:before{content:"\e887"}.eicon-document-file:before{content:"\e888"}.eicon-folder-o:before{content:"\e889"}.eicon-hypster:before{content:"\e88a"}.eicon-h-align-left:before{content:"\e88b"}.eicon-h-align-right:before{content:"\e88c"}.eicon-h-align-center:before{content:"\e88d"}.eicon-h-align-stretch:before{content:"\e88e"}.eicon-v-align-top:before{content:"\e88f"}.eicon-v-align-bottom:before{content:"\e890"}.eicon-v-align-middle:before{content:"\e891"}.eicon-v-align-stretch:before{content:"\e892"}.eicon-pro-icon:before{content:"\e893"}.eicon-mail:before{content:"\e894"}.eicon-lock-user:before{content:"\e895"}.eicon-testimonial-carousel:before{content:"\e896"}.eicon-media-carousel:before{content:"\e897"}.eicon-section:before{content:"\e898"}.eicon-column:before{content:"\e899"}.eicon-edit:before{content:"\e89a"}.eicon-clone:before{content:"\e89b"}.eicon-trash:before{content:"\e89c"}.eicon-play:before{content:"\e89d"}.eicon-angle-right:before{content:"\e89e"}.eicon-angle-left:before{content:"\e89f"}.eicon-animated-headline:before{content:"\e8a0"}.eicon-menu-toggle:before{content:"\e8a1"}.eicon-fb-embed:before{content:"\e8a2"}.eicon-fb-feed:before{content:"\e8a3"}.eicon-twitter-embed:before{content:"\e8a4"}.eicon-twitter-feed:before{content:"\e8a5"}.eicon-sync:before{content:"\e8a6"}.eicon-import-export:before{content:"\e8a7"}.eicon-check-circle:before{content:"\e8a8"}.eicon-library-save:before{content:"\e8a9"}.eicon-library-download:before{content:"\e9dd"}.eicon-insert:before{content:"\e8ab"}.eicon-preview-medium:before{content:"\e8ac"}.eicon-sort-down:before{content:"\e8ad"}.eicon-sort-up:before{content:"\e8ae"}.eicon-heading:before{content:"\e8af"}.eicon-logo:before{content:"\e8b0"}.eicon-meta-data:before{content:"\e8b1"}.eicon-post-content:before{content:"\e8b2"}.eicon-post-excerpt:before{content:"\e8b3"}.eicon-post-navigation:before{content:"\e8b4"}.eicon-yoast:before{content:"\e8b5"}.eicon-nerd-chuckle:before{content:"\e8b6"}.eicon-nerd-wink:before{content:"\e8b7"}.eicon-comments:before{content:"\e8b8"}.eicon-download-circle-o:before{content:"\e8b9"}.eicon-library-upload:before{content:"\e8ba"}.eicon-save-o:before{content:"\e8bb"}.eicon-upload-circle-o:before{content:"\e8bc"}.eicon-ellipsis-h:before{content:"\e8bd"}.eicon-ellipsis-v:before{content:"\e8be"}.eicon-arrow-left:before{content:"\e8bf"}.eicon-arrow-right:before{content:"\e8c0"}.eicon-arrow-up:before{content:"\e8c1"}.eicon-arrow-down:before{content:"\e8c2"}.eicon-play-o:before{content:"\e8c3"}.eicon-archive-posts:before{content:"\e8c4"}.eicon-archive-title:before{content:"\e8c5"}.eicon-featured-image:before{content:"\e8c6"}.eicon-post-info:before{content:"\e8c7"}.eicon-post-title:before{content:"\e8c8"}.eicon-site-logo:before{content:"\e8c9"}.eicon-site-search:before{content:"\e8ca"}.eicon-site-title:before{content:"\e8cb"}.eicon-plus-square:before{content:"\e8cc"}.eicon-minus-square:before{content:"\e8cd"}.eicon-cloud-check:before{content:"\e8ce"}.eicon-drag-n-drop:before{content:"\e8cf"}.eicon-welcome:before{content:"\e8d0"}.eicon-handle:before{content:"\e8d1"}.eicon-cart:before{content:"\e8d2"}.eicon-product-add-to-cart:before{content:"\e8d3"}.eicon-product-breadcrumbs:before{content:"\e8d4"}.eicon-product-categories:before{content:"\e8d5"}.eicon-product-description:before{content:"\e8d6"}.eicon-product-images:before{content:"\e8d7"}.eicon-product-info:before{content:"\e8d8"}.eicon-product-meta:before{content:"\e8d9"}.eicon-product-pages:before{content:"\e8da"}.eicon-product-price:before{content:"\e8db"}.eicon-product-rating:before{content:"\e8dc"}.eicon-product-related:before{content:"\e8dd"}.eicon-product-stock:before{content:"\e8de"}.eicon-product-tabs:before{content:"\e8df"}.eicon-product-title:before{content:"\e8e0"}.eicon-product-upsell:before{content:"\e8e1"}.eicon-products:before{content:"\e8e2"}.eicon-bag-light:before{content:"\e8e3"}.eicon-bag-medium:before{content:"\e8e4"}.eicon-bag-solid:before{content:"\e8e5"}.eicon-basket-light:before{content:"\e8e6"}.eicon-basket-medium:before{content:"\e8e7"}.eicon-basket-solid:before{content:"\e8e8"}.eicon-cart-light:before{content:"\e8e9"}.eicon-cart-medium:before{content:"\e8ea"}.eicon-cart-solid:before{content:"\e8eb"}.eicon-exchange:before{content:"\e8ec"}.eicon-preview-thin:before{content:"\e8ed"}.eicon-device-laptop:before{content:"\e8ee"}.eicon-collapse:before{content:"\e8ef"}.eicon-expand:before{content:"\e8f0"}.eicon-navigator:before{content:"\e8f1"}.eicon-plug:before{content:"\e8f2"}.eicon-dashboard:before{content:"\e8f3"}.eicon-typography:before{content:"\e8f4"}.eicon-info-circle-o:before{content:"\e8f5"}.eicon-integration:before{content:"\e8f6"}.eicon-plus-circle-o:before{content:"\e8f7"}.eicon-rating:before{content:"\e8f8"}.eicon-review:before{content:"\e8f9"}.eicon-tools:before{content:"\e8fa"}.eicon-loading:before{content:"\e8fb"}.eicon-sitemap:before{content:"\e8fc"}.eicon-click:before{content:"\e8fd"}.eicon-clock:before{content:"\e8fe"}.eicon-library-open:before{content:"\e8ff"}.eicon-warning:before{content:"\e900"}.eicon-flow:before{content:"\e901"}.eicon-cursor-move:before{content:"\e902"}.eicon-arrow-circle-left:before{content:"\e903"}.eicon-flash:before{content:"\e904"}.eicon-redo:before{content:"\e905"}.eicon-ban:before{content:"\e906"}.eicon-barcode:before{content:"\e907"}.eicon-calendar:before{content:"\e908"}.eicon-caret-left:before{content:"\e909"}.eicon-caret-right:before{content:"\e90a"}.eicon-caret-up:before{content:"\e90b"}.eicon-chain-broken:before{content:"\e90c"}.eicon-check-circle-o:before{content:"\e90d"}.eicon-check:before{content:"\e90e"}.eicon-chevron-double-left:before{content:"\e90f"}.eicon-chevron-double-right:before{content:"\e910"}.eicon-undo:before{content:"\e911"}.eicon-filter:before{content:"\e912"}.eicon-circle-o:before{content:"\e913"}.eicon-circle:before{content:"\e914"}.eicon-clock-o:before{content:"\e915"}.eicon-cog:before{content:"\e916"}.eicon-cogs:before{content:"\e917"}.eicon-commenting-o:before{content:"\e918"}.eicon-copy:before{content:"\e919"}.eicon-database:before{content:"\e91a"}.eicon-dot-circle-o:before{content:"\e91b"}.eicon-envelope:before{content:"\e91c"}.eicon-external-link-square:before{content:"\e91d"}.eicon-eyedropper:before{content:"\e91e"}.eicon-folder:before{content:"\e91f"}.eicon-font:before{content:"\e920"}.eicon-adjust:before{content:"\e921"}.eicon-lightbox:before{content:"\e922"}.eicon-heart-o:before{content:"\e923"}.eicon-history:before{content:"\e924"}.eicon-image-bold:before{content:"\e925"}.eicon-info-circle:before{content:"\e926"}.eicon-link:before{content:"\e927"}.eicon-long-arrow-left:before{content:"\e928"}.eicon-long-arrow-right:before{content:"\e929"}.eicon-caret-down:before{content:"\e92a"}.eicon-paint-brush:before{content:"\e92b"}.eicon-pencil:before{content:"\e92c"}.eicon-plus-circle:before{content:"\e92d"}.eicon-zoom-in-bold:before{content:"\e92e"}.eicon-sort-amount-desc:before{content:"\e92f"}.eicon-sign-out:before{content:"\e930"}.eicon-spinner:before{content:"\e931"}.eicon-square:before{content:"\e932"}.eicon-star-o:before{content:"\e933"}.eicon-star:before{content:"\e934"}.eicon-text-align-justify:before{content:"\e935"}.eicon-text-align-center:before{content:"\e936"}.eicon-tags:before{content:"\e937"}.eicon-text-align-left:before{content:"\e938"}.eicon-text-align-right:before{content:"\e939"}.eicon-close-circle:before{content:"\e93a"}.eicon-trash-o:before{content:"\e93b"}.eicon-font-awesome:before{content:"\e93c"}.eicon-user-circle-o:before{content:"\e93d"}.eicon-video-camera:before{content:"\e93e"}.eicon-heart:before{content:"\e93f"}.eicon-wrench:before{content:"\e940"}.eicon-help:before{content:"\e941"}.eicon-help-o:before{content:"\e942"}.eicon-zoom-out-bold:before{content:"\e943"}.eicon-plus-square-o:before{content:"\e944"}.eicon-minus-square-o:before{content:"\e945"}.eicon-minus-circle:before{content:"\e946"}.eicon-minus-circle-o:before{content:"\e947"}.eicon-code-bold:before{content:"\e948"}.eicon-cloud-upload:before{content:"\e949"}.eicon-search-bold:before{content:"\e94a"}.eicon-map-pin:before{content:"\e94b"}.eicon-meetup:before{content:"\e94c"}.eicon-slideshow:before{content:"\e94d"}.eicon-t-letter-bold:before{content:"\e94e"}.eicon-preferences:before{content:"\e94f"}.eicon-table-of-contents:before{content:"\e950"}.eicon-tv:before{content:"\e951"}.eicon-upload:before{content:"\e952"}.eicon-instagram-comments:before{content:"\e953"}.eicon-instagram-nested-gallery:before{content:"\e954"}.eicon-instagram-post:before{content:"\e955"}.eicon-instagram-video:before{content:"\e956"}.eicon-instagram-gallery:before{content:"\e957"}.eicon-instagram-likes:before{content:"\e958"}.eicon-facebook:before{content:"\e959"}.eicon-twitter:before{content:"\e95a"}.eicon-pinterest:before{content:"\e95b"}.eicon-frame-expand:before{content:"\e95c"}.eicon-frame-minimize:before{content:"\e95d"}.eicon-archive:before{content:"\e95e"}.eicon-colors-typography:before{content:"\e95f"}.eicon-custom:before{content:"\e960"}.eicon-footer:before{content:"\e961"}.eicon-header:before{content:"\e962"}.eicon-layout-settings:before{content:"\e963"}.eicon-lightbox-expand:before{content:"\e964"}.eicon-error-404:before{content:"\e965"}.eicon-theme-style:before{content:"\e966"}.eicon-search-results:before{content:"\e967"}.eicon-single-post:before{content:"\e968"}.eicon-site-identity:before{content:"\e969"}.eicon-theme-builder:before{content:"\e96a"}.eicon-download-bold:before{content:"\e96b"}.eicon-share-arrow:before{content:"\e96c"}.eicon-global-settings:before{content:"\e96d"}.eicon-user-preferences:before{content:"\e96e"}.eicon-lock:before{content:"\e96f"}.eicon-export-kit:before{content:"\e970"}.eicon-import-kit:before{content:"\e971"}.eicon-lottie:before{content:"\e972"}.eicon-products-archive:before{content:"\e973"}.eicon-single-product:before{content:"\e974"}.eicon-disable-trash-o:before{content:"\e975"}.eicon-single-page:before{content:"\e976"}.eicon-wordpress-light:before{content:"\e977"}.eicon-cogs-check:before{content:"\e978"}.eicon-custom-css:before{content:"\e979"}.eicon-global-colors:before{content:"\e97a"}.eicon-globe:before{content:"\e97b"}.eicon-typography-1:before{content:"\e97c"}.eicon-background:before{content:"\e97d"}.eicon-device-responsive:before{content:"\e97e"}.eicon-device-wide:before{content:"\e97f"}.eicon-code-highlight:before{content:"\e980"}.eicon-video-playlist:before{content:"\e981"}.eicon-download-kit:before{content:"\e982"}.eicon-kit-details:before{content:"\e983"}.eicon-kit-parts:before{content:"\e984"}.eicon-kit-upload:before{content:"\e985"}.eicon-kit-plugins:before{content:"\e986"}.eicon-kit-upload-alt:before{content:"\e987"}.eicon-hotspot:before{content:"\e988"}.eicon-paypal-button:before{content:"\e989"}.eicon-shape:before{content:"\e98a"}.eicon-wordart:before{content:"\e98b"}.eicon-checkout:before{content:"\e98c"}.eicon-container:before{content:"\e98d"}.eicon-flip:before{content:"\e98e"}.eicon-info:before{content:"\e98f"}.eicon-my-account:before{content:"\e990"}.eicon-purchase-summary:before{content:"\e991"}.eicon-page-transition:before{content:"\e992"}.eicon-spotify:before{content:"\e993"}.eicon-stripe-button:before{content:"\e994"}.eicon-woo-settings:before{content:"\e995"}.eicon-woo-cart:before{content:"\e996"}.eicon-grow:before{content:"\e997"}.eicon-order-end:before{content:"\e998"}.eicon-nowrap:before{content:"\e999"}.eicon-order-start:before{content:"\e99a"}.eicon-progress-tracker:before{content:"\e99b"}.eicon-shrink:before{content:"\e99c"}.eicon-wrap:before{content:"\e99d"}.eicon-align-center-h:before{content:"\e99e"}.eicon-align-center-v:before{content:"\e99f"}.eicon-align-end-h:before{content:"\e9a0"}.eicon-align-end-v:before{content:"\e9a1"}.eicon-align-start-h:before{content:"\e9a2"}.eicon-align-start-v:before{content:"\e9a3"}.eicon-align-stretch-h:before{content:"\e9a4"}.eicon-align-stretch-v:before{content:"\e9a5"}.eicon-justify-center-h:before{content:"\e9a6"}.eicon-justify-center-v:before{content:"\e9a7"}.eicon-justify-end-h:before{content:"\e9a8"}.eicon-justify-end-v:before{content:"\e9a9"}.eicon-justify-space-around-h:before{content:"\e9aa"}.eicon-justify-space-around-v:before{content:"\e9ab"}.eicon-justify-space-between-h:before{content:"\e9ac"}.eicon-justify-space-between-v:before{content:"\e9ad"}.eicon-justify-space-evenly-h:before{content:"\e9ae"}.eicon-justify-space-evenly-v:before{content:"\e9af"}.eicon-justify-start-h:before{content:"\e9b0"}.eicon-justify-start-v:before{content:"\e9b1"}.eicon-woocommerce-cross-sells:before{content:"\e9b2"}.eicon-woocommerce-notices:before{content:"\e9b3"}.eicon-inner-container:before{content:"\e9b4"}.eicon-warning-full:before{content:"\e9b5"}.eicon-exit:before{content:"\e9b6"}.eicon-loop-builder:before{content:"\e9b7"}.eicon-notes:before{content:"\e9b8"}.eicon-read:before{content:"\e9b9"}.eicon-unread:before{content:"\e9ba"}.eicon-carousel-loop:before{content:"\e9bb"}.eicon-mega-menu:before{content:"\eb78"}.eicon-nested-carousel:before{content:"\e9bd"}.eicon-ai:before{content:"\e9be"}.eicon-taxonomy-filter:before{content:"\eb7d"}.eicon-container-grid:before{content:"\ef02"}.eicon-upgrade:before{content:"\e9c1"}.eicon-advanced:before{content:"\eb84"}.eicon-div-block:before{content:"\eb9b"}.eicon-notification:before{content:"\e9c3"}.eicon-light-mode:before{content:"\e9c4"}.eicon-dark-mode:before{content:"\e9c5"}.eicon-upgrade-crown:before{content:"\e9c6"}.eicon-off-canvas:before{content:"\e9c7"}.eicon-speakerphone:before{content:"\e9c9"}.eicon-ehp-cta:before{content:"\e9cb"}.eicon-ehp-forms:before{content:"\e9bc"}.eicon-ehp-hero:before{content:"\e9ca"}.eicon-ehp-zigzag:before{content:"\e9cc"}.eicon-e-button:before{content:"\e9ce"}.eicon-flexbox:before{content:"\e9d0"}.eicon-paragraph:before{content:"\e9d1"}.eicon-icon:before{content:"\e9d2"}.eicon-e-image:before{content:"\e9d3"}.eicon-video:before{content:"\e9d4"}.eicon-svg:before{content:"\e9d5"}.eicon-e-divider:before{content:"\e9d6"}.eicon-e-heading:before{content:"\e9d7"}.eicon-atomic:before{content:"\ebae"}.eicon-library-delete:before{content:"\e9d8"}.eicon-library-copy:before{content:"\e9d9"}.eicon-library-folder-empty:before{content:"\e9da"}.eicon-library-move:before{content:"\e9db"}.eicon-library-edit:before{content:"\e9dc"}.eicon-library-subscription-upgrade:before{content:"\e9de"}.eicon-library-folder-view:before{content:"\e9df"}.eicon-library-grid:before{content:"\e9e1"}.eicon-library-cloud-connect:before{content:"\e9e2"}.eicon-library-import:before{content:"\e9e3"}.eicon-library-list:before{content:"\e9e4"}.eicon-library-cloud-empty:before{content:"\e9e5"}.eicon-folder-plus:before{content:"\e8aa"}.eicon-library-folder:before{content:"\e9e6"}.eicon-accessibility:before{content:"\e9bf"}.eicon-lock-outline:before{content:"\e9e7"}.eicon-e-youtube:before{content:"\e9e8"}.eicon-contact:before{content:"\ebd2"}.eicon-eye:before{content:"\e8ac"}.eicon-elementor-square:before{content:"\e813"}/*! elementor - v3.32.0 - 18-09-2025 */
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-widescreen-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-laptop-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}/*! elementor - v3.32.0 - 18-09-2025 */
.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0:not(:has(.elementor-widget-container)){font-size:0;line-height:1}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;align-items:center;background-color:#69727d;cursor:pointer;display:inline-flex;justify-content:center;text-align:center}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{color:#fff;opacity:.9}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot");
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff") format("woff"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-threads:before {
  content: '\e9cb'; }

.fa-threads-square:before {
  content: '\e9cc'; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-x-twitter:before {
  content: "\e9ca"; }

.fa-x-twitter-square:before {
  content: "\e9c9"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot");
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff") format("woff"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Audiowide';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/audiowide-l7gdbjpo0cum0ckerwcdma_oixo.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Audiowide';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(http://theamsterdam.net/wp-content/uploads/elementor/google-fonts/fonts/audiowide-l7gdbjpo0cum0ckerwcdlg_o.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body.wc-block-product-gallery-modal-open,body.wc-modal--open{overflow:hidden}.wc-block-grid__products .wc-block-grid__product-image{display:block;position:relative;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image a{border:0;box-shadow:none;outline:0;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image img{height:auto;max-width:100%;width:100%}.wc-block-grid__products .wc-block-grid__product-image img[hidden]{display:none}.wc-block-grid__products .wc-block-grid__product-image img[alt=""]{border:1px solid #f2f2f2}.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,.editor-styles-wrapper .wc-block-grid__product-title,.wc-block-grid__product-title{color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:700;line-height:1.2;padding:0}.wc-block-grid__product-price{display:block}.wc-block-grid__product-price .wc-block-grid__product-price__regular{margin-right:.5em}.wc-block-grid__product-add-to-cart.wp-block-button{white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{display:inline-flex;font-size:1em;justify-content:center;text-align:center;white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading{opacity:.25}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.added:after{content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after{animation:spin 2s linear infinite;content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.has-5-columns:not(.alignfull) .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-6-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-7-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-8-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-9-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after{content:"";margin:0}.wc-block-grid__product-rating,.wp-block-woocommerce-product-review-rating{display:block}.wc-block-grid__product-rating .star-rating,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars,.wc-block-grid__product-rating .wc-block-product-review-rating__stars,.wp-block-woocommerce-product-review-rating .star-rating,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars{font-family:WooCommerce;font-size:1em;font-weight:400;height:1.618em;line-height:1.618;margin:0 auto;overflow:hidden;position:relative;text-align:left;width:5.3em}.wc-block-grid__product-rating .star-rating:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars:before,.wp-block-woocommerce-product-review-rating .star-rating:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars:before{content:"SSSSS";left:0;opacity:.5;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid__product-rating .star-rating span,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span,.wp-block-woocommerce-product-review-rating .star-rating span,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span{left:0;overflow:hidden;padding-top:1.5em;position:absolute;right:0;top:0}.wc-block-grid__product-rating .star-rating span:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span:before,.wp-block-woocommerce-product-review-rating .star-rating span:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span:before{color:inherit;content:"SSSSS";left:0;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid .wc-block-grid__product-onsale,.wc-block-grid__product-image .wc-block-grid__product-onsale{background:#fff;border:1px solid #43454b;border-radius:4px;color:#43454b;display:inline-block;font-size:.875em;font-weight:600;left:auto;padding:.25em .75em;position:absolute;right:4px;text-align:center;text-transform:uppercase;top:4px;width:auto;z-index:9}.wc-block-grid__product .wc-block-grid__product-image,.wc-block-grid__product .wc-block-grid__product-link{display:inline-block;position:relative}.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),.wc-block-grid__product .wc-block-grid__product-title{margin:0 0 12px}.wc-block-grid__product .wc-block-grid__product-add-to-cart,.wc-block-grid__product .wc-block-grid__product-onsale,.wc-block-grid__product .wc-block-grid__product-price,.wc-block-grid__product .wc-block-grid__product-rating{margin:0 auto 12px}.theme-twentysixteen .wc-block-grid .price ins{color:#77a464}.theme-twentynineteen .wc-block-grid__product{font-size:.88889em}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-components-product-title,.theme-twentynineteen .wc-block-grid__product-onsale,.theme-twentynineteen .wc-block-grid__product-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}.theme-twentynineteen .wc-block-grid__product-title:before{display:none}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-grid__product-onsale{line-height:1}.theme-twentynineteen .editor-styles-wrapper .wp-block-button .wp-block-button__link:not(.has-text-color){color:#fff}.theme-twentytwenty .wc-block-grid__product-link{color:#000}.theme-twentytwenty .wc-block-components-product-title,.theme-twentytwenty .wc-block-grid__product-title{color:#cd2653;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:1em}.theme-twentytwenty .wp-block-columns .wc-block-components-product-title{margin-top:0}.theme-twentytwenty .wc-block-components-product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-components-product-price__value,.theme-twentytwenty .wc-block-grid__product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-grid__product-price__value{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:.9em}.theme-twentytwenty .wc-block-components-product-price del,.theme-twentytwenty .wc-block-grid__product-price del{opacity:.7}.theme-twentytwenty .wc-block-components-product-price ins,.theme-twentytwenty .wc-block-grid__product-price ins{text-decoration:none}.theme-twentytwenty .star-rating,.theme-twentytwenty .wc-block-grid__product-rating{font-size:.7em}.theme-twentytwenty .star-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .star-rating .wc-block-grid__product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-grid__product-rating__stars{line-height:1}.theme-twentytwenty .wc-block-components-product-button>.wp-block-button__link,.theme-twentytwenty .wc-block-grid__product-add-to-cart>.wp-block-button__link{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif}.theme-twentytwenty .wc-block-components-product-sale-badge,.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{background:#cd2653;color:#fff;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-weight:700;letter-spacing:-.02em;line-height:1.2;text-transform:uppercase}.theme-twentytwenty .wc-block-grid__products .wc-block-components-product-sale-badge{position:static}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-image .wc-block-components-product-sale-badge{position:absolute}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale:not(.wc-block-components-product-sale-badge){position:absolute;right:4px;top:4px;z-index:1}.theme-twentytwenty .wc-block-active-filters__title,.theme-twentytwenty .wc-block-attribute-filter__title,.theme-twentytwenty .wc-block-price-filter__title,.theme-twentytwenty .wc-block-stock-filter__title{font-size:1em}.theme-twentytwenty .wc-block-active-filters .wc-block-active-filters__clear-all,.theme-twentytwenty .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{font-size:.75em}@media only screen and (min-width:768px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}@media only screen and (min-width:1168px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}.theme-twentytwentytwo .wc-block-grid__product-add-to-cart .added_to_cart{display:block;margin-top:12px}.theme-twentytwentytwo .wc-block-components-product-price ins,.theme-twentytwentytwo .wc-block-grid__product-price ins{text-decoration:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute!important;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip-path:none;color:#2b2d2f;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.wp-block-group.woocommerce.product .up-sells.upsells.products{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wc-block-components-notice-banner{align-content:flex-start;align-items:stretch;background-color:#fff;border:1px solid #2f2f2f;border-radius:4px;box-sizing:border-box;color:#2f2f2f;display:flex;font-size:.875em;font-weight:400;gap:12px;line-height:1.5;margin:16px 0;padding:16px!important}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content{align-self:center;flex-basis:100%;padding-right:16px;white-space:normal}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content:last-child{padding-right:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary{font-weight:600;margin:0 0 8px}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul{margin:0 0 0 24px;padding:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol li:after,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul li:after{clear:both;content:"";display:block}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward{appearance:none;background:transparent!important;border:0;color:#2f2f2f!important;float:right;margin:0;opacity:.7;padding:0!important;text-decoration-line:underline;text-underline-position:under;transition:all .2s ease-in-out}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:active,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:focus,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover{opacity:1;text-decoration:none}.wc-block-components-notice-banner>svg{fill:#fff;background-color:#2f2f2f;border-radius:50%;flex-grow:0;flex-shrink:0;height:100%;padding:2px}.wc-block-components-notice-banner>.wc-block-components-button{background:transparent none!important;border:0!important;box-shadow:none!important;color:#2f2f2f!important;flex:0 0 16px;height:16px!important;margin:6px 0 0 auto!important;min-height:auto!important;min-width:0!important;opacity:.6;outline:none!important;padding:0!important;width:16px!important}.wc-block-components-notice-banner>.wc-block-components-button>svg{margin:0!important}.wc-block-components-notice-banner>.wc-block-components-button:active,.wc-block-components-notice-banner>.wc-block-components-button:focus,.wc-block-components-notice-banner>.wc-block-components-button:hover{opacity:1}.wc-block-components-notice-banner>.wc-block-components-button:focus{outline:2px solid currentColor!important;outline-offset:0}.wc-block-components-notice-banner.is-error{background-color:#fff0f0;border-color:#cc1818}.wc-block-components-notice-banner.is-error>svg{background-color:#cc1818;transform:rotate(180deg)}.wc-block-components-notice-banner.is-warning{background-color:#fffbf4;border-color:#f0b849}.wc-block-components-notice-banner.is-warning>svg{background-color:#f0b849;transform:rotate(180deg)}.wc-block-components-notice-banner.is-success{background-color:#f4fff7;border-color:#4ab866}.wc-block-components-notice-banner.is-success>svg{background-color:#4ab866}.wc-block-components-notice-banner.is-info{background-color:#f4f8ff;border-color:#007cba}.wc-block-components-notice-banner.is-info>svg{background-color:#007cba}.wc-block-components-notice-banner:focus{outline-width:0}.wc-block-components-notice-banner:focus-visible{outline-style:solid;outline-width:2px}.woocommerce.wc-block-store-notices.alignwide{max-width:var(--wp--style--global--wide-size)}
/*! elementor - v3.32.0 - 18-09-2025 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}/*! elementor - v3.32.0 - 18-09-2025 */
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-widescreen-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-laptop-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}@font-face{font-family:"qlwapp-whatsapp";src:url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAYEAAsAAAAABbgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFKmNtYXAAAAFoAAAAVAAAAFQXVtKHZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAfwAAAH8pb7IGGhlYWQAAAPAAAAANgAAADYUXm9HaGhlYQAAA/gAAAAkAAAAJAfAA8ZobXR4AAAEHAAAABQAAAAUCgAAA2xvY2EAAAQwAAAADAAAAAwAKAESbWF4cAAABDwAAAAgAAAAIAAJAJluYW1lAAAEXAAAAYYAAAGGmUoJ+3Bvc3QAAAXkAAAAIAAAACAAAwAAAAMDAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkA//3//wAAAAAAIOkA//3//wAB/+MXBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAwAD/8AD/gPAACcATwCWAAABJicuAScmIyIHDgEHBhUUFhcDJR4BMzE4ATEyNz4BNzY1NCcuAScmATEiJi8BBzcnLgE1NDc+ATc2MzIXHgEXFhcWFx4BFxYVFAcOAQcGIxMuAScmIgcOAQcOAScuAScuAScmNjc+ATc+ATc2JicuAScuASMmIiMiBgcOARUUFhcWFx4BFxYXHgEXHgE3PgE3PgEnLgEnA2kkKSpbMTEzaVxdiSgoIiJIAQ03e0BpXF2KKCgKCiYbHP51OW0xD6ArCiAhIiFyTU1XKygpTCIjHh0XFyAICCEick1NV+cJRAkJDQcGHAYGDAkKOCQdJAYGBwUECgUEBQMDAQMCHQgHEAUGDAcGEwgJJC8FAhEQOCcnMBYkDhcoERI7CAgCAgMMCgMrJBwcJQoKKCiKXFxpQ4E6/vlHHx8oKIldXGkzMTFbKin9Fx4dCSmbEDJzPFdNTHMhIQgIHxcXHh4jIkwpKCtXTU1yISIBPAUhBAMKCSIHBgIFBRogGTYJCQwFBAwGBgkGBgwEBUcTEgMBBwkJMi8vTgYDFxY8IB8UCg0EBwEDAyMWFiIEBAcEAAAAAAEAAAABAAAmrdZpXw889QALBAAAAAAA2KCVZQAAAADYoJVlAAD/wAP+A8AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA/4AAQAAAAAAAAAAAAAAAAAAAAUEAAAAAAAAAAAAAAACAAAABAAAAwAAAAAACgAUAB4A/gABAAAABQCXAAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABwAAAAEAAAAAAAIABwBgAAEAAAAAAAMABwA2AAEAAAAAAAQABwB1AAEAAAAAAAUACwAVAAEAAAAAAAYABwBLAAEAAAAAAAoAGgCKAAMAAQQJAAEADgAHAAMAAQQJAAIADgBnAAMAAQQJAAMADgA9AAMAAQQJAAQADgB8AAMAAQQJAAUAFgAgAAMAAQQJAAYADgBSAAMAAQQJAAoANACkaWNvbW9vbgBpAGMAbwBtAG8AbwBuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwaWNvbW9vbgBpAGMAbwBtAG8AbwBuaWNvbW9vbgBpAGMAbwBtAG8AbwBuUmVndWxhcgBSAGUAZwB1AGwAYQByaWNvbW9vbgBpAGMAbwBtAG8AbwBuRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");font-weight:normal;font-style:normal}.qlwapp__button{display:inline-flex;position:relative;align-items:center;justify-content:center;gap:12px;text-decoration:none;white-space:nowrap;pointer-events:all;padding:var(--qlwapp--padding-xs) var(--qlwapp--padding-md);margin-top:24px;margin-bottom:24px;margin-left:auto;margin-right:auto;height:40px;box-shadow:0 1px 6px 0 rgba(0,0,0,.06),0 2px 32px 0 rgba(0,0,0,.16);cursor:pointer}.qlwapp__button,.qlwapp__button:active,.qlwapp__button:focus,.qlwapp__button:hover{outline:none !important;text-decoration:none !important;color:var(--qlwapp-scheme-text, #ffffff) !important;background-color:var(--qlwapp-scheme-brand, #25d366) !important}.qlwapp__button .qlwapp__label,.qlwapp__button .qlwapp__time{position:absolute;bottom:-2em;color:initial;font-size:10px;display:inline-block;top:auto;width:120px}.qlwapp__button .qlwapp__close{font-size:var(--qlwapp-scheme-icon-font-size, 30px)}.qlwapp__button .qlwapp__icon{display:flex;align-items:baseline;font-size:var(--qlwapp-scheme-icon-font-size, 30px)}.qlwapp__button .qlwapp__custom-image{display:flex;align-items:center;justify-content:center;object-fit:initial !important}.qlwapp__button--bubble{right:auto;width:var(--qlwapp-scheme-icon-size, 60px);height:var(--qlwapp-scheme-icon-size, 60px);padding:0px}.qlwapp__button--bubble .qlwapp__icon{margin:0}.qlwapp__button--bubble .qlwapp__custom-image{width:40px !important;height:40px !important;min-width:100% !important;min-height:100% !important;object-fit:initial !important;max-width:40px !important;max-height:40px !important;flex-shrink:0;margin:0;border-radius:50% !important}.qlwapp__button--bubble .qlwapp__text{position:absolute;right:var(--qlwapp-scheme-icon-size, 60px);height:var(--qlwapp-scheme-icon-size, 60px);margin:0 24px;display:flex;align-items:center;justify-content:flex-end;font-weight:bold;white-space:pre;color:var(--qlwapp-scheme-text, #303030)}.qlwapp__button--image{right:auto;width:var(--qlwapp-scheme-icon-size, 60px);height:var(--qlwapp-scheme-icon-size, 60px);padding:0px}.qlwapp__button--image .qlwapp__icon{margin:0}.qlwapp__button--image .qlwapp__custom-image{min-width:100% !important;min-height:100% !important;object-fit:initial !important;max-width:100px !important;max-height:100px !important}.qlwapp__button--image .qlwapp__text{position:absolute;right:var(--qlwapp-scheme-icon-size, 60px);height:var(--qlwapp-scheme-icon-size, 60px);margin:0 24px;display:flex;align-items:center;justify-content:flex-end;font-weight:bold;white-space:pre;color:var(--qlwapp-scheme-text, #303030)}.qlwapp__button--disabled{pointer-events:none;opacity:.5}.qlwapp__icon{font-family:"qlwapp-whatsapp" !important;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.qlwapp__icon:before{content:""}.qlwapp__previous,.qlwapp__close{font-family:"Source Serif Pro";display:block;opacity:.8;font-style:unset;font-size:24px;font-weight:bold;cursor:pointer;text-align:center;line-height:1em;z-index:1;fill:var(--qlwapp-scheme-text, #ffffff);display:flex}.qlwapp__notification-bubble{position:absolute;top:-4px;right:-4px;background-color:#dc3545;color:#fff;border-radius:50%;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:bold;line-height:1;z-index:10;border:2px solid #fff;box-shadow:0 2px 4px rgba(0,0,0,.2);animation-duration:1.5s;animation-timing-function:ease-in;animation-iteration-count:1;--qlwapp-pulse-color: rgba(220, 53, 69, 0.7);--qlwapp-pulse-size: 4px}.qlwapp__notification-bubble--bounce{animation-name:bounce}.qlwapp__notification-bubble--flash{animation-name:flash}.qlwapp__notification-bubble--pulse{animation-name:pulse}.qlwapp__notification-bubble--shakeX{animation-name:shakeX}.qlwapp__notification-bubble--shakeY{animation-name:shakeY}.qlwapp__notification-bubble--none{animation:none}.qlwapp__avatar{position:relative;width:62px;height:62px}.qlwapp__avatar .qlwapp__avatar__container{overflow:hidden;width:inherit;height:inherit;border-radius:50%;box-shadow:0 0 0 2px #eee;display:flex;align-items:center;justify-content:center}.qlwapp__avatar .qlwapp__avatar__container:after{content:"";display:block;width:15px;height:15px;position:absolute;top:3px;right:-2px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAXgklEQVR4Ad2aCXhV9Zn/scv/P/N02mfmmc50anWqdUHUouwLYSFhCQlhIYEkLEnYF1SkoriXKkWxLo+2OlintopOq9UiewJJSEJCErKHsBAWCIshYSFAWO5y7zvf833uub78nnNvEhaxc9oP7295f+/vPd/znuXmsZ2I3Eh+AO4FkWAe+D3IAlWgDtSD4+AI2AMKwQrwEkgC3cGtV7y/X2j9bAdsG7kRoj0ApoOPwWHglqs7zoGt4AUwCvzw/6KAt4JnQC7wyvU9joAPQRz47t+7gBHgU3BKbsyxAzwGbvl7E7ArWCffnOMkWAD++Zsu4O3gXeCTb+axB6R8EwW8CTwK6uUqDq/fJxd9F6XJc0aOXqqXAxfqZN+FA3Lo4hFpcB2XZm+zuP1uuQZHOuj0TRHwDrBeruA47joh287tkM+OrZKlB96UZ2oXyy92PSNzdyyQ6TXzZPK2hyRt2xyZuu1hmbF9vjy8c6Es3L1IFu1dKv916H3JOVkAkQ/JBe9FuYLjLHjkRgs4EjQA8avM/MqaxzFXg2SeyJGl+9+kSBOrZ0pS1VQZXzWd7UnVsySlerakQrg0Mtdqg9kYn0WfCVUzrDVgGn3mQ/TlRz+R8jNV4vK1uUI/Av9yIwScBnxKNmK3TPV2Ne+RPxz+iKKNq5wsyTh5CGWLdBXMoaiJlVMkqXKqPF37omw4kS1nPefMS6p7Zj8f/9z5dQq4lBubledQc7XNe+X1g++wssbhJCdVzZLU6jkB5gbbaQYcUz5psIRt1d/GMViuYSWPrUiTeTufki8a1soF3wXhYSjmB/gH2ANyEP92u94C3gSW+UUlYBvjaHA1yjuH/sAqG4uKg7XFUszWVo8bY87tFFpHIOQMCvnozqcl92SBUX5+ctn//IA/G6XP9RTwbaoVwA+YiKHippObZWbNfEnACUysmikpVbMpYAgLwoxXKapb2VYkV06DkJPllf1vybFLDepp46cJikc43gi6ot+uFbRJwBe5SaiNRfgJ8tuD71nCIfHpuF1nK2YpZpuWmH3tn6L8w8d0JqE8VWbV/EK2NpWrYgzmT6s4Au66lgIm6w1MrKMR32mL9iyVMWUpMrFyZjDxiQr2Kwnb2sfsc8zyNcbVfPg5rDV9Eivwtq+cISsb7K8uJZzQakpgfgjahaM14g2A44Vw4u09v1/m1Dwu8bjKEI9MoNVgzGjThm2HjxFunOvNOBA1uWK6dZH5ReDz+4IiivP5rQA3XU0F/iucDoYTb9e5WplS/bAklKUFkp3BqwxrMBPjnP/Kr4JW+ygwb/Rpnf3NuXB+zG9U6UR5p+59LWIonrwaAf8cTrz95+soXnx5GsSY0QLTJTnQtu3Vrmk5jukPKu32dBkJEd879KHw8IcU0QV6XomAY8OJd9rdJA/VLJTRpSl2Qn93JFVMkxGlE+Tz+lUtVWGRz+f7DmhnEqo0fwB2OYrnF/6g//We17l5cjkSKZ8mpAKwD9g25zim0P7GOgOHtQpjjLGIsbexF8bGlU3B42eyFJwqbknE2X4IZhBSwGfDVd8fDn0ssVuTJREJtMSYslSJ2zpe4ooJiS9NY/KJ14WppDV+OseUyjly9GJ9OBEbwA9NrZzE+xE4HUq8sqYq3rZjy6YwiXEWZZrgGMWaV/GUfH54tWyoz5aM+ixZcWStPFz5pIwumQSfaSHXJhL2ac15WO0La7a1jzOJNvCJKxkvz+9+WTx+TzgRf+ODRhonAX8TSrxmz3mZu+0JGVkykaU/1gTJ2O3hRcny2q635bzngphHw4VGSSmZI2NKU+lrMs45bqsZ12ofWNWO3Zok6xo2BgX0EVsDtl3gznAC3gwC33w+U0D57MtVMqw4UcaW4rkBxpZODrQB2gSJxBQlyYvbXxUJrHO6GO/v+5h+WEvwHGI8xmWf7QBsG33urfY3maxQa/jMU37qPEbhrphS+YiccZ/96q3sA5cL+Wo4ARdiQUB5n/i42CfWccp1WlIq5nKTeGwIgknp/oitE2Va6Tw5danJUTxbwMPNR2VMYSqqMI3rHClR8Q0SuM5uE91X88CcM9vKDitKlA8Pf6Jy90lAE1vML9H+vpOA34bDbryahahF1vHBoU9kaNE4iS9JkzEgaEsvb0cXjJPs+rywbzT76i7Z8QarkDHsmGb8UJS2zneM9jVRuduMRAFMKp8jDZeOC46ADtQEWthF5Z/m9BKJ8mEWgtHZRvysPkmreEhGFE/AJqlBRm9VbRDLl8bT4va6TQFNOF94vISCc31o7Hljb2D2wRgQZr05xzWm7+DCBPn06ErmqAvKbiP/dCcBl9HBwDrWN2Qx6ChsRphsCmwKrN3GxlsS+GzT4oUT0OV1ydzyhRJblMz1Ohas2kNh7w/sOW11bnrchHspH733cBTClMp50uQ+wwIyBQTWe6K9FvA7oMoQj7ev1++VhdtfkOiixODmI4NM0m2Jzh8nhY0l4QU0RFy+/1OJyh9tnOCkr/YpDozBcj9iCsJ5Iz9jPdfpPuPZeyk4zoLJPb4lWIUmyH+yFrCHD4dT9dWc2YkHaxJu34kASQC0A5awPdy6vQvT5Mvz9W0SsPHCCUkumsHbH3EUdmxjLzVnjjn7me2W18NSwFf2/DacgH/SAs4KcfvyWRBVMIaixRUBWA3GSQxuw+TiGXLGdbZlAQ0Rf7v7v1GF8cI9uI/C2Ic+GuVn2xFFpo+9Dtbw174j6EfLx0pi6XR8TZy2b2OTo8j/+7aA7zncvnz7PF6zyHq2YbMJZHjAmgwrTJLEounSdOlMmwVce2SjRG4ebceGnch2sK+IM+ZUXoafczu8n+6Pl+jCRKlu2h6qCn3I/16I5/t/aO8yJql648XjEr91MsUZXjiBIDDseIm1LIAFEySmMFli88fL/rMH2yzg0h1vSWQ+BQzGB4wbWwjQJvZ+dh6Yty19uS5gbfS4BdfYbe7BGPYa2GCsgcjpo0OfmQIq/DHtUGk/QafZ6fbddXaPRG9JgoDJEkO4AduEbfY5PiB3pKw/mtmmZ2BRY5kM25zIi6Tjxqr47Ks50w97G7loP2LnreI5Wu2DizpGntq++PJb2Kut/zkI6Otov0C8hoCZDbkyIH+UDNvCk4Ml7NNqMN8vb6S8tvOdVn/G1J07LPEFk/GMjed6jblPjLEXrTlXaFi2DR9zXBWIEZN5zah4TPhdqz5jlJCfWxXYlx2FLeC7Bz6QvnkjhFUIYMMyqCBBJhXNkXPu5nAicu7kpVMypfhR6b95lI6t2q2nTesLwsfQDMpPkKSSmXLWfU4Ekni9XhSZhY8WOhW2w4siwcfBAErA53csZVUNLUhskWjLbkmUPpuGy4Yvc0IKKH7h8cK2V6VXTgwTbTm+sU/r0bmBtq0bnD+Wz078bmfeFA4iUi9aX3U7/DOXyhIlIBbMr36OAg4pGKdIFNp8NabonzdKZpc8zosRUkQcy2o/kF6bYpioETssat+2+3Gs9UBAfl7VNO0UHNRHA0FrLQGfMif8gc+YuZVPUkAECjDOuW0QkT1cNtXnhxXw9KUmSSyYTsGHhIxNa2LMh/PlvNlv5Xr2ef4lJyu0gJoDloC/NCcwRjur4gnpmztCBiFQkM12O4GgD9i2fbhpcsFMOe8+H1bEgoZiiB0nUZvjsc6Iq2KiDfTeHDPyUvPKEq43c+a4eU5qnH2ef8Hx4lACHrIEfNacsF8msyFgRK51ggkgntZsm1AM2J7ZMbJ42+vCwx9axLd2vifds4aGi6dI0O1WM6hVfvGOY31y4yDg1lAC1rXDfTzfSUCxbuGKJ6V3znCJzIsPDzYyxwZuHiM9MofJ2sOZYV8oHp9Hnq74tXTPjmYc4BgTfWPe9B0TPi+2w2DGBQMRMwIVWHaqOpSA+ywBU9kx4Euk6nnpiQc9Al0RETlxEpMzXuovNIa9lc+6zknqloctEbGOiX8j6J87mqLWnt1HPRx02mHdwkMcBcSxZOeb0g0nNQCBguSZ7TAgiW64PReULWrxrXy0uZ7PTcsf64BTPG1J4EKNkK6ZQ3ix++eOCsyNcfLnOG146NcXcWMLJsrxiyfs70CTUlSgt5snhID/U/c36ZI1RPrnjGJiuCLAbGsLbF811mXjYFm2+4MWP67rzx+TyYXzpPPGQdJPxe5H60yvTbEyKi9Vfl+7XB4ueUr6ZA6XrrgIENX24XqdO2I7526M98Y3bWLRDLwML4jf679cI4/H+h7c2A7/3IkBl9eDQaAFLD5RzpdB35yR0g/CEKudq9pAt4HyJzyZ7huiZcPRnJZE5K+YZytekq4bhlAcey9zP8AT7Js5UqpPbg++rGpO7cL6lyUyO1464UL02RSn1lo2dDyT7tnDZHrpY4GXqlc8wPhaecsS8Afo1CtlYT0s2f1n66yrwST6bqIwNuiPMPq0BkEfXoj+maOkuLGsJRF5rKhbJ0OyE+XBjVG8AEZsjnXKGCSfHVwdjKePA2cPySs1v5Oo7AR5YEMkxTZyb5HOmYPlJTzGcFA8j8cDLGtXoG9iO4hmkWFNKvghfc7VLKO3TJYeWcMkApv2ARFhCDvP59RQiDJO9jTtCy8itRD+aeyx0kWsRlQTRIgLxuuYMVBerHb8TGJfC/nStrdkYFY8hVQxWqQLnquZx/ICAlIX8SqNIGA3W8BnDQGpsnW8tOMtqwpYhSSbVnqzrdgUihGc7w3QxvNtiMTlTGrV3w3tY0tDCV5Ev5KeG2IpQof0vjK/5DlxeV2tjQEh61iRvfGMRDUyfxLifHplD7fuKl4A8YkpHtreZgh4sy3gGE4YWMf6L7OYNDYCw024kXM/znkNxh5ENcXmTJTdTXvDCmBW066mPfJi1et8RuLTx1zbGiEh/PPcX+fWK5CrPpfOqL60rY+Iy+PiM9DUBprlQMCbbAF/jMGThhPfPA3nj8vQvCTplhktvbKszWKlJ+iVBdgHsCY9Lew5+iswbp1EVFaCFDWUqdswrJDmoeZbL+JzFS/j9o9kTgGYZ8/g+TA/uT9jgHxw4FPBoTXRAi7gfx+IBsHgqlBV+NquZXIfAmKTID2C7Ri0ae2+QvsDY6wTPm+6pw+T5Xv/qkW5LtgXYGbhAtxRUcKc7NwNumcOYwHU4llt374mEK8fBUTHZr6DIzcuO1HFZxcCgxjSQ1kNx7JAK/26bBwq968bIIur3uD3lqrGa4r9IojPncoLp3PSICdW3zPVLzEPPOucqq8G4v1/U8AfgSbTGQH4Rp5dulDuSx9AEW26KfSYwsnfoR0tHdb1lYTcaVLYUHpdqtE6tuMbsWvGUOmK/fT+mm4bo1Ghg6T4eDkFDHH7/sYSzxCQrAhVhTnHtuDZESVdUTHYRMFNMR5NIdhW47SGPzHHkfzP0wfKg+ui5PmKV2TX6T2C45pUpH08Xb4EF6qfnScxc7s3vZ/MLXuKRaOrT3ERwt0TFNDtcWv6W05uhyoUBJxZ8jg26E+Bum4AG4fCAvRxK2pL9DzbRp/WZgMtHxXt10VIj/QYWVT5quw8XSuijysU7+O9n/NR0Rn76r01na3vzQ2DpeREpfHscwutm9W3geIFBXR7NN+B41YtYKDNgJUna+TBjChu0gVCdA6Atok5H8Z/iNAacw/iNrp7bR/plh4tqfmPyKq6DOvD3hBTWhKOf8R4rQYvwbX9GVPvbXI3LtzCysXmrWu+PAZdJiAEMnAPBlSbGLfyku1vyj14XuFqkU4ZAcs+yNDWxHmuk2EVuGCDuN89a/rK4MxEWVi6WPKOFcmx840S7nDjhZFbXyhJebPknrV9KZ4ZW4HHR6REZI2UunNHWCy2Bm63G+D8YVF9+RDtu0YFuk2+BTIAF1mBAm0G3nfmAK/WA+lREG+wwRBagzb6QbQQ8/enD2RVdljbT3qnx8m0LY/Jst0fyhd16bLxaJ5kgpWo1Hd3L5exuTOkw5p+EL9fS3vyIt21ro98fmit4FDC6fNn9fWwhVMvEa8To4wAgBUouccK5d71/SHgIGw8WIhq6/4DRI0TY10628Z605dtOxbsIFZMe1TWHWt6yV2r+8jdqyMs2L5zdS++LODnvK+R88/W9MSt++vAc0+Jp4RE9S03xQt8SPs0xOP1PsKFBtbxdu2fmDQEbD0ZrfGLor1qMtq0D88lrfhRaXadF5/HZ54zgagnIdbtIQT0aggWpJtB8CbmCyVpy2zcRhHSEYl8bay/5jEp3p1re8vgTUlSbz1PfeIkHvF5ffN9Pn87BxwF/A+8ts+ZQcQrcvDsYbwAhsp9+Bz4+fooEKmsE1EGkaQj0OuJ2Q+/1tw/9LzdTw+0AxfkzjW9pW/maNnZVBtWPOixEZX2LdCutRU40CEQN8k4miN3YOP71w8ETIgWOPbhp+cI2+aYOW6sDUf4HJzj3766pwzIipftp3eL+EOLhzuxESL91BRN43T7vhlKwAXlL8htq3rgg3QgqpDYbSRm9INtwDlgrlNrTJz8ibkPrQn9HPYdID9d1U1G5KXxr+0tiOeCQLEUqg0Cfg8LD5rBfHj+XXJdkmE5E1n6djKaezlGq+ZhnX2B3Ufb8MccUHOGv7ku1Lxazzf2rRDvF+W/kjOXzoa7bQnESaFIbRTwPiz2AeP558dv0718ltyDbzCe4FoSbHcA7TH3M3xC3LqyG650d/aVT8usI8aa/i2vUe0OwBzHXcM+viD4LBePP6x4+BJ5gQJdgYAzHQKy1N+tXS63rOwCofoHuXtNhPxsVU8I1lVuh+24fpDEb54uv9v9R3l5++9we0VSzPZr+lJgrPnauAfwYiK3sfkzpexEdfDPU+Erz/ua9d+Nt1pABAyCz5QNbrfLUcCHSp6RW77oIrdBKFgm1jl9qMTlpspzVa9Idn2+7D9TF/QH/IvKo2W/pIA/wRp86PLEUMW0ZA2wx9g2oa/2AdYY0HMUjmOsuFuQ36DsJPn04Gq55HaFv2Vdwdt2iSVe2wRUzz8EOeJymc8/v9Q3N8iD64fwio7OmypPVi6RPx/4gr8bXUiOgvmAF/9XX+/oc7zkeJXMK32OFXnzik5y28oeFBVC2KDfMtqXVrXvXN0neGGH56bIH/d9Yn0cq6pz2UIRV1A8jOOAGPMpXhsF1D/fohDHr4MDbO5jZX2w769SeXJ78I1M0bx+9btRV66L4GJoIVmRy2o/xAmmyk9Xdpebv+jMW/yO1b3lLuunGERtHx763LUmgoLhsYHK7sw4D6wfLE9ULJb0o5vkgusi8/NBOJwLoHi2WGrMZeV/3O/zRVO4KxPQY7PUhYAUD9Y+eYyhqrzBCqNgLpUELPtKsMuSpQW2kH6Ri+6Lkn+sWN7e/SeZtOUR6Zo+jJVEUVd0lh+jSq1b/icruqCqutKqcTx38SWwNlIis8bK05Uvy19xmx44c8i+E5gv8lGVRrGCeTEngHMu8vt9D1C0qxUQwmzUAtptWjsBigSUpQ/9VLKEcYyLYV8Qz1dVHHhE1JzcJdlf5sv7e/8iL1a/IY+W/lJmFi+UGcVPyKytT8rCiiXy2o535W9162RrY4XsbToo5y41Mw5BHO5hiMZ+IAcSuGXxyHoVQn3PEuHqBPR6LG5DzHO2MIRtbKhE4Jj24Rx9QqP8GYcE1/Ck/R6rbMQWVT1TFT5j3GNXmo6n28754lGVCYH6UCRw1QJ6UX0gOXiyenN90u6WROLfzBpxZT9GRX/kwkVuQVBTTIW+5YBDDI61AeS03fo41iJdMwFx4m+0IRldPedRvVsQaIHP5++Gjf/N3hxCdkXSf4GfG8iNgcLtQT5Tkdc/UZxrLSA2+EcIUdtKwZrgXw5x3sbiGGx0e6jN4UML7sOaV9Ue1x3sdQZ7pmPvkVq46yVgB2zqC5GIF/PFEOP3cJ6MwLeYG7UsINo+tv8BxKJi30HMkusg2jHE/Rv2eAI5/KfO53oLOMcQ7ABO/l1MpiFQRzPwVQho0gU+qdhvKcjE3odxt593upgGrsCdsA3rl4P5iDUc+/67zuHrFPB9JLE6INj94Hs60HUU0OT74DbQEfQE/RAjMsBA9CNAZ9Ae/Ah829z3Rgj4v+tgYwWlsH1vAAAAAElFTkSuQmCC);background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:center center;background-size:cover;z-index:4}.qlwapp__avatar .qlwapp__avatar__container svg{width:50%}.qlwapp__avatar .qlwapp__avatar__container img{width:100%;height:auto}.qlwapp__contact-list{height:100%;overflow:auto}.qlwapp__contact{display:flex;align-items:center;gap:var(--qlwapp--padding-sm);padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);color:inherit;position:relative;cursor:pointer;width:100%;text-decoration:none;height:auto}.qlwapp__contact:nth-child(1):nth-last-child(2),.qlwapp__contact:nth-child(2):nth-last-child(1){height:50%}.qlwapp__contact:only-child{height:100%;text-align:center;flex-direction:column;justify-content:center}.qlwapp__contact:not(:first-child){border-top:1px solid rgba(0,0,0,.1)}.qlwapp__contact--disabled{pointer-events:none;opacity:.5}.qlwapp__status{display:flex;align-items:center;gap:3px}.qlwapp__status__indicator{width:10px;height:10px;border-radius:50%;border:1px solid #fff}.qlwapp__status__indicator--online{background-color:#00d084}.qlwapp__status__indicator--offline{background-color:#e63946}.qlwapp__status__text{font-size:10px;color:#666}.qlwapp__contact-list__empty{display:flex;height:134px;justify-content:center;align-items:center}.qlwapp__container{pointer-events:none;box-sizing:border-box;font-size:var(--qlwapp-scheme-font-size, inherit);font-family:var(--qlwapp-scheme-font-family, inherit);display:flex;flex-direction:column;width:430px}.qlwapp__container *{box-sizing:border-box}.qlwapp__container.qlwapp-hide,.qlwapp__container .qlwapp__contact.qlwapp-hide{display:none}.qlwapp__container.mobile .qlwapp__contact.qlwapp-desktop,.qlwapp__container.mobile.qlwapp-desktop{display:none}.qlwapp__container.desktop .qlwapp__contact.qlwapp-mobile,.qlwapp__container.desktop.qlwapp-mobile{display:none}.qlwapp__container.qlwapp__container--middle-left,.qlwapp__container.qlwapp__container--bottom-left,.qlwapp__container.qlwapp__container--middle-right,.qlwapp__container.qlwapp__container--bottom-right{position:fixed;z-index:9999999}.qlwapp__container.qlwapp__container--middle-left,.qlwapp__container.qlwapp__container--bottom-left{right:auto;left:0}.qlwapp__container.qlwapp__container--middle-left .qlwapp__button .qlwapp__label,.qlwapp__container.qlwapp__container--middle-left .qlwapp__button .qlwapp__time,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__button .qlwapp__label,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__button .qlwapp__time{left:0;right:auto}.qlwapp__container.qlwapp__container--middle-left .qlwapp__button--bubble .qlwapp__text,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__button--bubble .qlwapp__text{right:auto;left:var(--qlwapp-scheme-icon-size, 60px)}.qlwapp__container.qlwapp__container--middle-left .qlwapp__modal:before,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__modal:before{right:auto;left:20px}.qlwapp__container.qlwapp__container--middle-right,.qlwapp__container.qlwapp__container--bottom-right{left:auto;right:0}.qlwapp__container.qlwapp__container--middle-right .qlwapp__button .qlwapp__label,.qlwapp__container.qlwapp__container--middle-right .qlwapp__button .qlwapp__time,.qlwapp__container.qlwapp__container--bottom-right .qlwapp__button .qlwapp__label,.qlwapp__container.qlwapp__container--bottom-right .qlwapp__button .qlwapp__time{left:auto;right:0}.qlwapp__container.qlwapp__container--middle-left,.qlwapp__container.qlwapp__container--middle-right{transition:top .3s ease;top:auto;bottom:0}.qlwapp__container.qlwapp__container--middle-left:not(.qlwapp__container--closing):not(.qlwapp__container--opening):not(.qlwapp__container--open),.qlwapp__container.qlwapp__container--middle-right:not(.qlwapp__container--closing):not(.qlwapp__container--opening):not(.qlwapp__container--open){top:40%;bottom:auto}.qlwapp__container.qlwapp__container--bottom-left,.qlwapp__container.qlwapp__container--bottom-right{top:auto;bottom:0}.qlwapp__container.qlwapp__container--middle-left .qlwapp__button,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__button{margin-left:20px}.qlwapp__container.qlwapp__container--middle-left .qlwapp__modal:before,.qlwapp__container.qlwapp__container--bottom-left .qlwapp__modal:before{right:auto;left:20px}.qlwapp__container.qlwapp__container--middle-right .qlwapp__button,.qlwapp__container.qlwapp__container--bottom-right .qlwapp__button{margin-right:20px}.qlwapp__container.qlwapp__container--rounded .qlwapp__button--bubble{border-radius:200px}.qlwapp__container.qlwapp__container--rounded .qlwapp__button--button{border-radius:50px}.qlwapp__container.qlwapp__container--rounded .qlwapp__modal{border-radius:8px}.qlwapp__container.qlwapp__container--rounded .qlwapp__modal .qlwapp__message{border-radius:4px}.qlwapp__container.qlwapp__container--rounded .qlwapp__modal .qlwapp__message::before{background-color:inherit}.qlwapp__container p:last-child{margin:0}.qlwapp__container time{opacity:.8;font-style:italic;font-size:10px}.qlwapp-is-mobile{width:auto}.qlwapp-is-mobile.qlwapp__container--rounded .qlwapp__modal{border-radius:0}.qlwapp{font-weight:normal;font-size:12px;font-family:Inter,sans-serif}.qlwapp--woocommerce .qlwapp__container{display:inline-block !important;width:auto !important}.qlwapp--woocommerce .qlwapp__container.qlwapp__button .qlwapp__toggle{margin:0}.qlwapp--shortcode .qlwapp__container{width:auto}.qlwapp__footer,.qlwapp__response{position:relative;bottom:0;left:0;right:0;height:auto;width:100%;overflow:hidden}.qlwapp__footer,.qlwapp__footer pre,.qlwapp__footer textarea,.qlwapp__response,.qlwapp__response pre,.qlwapp__response textarea{max-height:160px}.qlwapp__footer pre,.qlwapp__footer textarea,.qlwapp__response pre,.qlwapp__response textarea{color:inherit;background-color:inherit}.qlwapp__footer:before,.qlwapp__response:before{pointer-events:none;position:absolute;content:"";height:100%;background:linear-gradient(315deg, transparent 0%, rgba(0, 0, 0, 0.025) 100%);top:0;left:0;right:0}.qlwapp__footer::after,.qlwapp__response::after{content:" ";height:1px;background-color:rgba(0,0,0,.075);position:absolute;top:0;left:0;right:0}.qlwapp__footer{display:flex;min-height:56px;text-align:center;align-items:center;width:100%;font-size:12px;padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);max-height:150px}.qlwapp__footer img{max-width:100px}.qlwapp__footer *{color:var(--qlwapp-scheme-text, #303030)}.qlwapp__footer p{padding:0;font-size:inherit;width:100%}.qlwapp__footer p:last-child{margin-bottom:0}.qlwapp__footer h1,.qlwapp__footer h2,.qlwapp__footer h3,.qlwapp__footer h4,.qlwapp__footer h5,.qlwapp__footer h6{display:block;font-weight:600;margin:0;padding:0}.qlwapp__footer h1{font-size:1.5em}.qlwapp__footer h2{font-size:1.25em}.qlwapp__footer h3{font-size:1.125em}.qlwapp__footer h4{font-size:1em}.qlwapp__footer h5{font-size:.875em}.qlwapp__footer h6{font-size:.75em}.qlwapp__response,.qlwapp__response pre,.qlwapp__response textarea,.qlwapp__response .qlwapp__response__buttons{min-height:56px}.qlwapp__response pre,.qlwapp__response textarea{width:100%;height:100%;resize:none;border:none;padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);padding-right:calc(var(--qlwapp--padding-lg)*2);font-family:var(--qlwapp-scheme-font-size, inherit);font-size:1em !important;font-weight:normal;line-height:20px;white-space:pre-wrap;word-wrap:break-word;border-radius:inherit;margin:0}.qlwapp__response pre{visibility:hidden}.qlwapp__response textarea{position:absolute;bottom:0;left:0}.qlwapp__response textarea:focus{outline:none}.qlwapp__response textarea::placeholder{opacity:.5}.qlwapp__response .qlwapp__response__buttons{position:absolute;top:0;right:21px;display:flex;align-items:center}.qlwapp__response .qlwapp__response__buttons svg{width:18px}.qlwapp__response .qlwapp__response__buttons.active>i{display:none}.qlwapp__response .qlwapp__response__buttons.active>i.qlwf-emoji{display:block}.qlwapp__response .qlwapp__response__buttons>i{opacity:.4}.qlwapp__response .qlwapp__response__buttons>i,.qlwapp__response .qlwapp__response__buttons>a{cursor:pointer;margin:0 0 0 10px;display:inherit;font-size:18px;line-height:24px;text-decoration:none}.qlwapp__response .qlwapp__response__buttons .qlwapp__reply--disabled{pointer-events:none;opacity:.5}.qlwapp__consent{padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);border-top:1px solid rgba(0,0,0,.075);background-color:rgba(0,0,0,.025)}.qlwapp__consent .qlwapp__consent-label{display:flex;align-items:flex-start;gap:8px;cursor:pointer;font-size:13px;line-height:1.4;color:var(--qlwapp-scheme-text, #303030);margin:0}.qlwapp__consent .qlwapp__consent-checkbox{margin:0;margin-top:2px;flex-shrink:0;width:16px;height:16px;cursor:pointer;accent-color:var(--qlwapp-scheme-brand, #25d366)}.qlwapp__consent .qlwapp__consent-text{flex:1;user-select:none}.qlwapp__general-consent{text-align:start;font-size:12px;padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);border-top:1px solid rgba(0,0,0,.075);background-color:rgba(0,0,0,.025);animation:fadeIn .3s ease-in-out}.qlwapp__general-consent .qlwapp__general-consent-label{display:flex;align-items:flex-start;gap:8px;cursor:pointer;font-size:13px;line-height:1.4;color:var(--qlwapp-scheme-text, #303030);margin:0}.qlwapp__general-consent .qlwapp__general-consent-checkbox{margin:0;margin-top:2px;flex-shrink:0;width:16px;height:16px;cursor:pointer;accent-color:var(--qlwapp-scheme-brand, #25d366)}.qlwapp__general-consent .qlwapp__general-consent-text{flex:1;user-select:none}.qlwapp__general-consent .qlwapp__general-consent-text br{display:block;content:"";margin-top:.5em}@keyframes fadeIn{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.qlwapp__general-consent--accepted{animation:fadeOut 1s ease-in-out forwards}@keyframes fadeOut{from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-10px)}}.qlwapp__header{background-color:var(--qlwapp-scheme-brand, #25d366);color:var(--qlwapp-scheme-text, #ffffff);position:relative;overflow:hidden;height:auto;max-height:150px}.qlwapp__header:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background:linear-gradient(315deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%)}.qlwapp__header .qlwapp__close{position:absolute;top:12px;right:12px}@media(min-width: 430px){.qlwapp__header .qlwapp__close{position:absolute;top:7px;right:7px;font-size:18px}}.qlwapp__header .qlwapp__header-description{align-items:center}.qlwapp__header .qlwapp__header-description p,.qlwapp__header .qlwapp__header-description h3{color:inherit;font-family:inherit;margin:0}.qlwapp__header .qlwapp__header-description h3{margin:0 0 .25em 0}.qlwapp__header .qlwapp__header-description img{max-width:100px}.qlwapp__header .qlwapp__header-description *{color:var(--qlwapp-scheme-text, #ffffff) !important}.qlwapp__header .qlwapp__header-description,.qlwapp__header .qlwapp__header-contact{padding:calc(var(--qlwapp--padding-xs) + 2px) var(--qlwapp--padding-lg);height:100%}.qlwapp__header .qlwapp__header-contact{display:flex;justify-content:flex-end;align-items:center;gap:var(--qlwapp--padding-sm)}.qlwapp__header .qlwapp__header-contact .qlwapp__previous{margin-right:auto}.qlwapp__header .qlwapp__header-contact .qlwapp__previous>i{line-height:36px}.qlwapp__header .qlwapp__header-contact .qlwapp__info{text-align:right}.qlwapp__header .qlwapp__header-contact .qlwapp__avatar{width:42px;height:42px}.qlwapp__header .qlwapp__header-contact .qlwapp__name{color:var(--qlwapp-scheme-contact-name-color, #141414);color:inherit}.qlwapp__message-list{display:flex;align-items:center;flex-direction:column;gap:var(--qlwapp--padding-sm);padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-lg);overflow:auto;height:100%}.qlwapp__message{padding:var(--qlwapp--padding-sm) var(--qlwapp--padding-md);position:relative;align-self:flex-start;word-wrap:break-word;max-width:calc(100% - var(--qlwapp--padding-sm)*2);background-color:#eee;word-break:break-word}.qlwapp__message:before{content:"";position:absolute;top:0;width:20px;height:20px;right:auto;left:0;transform:matrix(1, 0, 1, 1, -2, 0)}.qlwapp__message--user{width:auto;align-self:end;justify-self:flex-end;margin-top:0;word-break:var(--qlwapp-scheme-box-message-word-break)}.qlwapp__message--user:before{right:0;left:auto;transform:matrix(1, 0, 1, -1, 2, 0)}.qlwapp__message--user:first-child:before{top:-6px;right:10%;transform:rotate(45deg)}.qlwapp__modal{pointer-events:all;position:relative;top:auto;bottom:auto;left:auto;right:auto;z-index:99999;box-shadow:0 8px 25px -5px rgba(45,62,79,.15);background-color:#fff;margin-top:24px;margin-left:24px;margin-right:24px;margin-bottom:12px}.qlwapp__modal:before{background-color:#fff;content:"";position:absolute;bottom:-6px;right:24px;width:13px;height:13px;transform:rotate(45deg)}.qlwapp__modal .qlwapp__header{border-top-left-radius:inherit;border-top-right-radius:inherit}.qlwapp__modal .qlwapp__header .qlwapp__carousel{position:relative}.qlwapp__modal .qlwapp__body{overflow:hidden}.qlwapp__modal .qlwapp__body .qlwapp__carousel{position:relative;max-height:min(var(--qlwapp-scheme-box-height, 500px),var(--qlwapp-scheme-box-max-height, 500px))}.qlwapp__modal .qlwapp__footer,.qlwapp__modal .qlwapp__response{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.qlwapp__modal .qlwapp__time,.qlwapp__modal .qlwapp__label,.qlwapp__modal .qlwapp-offline-text{font-size:12px;line-height:1.5em;opacity:.6;display:block}.qlwapp__modal .qlwapp__time{font-size:11px;font-style:italic;text-align:justify}.qlwapp__modal .qlwapp__name{display:block;font-weight:bold;line-height:1.5em}.qlwapp__modal .qlwapp__label{color:var(--qlwapp-scheme-contact-role-color, inherit);text-align:justify}.qlwapp__modal .qlwapp__name{color:var(--qlwapp-scheme-contact-name-color, inherit);text-align:justify}.qlwapp__modal .qlwapp__time{color:var(--qlwapp-scheme-contact-availability-color, inherit)}.qlwapp-is-mobile .qlwapp__modal{position:fixed;bottom:0;left:0;right:0;box-shadow:0px 5px 20px 5px rgba(0,0,0,.5);margin:0}.qlwapp-is-mobile .qlwapp__modal::before{content:none}.qlwapp-is-mobile .qlwapp__modal .qlwapp__header{border-top-left-radius:0;border-top-right-radius:0}.qlwapp-is-mobile .qlwapp__modal .qlwapp__footer,.qlwapp-is-mobile .qlwapp__modal .qlwapp__response{border-bottom-left-radius:0;border-bottom-right-radius:0}@keyframes closeModal{from{opacity:1;visibility:visible;transform:translateY(0) scale(1)}to{opacity:0;visibility:hidden;transform:translateY(50px)}}@keyframes openModal{from{opacity:0;visibility:hidden;transform:translateY(50px)}to{visibility:visible;opacity:1;transform:translateY(0) scale(1)}}@keyframes closeModalInMobile{from{opacity:1;visibility:visible;transform:translateY(0) scale(1)}to{opacity:0;visibility:hidden;transform:translateY(50px) scale(0.9)}}@keyframes openModalInMobile{from{opacity:0;visibility:hidden;transform:translateY(50px) scale(0.9)}to{visibility:visible;opacity:1;transform:translateY(0) scale(1)}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes bounce{from,20%,53%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translate3d(0, 0, 0)}40%,43%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -30px, 0)}70%{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -15px, 0)}90%{transform:translate3d(0, -4px, 0)}}@keyframes pulse{0%{box-shadow:0 calc(var(--qlwapp-pulse-size, 12px)*.083) calc(var(--qlwapp-pulse-size, 12px)*.5) 0 rgba(0,0,0,.06),0 calc(var(--qlwapp-pulse-size, 12px)*.167) calc(var(--qlwapp-pulse-size, 12px)*2.667) 0 rgba(0,0,0,.16),0 0 0 0 var(--qlwapp-pulse-color, rgba(37, 211, 102, 0.7))}70%{box-shadow:0 calc(var(--qlwapp-pulse-size, 12px)*.083) calc(var(--qlwapp-pulse-size, 12px)*.5) 0 rgba(0,0,0,.06),0 calc(var(--qlwapp-pulse-size, 12px)*.167) calc(var(--qlwapp-pulse-size, 12px)*2.667) 0 rgba(0,0,0,.16),0 0 0 var(--qlwapp-pulse-size, 12px) var(--qlwapp-pulse-color, rgba(37, 211, 102, 0))}100%{box-shadow:0 calc(var(--qlwapp-pulse-size, 12px)*.083) calc(var(--qlwapp-pulse-size, 12px)*.5) 0 rgba(0,0,0,.06),0 calc(var(--qlwapp-pulse-size, 12px)*.167) calc(var(--qlwapp-pulse-size, 12px)*2.667) 0 rgba(0,0,0,.16),0 0 0 0 var(--qlwapp-pulse-color, rgba(37, 211, 102, 0))}}@keyframes shakeX{from,to{transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{transform:translate3d(10px, 0, 0)}}@keyframes shakeY{from,to{transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{transform:translate3d(0, 10px, 0)}}.qlwapp__container .qlwapp__modal{animation:openModal .4s forwards}.qlwapp__container--closing .qlwapp__modal{animation:closeModal .4s forwards}.qlwapp-is-mobile .qlwapp__modal{animation:openModalInMobile .4s forwards}.qlwapp-is-mobile.qlwapp__container--closing .qlwapp__modal{animation:closeModalInMobile .4s forwards}.qlwapp__modal{opacity:0;visibility:hidden}.qlwapp__modal .qlwapp__carousel{display:flex;width:200%;height:100%}.qlwapp__modal .qlwapp__carousel .qlwapp__carousel-slide{width:50%;transition:max-height 500ms cubic-bezier(0.215, 0.61, 0.355, 1) 1000ms,transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 500ms,opacity 500ms ease-in 500ms}.qlwapp__modal .qlwapp__header .qlwapp__carousel-slide{max-height:300px}.qlwapp__modal .qlwapp__header .qlwapp__name,.qlwapp__modal .qlwapp__header .qlwapp__avatar{opacity:0;transition:transform cubic-bezier(0.215, 0.61, 0.355, 1) .3s,opacity ease-in .3s}.qlwapp__modal .qlwapp__header .qlwapp__name{transform:translateX(56px)}.qlwapp__modal .qlwapp__header .qlwapp__avatar{transform:scale(0.5)}.qlwapp__modal .qlwapp__header .qlwapp__name{transition-delay:800ms}.qlwapp__modal .qlwapp__header .qlwapp__header-description{transition-delay:850ms}.qlwapp__modal .qlwapp__header .qlwapp__avatar{transition-delay:900ms}.qlwapp__modal .qlwapp__response,.qlwapp__modal .qlwapp__previous,.qlwapp__modal .qlwapp__message{transition:transform cubic-bezier(0.215, 0.61, 0.355, 1) 600ms,opacity ease-in 200ms}.qlwapp__modal .qlwapp__previous,.qlwapp__modal .qlwapp__message{opacity:0}.qlwapp__modal .qlwapp__response{pointer-events:none;display:none;opacity:0}.qlwapp__modal .qlwapp__footer{max-height:150px}.qlwapp__modal .qlwapp__previous{transform:translateX(56px)}.qlwapp__modal .qlwapp__message{transform:translateY(56px);transition-delay:200ms}.qlwapp__modal .qlwapp__close{transition:opacity 300ms cubic-bezier(0.215, 0.61, 0.355, 1)}.qlwapp__modal .qlwapp__header-description{transition:opacity 900ms cubic-bezier(0.215, 0.61, 0.355, 1)}.qlwapp__modal .qlwapp__contact{transition:transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1),opacity 150ms ease-in}.qlwapp__modal .qlwapp__previous{transition-delay:800ms}.qlwapp__modal .qlwapp__close,.qlwapp__modal .qlwapp__header-description{transition-delay:900ms}.qlwapp__modal .qlwapp__contact:nth-of-type(6){transition-delay:600ms}.qlwapp__modal .qlwapp__contact:nth-of-type(5){transition-delay:500ms}.qlwapp__modal .qlwapp__contact:nth-of-type(4){transition-delay:400ms}.qlwapp__modal .qlwapp__contact:nth-of-type(3){transition-delay:300ms}.qlwapp__modal .qlwapp__contact:nth-of-type(2){transition-delay:200ms}.qlwapp__modal .qlwapp__contact:nth-of-type(1){transition-delay:100ms}.qlwapp__modal .qlwapp__header-contact{opacity:0}.qlwapp__modal .qlwapp__message{opacity:0;transform:translateY(-56px)}.qlwapp__modal .qlwapp__modal .qlwapp__contact:hover{background-color:#fafafa}.qlwapp__modal--response .qlwapp__carousel .qlwapp__carousel-slide{transform:translateX(-100%)}.qlwapp__modal--response .qlwapp__carousel .qlwapp__carousel-slide .qlwapp__header-contact{opacity:1}.qlwapp__modal--response .qlwapp__close{transition-delay:0ms}.qlwapp__modal--response .qlwapp__close,.qlwapp__modal--response .qlwapp__header-description,.qlwapp__modal--response .qlwapp__contact{opacity:0}.qlwapp__modal--response .qlwapp__contact{transform:translateY(-33.333%);border-top-color:rgba(0,0,0,0) !important}.qlwapp__modal--response .qlwapp__message{display:block}.qlwapp__modal--response .qlwapp__message,.qlwapp__modal--response .qlwapp__previous{opacity:1}.qlwapp__modal--response .qlwapp__footer{display:none}.qlwapp__modal--response .qlwapp__response{pointer-events:all;display:block;opacity:1}.qlwapp__modal--response .qlwapp__message,.qlwapp__modal--response .qlwapp__previous{transform:translate(0)}.qlwapp__modal--response .qlwapp__header .qlwapp__carousel-slide{max-height:84px}.qlwapp__modal--response .qlwapp__header .qlwapp__name,.qlwapp__modal--response .qlwapp__header .qlwapp__avatar{opacity:1}.qlwapp__modal--response .qlwapp__header .qlwapp__header-description{opacity:0}.qlwapp__modal--response .qlwapp__header .qlwapp__name,.qlwapp__modal--response .qlwapp__header .qlwapp__header-description{transform:translateX(0)}.qlwapp__modal--response .qlwapp__header .qlwapp__avatar{transform:scale(1)}.qlwapp__modal--opening .qlwapp__response,.qlwapp__modal--opening .qlwapp__close,.qlwapp__modal--opening .qlwapp__previous,.qlwapp__modal--opening .qlwapp__header .qlwapp__name,.qlwapp__modal--opening .qlwapp__header-description{visibility:visible}.qlwapp__modal--closing .qlwapp__info,.qlwapp__modal--closing .qlwapp__avatar__container{transform:translateX(100px);opacity:0;transition:transform cubic-bezier(0.215, 0.61, 0.355, 1) 300ms,opacity ease-out 200ms}.qlwapp__modal--closing .qlwapp__message{transition:all .4s;transform:translateY(100%);opacity:0}.qlwapp__modal--closing .qlwapp__previous{transition-delay:0ms;transform:translateX(-24px);opacity:0;transition:transform cubic-bezier(0.215, 0.61, 0.355, 1) 300ms,opacity ease-out 200ms}.qlwapp__button{animation-duration:1.5s;animation-timing-function:ease-in;animation-name:var(--qlwapp-button-animation-name, "none");animation-delay:var(--qlwapp-button-animation-delay, 0);animation-iteration-count:1;transform-origin:center;background-image:unset !important}.qlwapp__button--bubble .qlwapp__close{transform:scale(0, 0);opacity:0;position:absolute}.qlwapp__button--bubble .qlwapp__icon{transform:scale(1, 1);opacity:1}.qlwapp__button--bubble .qlwapp__icon,.qlwapp__button--bubble .qlwapp__close{transition:transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1),opacity 300ms ease-in}.qlwapp__container--open .qlwapp__button--bubble .qlwapp__close{transform:scale(1, 1);opacity:1}.qlwapp__container--open .qlwapp__button--bubble .qlwapp__icon{transform:scale(0, 0);opacity:0}.qlwapp__modal--open .qlwapp__icon{display:none;transform:scale(0, 0) !important;opacity:0 !important}.qlwapp__modal--open .qlwapp__close{display:none;transform:scale(1, 1) !important;opacity:1 !important}.rtl .qlwapp__modal .qlwapp__header .qlwapp__header-contact .qlwapp__previous{margin-right:0;margin-left:auto}.rtl .qlwapp__modal--response .qlwapp__carousel .qlwapp__carousel-slide{transform:translateX(100%)}.rtl .qlwapp__response textarea{padding-right:var(--qlwapp--padding-sm);padding-left:calc(var(--qlwapp--padding-lg)*2)}.rtl .qlwapp__response .qlwapp__response__buttons{right:auto;left:21px}:root{--qlwapp--padding-xs: 8px;--qlwapp--padding-sm: 16px;--qlwapp--padding-md: 24px;--qlwapp--padding-lg: 32px;--qlwapp--padding-xl: 40px}
.wlwl_lucky_wheel_content,
.wlwl_lucky_wheel_content * {
    box-sizing: border-box;
}

@font-face {
    font-family: "woocommerce-lucky-wheel";
    src: url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.eot");
    src: url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.eot?#iefix") format("embedded-opentype"),
    url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.woff") format("woff"),
    url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.ttf") format("truetype"),
    url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "woocommerce-lucky-wheel";
        src: url("/wp-content/plugins/woocommerce-lucky-wheel/fonts/woocommerce-lucky-wheel.svg") format("svg");
    }
}

[class^="wlwl-"]:before, [class*=" wlwl-"]:before,
[class^="wlwl-"]:after, [class*=" wlwl-"]:after {
    font-family: "woocommerce-lucky-wheel";
    font-size: 20px;
    font-style: normal;
    margin: 0;
    padding: 0;
}

.wlwl-location:before {
    content: "\f100";
}

.wlwl-giftbox:before {
    content: "\f101";
}

.wlwl-cancel:before {
    content: "\f103";
    font-size: 35px;
    cursor: pointer;
}

.wlwl-wheel:before {
    content: "\f104";
}

.wc-lucky-wheel-shortcode-container,
.wc-lucky-wheel-shortcode-container * {
    box-sizing: border-box;
}

.wc-lucky-wheel-shortcode-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px;
    padding: 30px 10px;
    max-width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wc-lucky-wheel-shortcode-content-container {
    width: calc(40% - 10px);
    padding: 20px;
    display: block;
    text-align: center;
}

/*canvas*/
.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-canvas {
    position: relative;
}

.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-canvas canvas {
    position: absolute;
}

.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-canvas canvas:not(.wc-lucky-wheel-shortcode-wheel-canvas-2) {
    transform: rotate(0deg);
}

/*pointer*/
.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-pointer-container {
    position: absolute;
    text-align: center;
    vertical-align: middle;
    display: table;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 0 0 9%;
}

.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-pointer-main {
    display: table-cell;
    vertical-align: middle;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-pointer {
    position: relative;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.wc-lucky-wheel-shortcode-margin-position .wc-lucky-wheel-shortcode-wheel-pointer-container {
    padding: 0 0 1% 95%;
}

.wc-lucky-wheel-shortcode-margin-position .wc-lucky-wheel-shortcode-wheel-pointer:before {
    text-shadow: 4px -2px 0 rgba(0, 0, 0, 0.2);
}

.wc-lucky-wheel-shortcode-margin-position .wc-lucky-wheel-shortcode-wheel-pointer-container .wc-lucky-wheel-shortcode-wheel-pointer-main {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    line-height: 1;
}

.wc-lucky-wheel-shortcode-margin-position .wc-lucky-wheel-shortcode-wheel-pointer-container .wc-lucky-wheel-shortcode-wheel-pointer-main .wc-lucky-wheel-shortcode-wheel-pointer:after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 20px;
    height: 20px;
    bottom: 20px;
    left: 30%;
    box-shadow: 1px -2px 3px rgba(0, 0, 0, 0.3);
    border-radius: 50%;;
}

/*Position top*/
.wc-lucky-wheel-shortcode-pointer-position-top .wc-lucky-wheel-shortcode-wheel-container {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.wc-lucky-wheel-shortcode-pointer-position-top canvas {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.wc-lucky-wheel-shortcode-pointer-position-top .wc-lucky-wheel-shortcode-wheel-pointer:before {
    text-shadow: 4px 2px 0 rgba(0, 0, 0, 0.2);
}

.wc-lucky-wheel-shortcode-pointer-position-top .wc-lucky-wheel-shortcode-wheel-pointer:after {
    box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
}

/*Position bottom*/
.wc-lucky-wheel-shortcode-pointer-position-bottom .wc-lucky-wheel-shortcode-wheel-container {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.wc-lucky-wheel-shortcode-pointer-position-bottom canvas {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*fields*/
.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-field-wrap {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    position: relative;
    display: inline-block;
}

.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-field-error {
    position: absolute;
    font-size: 13px;
    padding: 0 5px;
    bottom: -19px;
    border-radius: 5px;
    color: red;
    display: none;
    opacity: 0;
    transition: opacity 500ms;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
}

.wc-lucky-wheel-shortcode-required-field .wc-lucky-wheel-shortcode-wheel-field-error {
    display: block;
    opacity: 1;
}

.wc-lucky-wheel-shortcode-container input.wc-lucky-wheel-shortcode-wheel-field {
    margin: 0;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    outline: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    text-align: left;
    line-height: 1.21428571em;
    padding: .67857143em 1em;
    background: #fff;
    border: 1px solid rgba(34, 36, 38, .15);
    color: rgba(0, 0, 0, .87);
    border-radius: .28571429rem;
    -webkit-transition: border-color .1s ease, -webkit-box-shadow .1s ease;
    transition: border-color .1s ease, -webkit-box-shadow .1s ease;
    transition: box-shadow .1s ease, border-color .1s ease;
    transition: box-shadow .1s ease, border-color .1s ease, -webkit-box-shadow .1s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    font-weight: 300;
}

/*button*/
.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-button-wrap {
    border-radius: 3px;
    font-size: 22px;
    cursor: pointer;
    margin: 10px 0 0;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 300;
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 rgba(34, 36, 38, .15) inset;
    box-shadow: 0 0 0 0 rgba(34, 36, 38, .15) inset;
    -webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34, 36, 38, .15) inset;
    box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34, 36, 38, .15) inset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .2s ease, background-color .2s ease, color .2s ease, background .2s ease, -webkit-box-shadow .2s ease;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease, background .2s ease, -webkit-box-shadow .2s ease;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease, -webkit-box-shadow .2s ease;
    will-change: '';
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    line-height: 1;
}

/*result*/
.wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-result-container {
    display: block;
    width: 100%;
}

/*required fields*/
.wc-lucky-wheel-shortcode-required-field input {
    border: 1px solid red !important;
}

/*gdpr checkbox*/
.wc-lucky-wheel-shortcode-wheel-gdpr-wrap {
    font-size: 14px;
    margin-bottom: -15px;
    margin-top: 5px;
    text-align: left;
}

.wc-lucky-wheel-shortcode-wheel-gdpr-wrap input[type="checkbox"] {
    margin: 5px;
}

/*responsive*/
@media screen and (max-width: 600px) {
    .wc-lucky-wheel-shortcode-container {
        flex-direction: column-reverse;
    }

    .wc-lucky-wheel-shortcode-content-container {
        width: 100%;
    }

    .wc-lucky-wheel-shortcode-container .wc-lucky-wheel-shortcode-wheel-button-wrap {
        font-size: 18px;
        padding: 8px;
    }
}

@media screen and (max-width: 480px) {
    .wc-lucky-wheel-shortcode-container {
        margin: 10px;
    }
}

/*loading*/

/*button loading*/
.wc-lucky-wheel-shortcode-loading {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0s linear, opacity .1s ease;
    transition: all 0s linear, opacity .1s ease;
    color: transparent !important;
}

.wc-lucky-wheel-shortcode-loading:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -.64285714em 0 0 -.64285714em;
    width: 1.28571429em;
    height: 1.28571429em;
    -webkit-animation: button-spin .6s linear;
    animation: button-spin .6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 500rem;
    border-color: #fff transparent transparent;
    border-style: solid;
    border-width: .2em;
    box-shadow: 0 0 0 1px transparent;
}

.wc-lucky-wheel-shortcode-loading:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    margin: -.64285714em 0 0 -.64285714em;
    width: 1.28571429em;
    height: 1.28571429em;
    border-radius: 500rem;
    border: .2em solid rgba(0, 0, 0, .15);
}

@keyframes button-spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
