/* 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 .elementor-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .elementor-button-wrapper,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.elementor-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.elementor-button-wrapper{
    text-align: right;
}
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .elementor-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .elementor-button-wrapper,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.elementor-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.elementor-button-wrapper{
    text-align: left;
}
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .elementor-button-wrapper,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.elementor-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.elementor-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.elementor-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.elementor-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.elementor-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;
}.dce-visibility-element-hidden,
.dce-visibility-widget-hidden,
.dce-visibility-column-hidden,
.dce-visibility-section-hidden {
  display: none;
}

.dce-visibility-element-hidden.elementor-widget-dyncontel-panorama {
  display: block;
  position: fixed;
  left: 10000px;
}

.dce-btn-visibility {
  position: absolute;
  top: 15px;
  background-color: #e52600;
  color: white;
  border-radius: 50%;
  line-height: 1;
  padding: 9px;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
  border: 3px solid #fff;
  z-index: 10000000;
  transform: translate(-50%, -50%);
  left: 50%;
}

.dce-btn-visibility:hover {
  color: #000 !important;
}

.elementor-editor-active .dce-btn-visibility {
  margin-left: 20px;
}

.dce-box-visibility-debug {
  display: none;
  position: absolute;
  top: 0px;
  left: 50%;
  background-color: #e52600;
  color: #FFF;
  border-radius: 3px;
  line-height: 1;
  text-align: left;
  z-index: 10;
  padding: 10px;
  margin: -10px 0 0 34px;
  min-width: 150px;
}

.dce-box-visibility-debug:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0px 10px 10px;
  border-color: transparent transparent #e52600 transparent;
  position: absolute;
  bottom: 100%;
  left: -10px;
  top: 4px;
}

.elementor-editor-active .dce-box-visibility-debug:before {
  left: 22px;
}

.dce-box-visibility-debug ul {
  list-style: none;
  margin: 0;
}

.dce-visibility-widget-hidden-debug {
  min-height: 10px;
}.wp-embed-responsive .wp-block{
    outline: 0;
}
/*My Account Page*/
.woolentor_myaccount_page {
    overflow: hidden;
}
.woolentor_myaccount_page .woocommerce-MyAccount-content .form-row {
    display: block;
}
.woolentor-user-area {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.woolentor-user-image {
    margin-right: 20px;
}
.woolentor-user-image img {
    border-radius: 100% !important;
}
.woolentor-user-info span {
    display: block;
}
.woolentor-username {
    font-size: 20px;
}
.woolentor-logout {
    font-size: 14px;
}
.woolentor_myaccount_page .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ddd;
}
.woolentor_myaccount_page .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    line-height: 1.5;
}
.woolentor_myaccount_page .woocommerce-MyAccount-navigation ul li a{
    transition: 0.4s;
}
  
.woocommerce-account .woolentor_myaccount_menu_pos_vtop .woocommerce-MyAccount-navigation,.woocommerce-account .woolentor_myaccount_menu_pos_vbottom .woocommerce-MyAccount-navigation{
    width: 100%;
    float: none;
}
.woolentor_myaccount_menu_pos_vtop .woocommerce-MyAccount-navigation ul,.woolentor_myaccount_menu_pos_vbottom .woocommerce-MyAccount-navigation ul{
    border:none;
}
.woolentor_myaccount_menu_pos_vtop .woocommerce-MyAccount-navigation ul li,.woolentor_myaccount_menu_pos_vbottom .woocommerce-MyAccount-navigation ul li{
    display: inline-block;
    border-bottom: 0;
    padding: 12px 10px;
}
  
.woocommerce-account .woolentor_myaccount_menu_pos_vtop .woocommerce-MyAccount-content,.woocommerce-account .woolentor_myaccount_menu_pos_vbottom .woocommerce-MyAccount-content{
    width: 100%;
    float: none;
}
  
.woocommerce-account .woolentor_myaccount_menu_pos_hright .woocommerce-MyAccount-navigation,.woolentor_myaccount_menu_pos_hleft .woocommerce-MyAccount-content{
    float: right;
}
  
.woocommerce-account .woolentor_myaccount_menu_pos_hright .woocommerce-MyAccount-content,.woolentor_myaccount_menu_pos_hleft .woocommerce-MyAccount-navigation{
    float: left;
}
.woolentor_block_my_account,.woolentor_block_my_account_navigation{
    overflow: hidden;
}

.woolentor_block_my_account_navigation .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
}
.woolentor_myaccount_menu_type_vertical ul li{
    display: inline-block;
    border: none !important;
}
.woolentor_myaccount_menu_type_vertical ul{
    border-top: 0 !important;
}
.woolentor_block_my_account_navigation .woolentor-user-area:not(:first-child){
    display: none;
}
.woolentor-customer-logout a{
    display: inline-block;
}

/* Product Grid */
.woolentor_block_product_grid .ht-product-ratting i {
    font-family: 'FontAwesome';
}#wp-admin-bar-woolentor_template_builder > .ab-item {
  display: flex !important;
  align-items: center;
}
#wp-admin-bar-woolentor_template_builder .ab-item img {
  width: 16px;
  margin-right: 3px;
}
.wlb-marker-wrapper .wlb_image_pointer .wlb_pointer_box h4 {
  margin: 0 0 7px 0;
}
.editor-styles-wrapper .ht-feature-content h4,
.editor-styles-wrapper .ht-feature-content p {
  margin-top: 0;
  margin-bottom: 0;
}

[class*="woolentor-"] i {
  font-style: normal;
}
[class*="woolentor-"] *, [class*="woolentor-"] *::before, [class*="woolentor-"] *::after {
  box-sizing: border-box;
}

.woolentor-text-align-left {
  text-align: left !important;
}
.woolentor-text-align-right {
  text-align: right !important;
}
.woolentor-text-align-center {
  text-align: center !important;
}
/* [class*="woolentor"] a{
    text-decoration: none !important;
} */
[class*="woolentorblock-"] a,
.block-editor__container[class*="woocommerce"] {
  text-decoration: none !important;
}

/* Footer And Header */
body .wp-block-group.is-vertical {
  flex-direction: column;
}
body .wp-block-group.is-layout-flex.is-content-justification-space-between {
  justify-content: space-between;
}

/* Alignment support */
[class*="woolentor"].alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
  padding: 0 15px;
}
[class*="woolentor"].alignwide {
  margin-left: -100px;
  margin-right: -100px;
  max-width: var(--wp--style--global--wide-size) !important;
  width: unset;
}

[class*="woolentor"].alignfull .alignfull,
[class*="woolentor"].alignfull .alignwide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

[class*="woolentor"].alignwide .alignfull,
[class*="woolentor"].alignwide .alignwide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-column [class*="woolentor"].alignfull,
.wp-block-column [class*="woolentor"].alignwide {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (max-width: 1200px) {
  [class*="woolentor"].alignfull {
    margin-left: -2.4em;
    margin-right: -2.4em;
  }
}

@media (max-width: 768px) {
  [class*="woolentor"].alignfull {
    margin-left: -2.14em;
    margin-right: -2.14em;
  }
}

@media (max-width: 544px) {
  [class*="woolentor"].alignfull {
    margin-left: -1em;
    margin-right: -1em;
  }
}
[class*="woolentor"].alignwide {
  margin-left: -20px;
  margin-right: -20px;
}
.wp-block-column [class*="woolentor"].alignfull,
.wp-block-column [class*="woolentor"].alignwide {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* 
* Builder Addon Style 
*/
.woolentor-product-image {
  position: relative;
}

/* Shortcode product loop before*/
.woolentor-before-shop {
  display: block;
  overflow: hidden;
}
.woolentor-archive-sale-badge-hide ul.products li.product span.onsale {
  display: none !important;
}
.woolentor-archive-sale-badge-left ul.products li.product span.onsale {
  right: auto;
  left: 0;
}
.woolentor-archive-sale-badge-right ul.products li.product span.onsale {
  left: auto;
  right: 0;
}

/*Column Default style*/
[class*="woolentor-products-columns-"] ul.products::before,
[class*="woolentor-products-columns-"] ul.products::after {
  display: none !important;
}
[class*="woolentor-products-columns-"] ul.products {
  display: grid !important;
  column-gap: 20px;
  list-style: none;
}
.woocommerce [class*="woolentor-products-columns-"] ul.products::before {
  display: none !important;
}
.edit-post-visual-editor [class*="woolentor-products-columns-"] img {
  width: 100%;
}
.woocommerce [class*="woolentor-products-columns-"] ul.products li.product,
.woocommerce-page
  [class*="woolentor-products-columns-"]
  ul.products
  li.product {
  float: none;
  width: 100% !important;
  margin-right: 0 !important;
}
[class*="woolentor-products-columns-"] ul.products li.product.first {
  clear: none !important;
}
.woolentor-products-columns-1 ul.products {
  grid-template-columns: repeat(1, 1fr) !important;
}
.woolentor-products-columns-2 ul.products {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-3 ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-4 ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-5 ul.products {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-6 ul.products {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-7 ul.products {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-8 ul.products {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-9 ul.products {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}
.woolentor-products-columns-10 ul.products {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

/* WooLentor Column Grid style */
.woolentor-grid:not(.woolentor-grid-slider) {
  display: grid;
  column-gap: 20px;
}
/* For Slick Slider End */
.woolentor-grid-slider {
  margin-right: -15px;
  margin-left: -15px;
}
.woolentor-grid-slider .woolentor-grid-column {
  padding-left: 15px;
  padding-right: 15px;
}
.woolentor-grid.product-slider .slick-list {
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.woolentor-grid.product-slider .slick-slide {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.woolentor_block_product_grid .fa-star-half-alt:before {
  content: "\f089";
}
/* Slick Slider End */

.woolentor-grid.woolentor-no-gutters,
.woolentor-grid.wlno-gutters {
  column-gap: 0px;
  row-gap: 0px;
}
.woocommerce.woolentor-grid::before {
  display: none !important;
}
.woolentor-grid-columns-1 .woolentor-grid {
  grid-template-columns: repeat(1, 1fr) !important;
}
.woolentor-grid-columns-2 .woolentor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-3 .woolentor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-4 .woolentor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-5 .woolentor-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-6 .woolentor-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-7 .woolentor-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-8 .woolentor-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-9 .woolentor-grid {
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}
.woolentor-grid-columns-10 .woolentor-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

/* Product Slider Control */
.woolentor-row .product-slider [class*="woolentor-col-"] {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.product-slider .slick-arrow {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #ddd;
  color: #ddd;
  font-size: 20px;
  height: 40px;
  left: -30px;
  line-height: inherit;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 99;
  transition: 0.4s;
}
.product-slider .slick-arrow.slick-next {
  right: -30px;
  left: auto;
}
.product-slider .slick-arrow:hover {
  border-color: #333;
  color: #333;
}
.product-slider .slick-dots {
  bottom: 0px;
  display: flex;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
}
.product-slider .slick-dots li {
  line-height: 12px;
  margin: 0 4px;
}
.product-slider .slick-dots li button {
  background-color: transparent;
  border: 1px solid #4e4f4f;
  border-radius: 50px;
  height: 13px;
  padding: 0;
  text-indent: -9999px;
  width: 13px;
  line-height: 13px;
}
.product-slider .slick-dots li.slick-active button {
  background-color: #282828;
  border-color: #282828;
}

/* Universal Product */
[class*="woolentorblock-"] .ht-products .wishsuite-button.wishlist {
  line-height: 35px;
}
[class*="woolentorblock-"]
  .ht-products
  .wishsuite-button.wishlist
  span.wishsuite-btn-text {
  position: absolute;
  left: 100%;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  color: #f1f1f1;
  background-color: #282828;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  margin-left: -10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
}
[class*="woolentorblock-"]
  .ht-products
  .wishsuite-button.wishlist
  span.wishsuite-btn-text {
  margin-right: -10px;
  -webkit-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  transform: translateY(-65%);
}

.ht-product-inner .ht-product-categories.hide-category-before {
  padding-left: 0 !important;
}
.ht-product-inner .ht-product-categories.hide-category-before::before {
  display: none !important;
}

/** Product Tab **/
.woolentor-product-tab-area img {
  width: 100%;
  height: auto;
}

/** Product Grid **/
.woolentor_block_product_grid [class*="woolentor-"] i.fa-heart {
  font-family: "FontAwesome";
}
.woolentor_block_product_grid [class*="woolentor-"] i.far.fa-heart:before {
  content: "\f08a";
}

/* Product Curvy */
.woolentor-product-curvy
  .wl_single-product-item.wl_left-item
  .product-thumbnail {
  height: auto;
}

/* Product Filter */
[class*="woolentorblock-"] .woolentor_slider_range .ui-slider-handle.ui-state-default.ui-corner-all{
  top: -0.5em;
}

/* Cart table */
.woocommerce-page .woolentor_block_cart_table table.shop_table .variation dt {
  float: none;
}
.woocommerce-page .woolentor_block_cart_table table.shop_table .variation dd {
  display: inline-block;
}

/* Cross Sells */
.woocommerce:not(.woocommerce-js)
  .woolentor_block_cross_sell
  .products
  .star-rating,
.woocommerce:not(.woocommerce-js)
  .woolentor_block_archive_default
  .products
  .star-rating {
  display: inline-block;
}
.woolentor-content-align-center .wishsuite-button {
  justify-content: center;
}
.woolentor-content-align-right .wishsuite-button {
  justify-content: flex-end;
}

/* Checkout Payment */
.woolentor-heading-right #payment div.payment_box::before {
  right: 0;
  left: auto !important;
}
/* Checkout Order review */
.woocommerce-page.woocommerce-checkout
  form
  .woolentor_block_checkout_order_review
  #order_review {
  float: none;
  width: 100%;
}
.woocommerce-page.woocommerce-checkout
  form
  .woolentor_block_checkout_order_review
  #order_review_heading {
  float: none;
  width: auto;
}
.woocommerce-page .woolentor_block_checkout_order_review table.shop_table {
  width: 100%;
}

/* Recently Viewed Product */
.woolentor_block_recently_viewed_product .woolentor-recently-viewed-product {
  margin-bottom: 0;
}
.woolentor_block_recently_viewed_product .woolentor-recently-view-title {
  font-size: 18px !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}

/* Product Advanced Image */
.woolentor-advance-product-image-area .wl-thumbnails-image-area {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.woolentor-advance-product-image-area.wlpro-product-thumbnails
  .woolentor-thumbnails,
.woolentor-advance-product-image-area.wlpro-product-thumbnails
  .woolentor-learg-img {
  width: 100%;
}
.woolentor-advance-product-image-area .product-slider .slick-arrow.slick-next {
  right: 15px;
  left: auto;
}
.woolentor-advance-product-image-area .ht-product-label {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9;
}
.thumbnails-tab-position-bottom.wlpro-product-thumbnails
  ul.woolentor-thumbanis-image,
.thumbnails-tab-position-top.wlpro-product-thumbnails
  ul.woolentor-thumbanis-image {
  width: 100%;
}
.wlpro-product-thumbnails .woocommerce-product-gallery__image {
  width: 100%;
}

/* Product Advanced Image With Zoom */
.wlpro-product-videothumbnails.woolentor-block-product-image-zoom{
  overflow: visible;
}
.woolentor-block-product-image-zoom .wl-product-details-thumbs{
  margin-left: -5px;
  margin-right: -5px;
}

/* Product Add to cart Button */
.wl-nonequantity-txt.wl-addto-cart
  form.cart
  .wl-quantity-wrap
  .wl-quantity-cal {
  margin-left: 0 !important;
}
.woocommerce .woolentor-product-addtocart .quantity .qty {
  width: auto;
}

/* Product Navigation */
[class*="woolentorblock-"] .wl-single-product-navigation a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  margin-left: 0;
}
[class*="woolentorblock-"] .wl-single-product-navigation a+a{
  margin-left: 12px;
}

/*
* OceanWP Theme
*/
.woolentor_current_theme_oceanwp
  [class*="woolentor-products-columns-"]
  ul.products.grid {
  display: grid !important;
}
.woolentor_current_theme_oceanwp
  [class*="woolentor-products-columns-"]
  ul.products.list {
  display: block !important;
}

/* Normal  :1366px. */
@media (min-width: 1200px) and (max-width: 1400px) {
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
  /*Default Product column*/
  [class*="woolentor-products-columns-"] ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-1 ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-products-columns-laptop-2 ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-3 ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-4 ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-5 ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-6 ul.products {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-7 ul.products {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-8 ul.products {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-9 ul.products {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-laptop-10 ul.products {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  [class*="woolentor-products-columns-laptop-"] ul.products li.product.first {
    clear: none !important;
  }

  /*Column Grid */
  [class*="woolentor-grid-columns-"] .woolentor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-1 .woolentor-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-grid-columns-laptop-2 .woolentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-3 .woolentor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-4 .woolentor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-5 .woolentor-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-6 .woolentor-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-7 .woolentor-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-8 .woolentor-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-9 .woolentor-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-laptop-10 .woolentor-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
}

/* Tablet device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
  /*Default Product column*/
  [class*="woolentor-products-columns-"] ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-1 ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-products-columns-tablet-2 ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-3 ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-4 ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-5 ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-6 ul.products {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-7 ul.products {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-8 ul.products {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-9 ul.products {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-tablet-10 ul.products {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  [class*="woolentor-products-columns-tablet-"] ul.products li.product.first {
    clear: none !important;
  }

  /*Column Grid */
  [class*="woolentor-grid-columns-"] .woolentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-1 .woolentor-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-grid-columns-tablet-2 .woolentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-3 .woolentor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-4 .woolentor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-5 .woolentor-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-6 .woolentor-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-7 .woolentor-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-8 .woolentor-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-9 .woolentor-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-tablet-10 .woolentor-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
}

/* small mobile :320px. */
@media (max-width: 767px) {
  /*Default Product column*/
  [class*="woolentor-products-columns-"] ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-products-columns-mobile-1 ul.products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-products-columns-mobile-2 ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-3 ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-4 ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-5 ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-6 ul.products {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-7 ul.products {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-8 ul.products {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-9 ul.products {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-products-columns-mobile-10 ul.products {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
  [class*="woolentor-products-columns-mobile-"] ul.products li.product.first {
    clear: none !important;
  }

  /*Column Grid */
  [class*="woolentor-grid-columns-"] .woolentor-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-grid-columns-mobile-1 .woolentor-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .woolentor-grid-columns-mobile-2 .woolentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-3 .woolentor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-4 .woolentor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-5 .woolentor-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-6 .woolentor-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-7 .woolentor-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-8 .woolentor-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-9 .woolentor-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }
  .woolentor-grid-columns-mobile-10 .woolentor-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}.wp-embed-responsive .wp-block{
    outline: 0;
}
.wl-row.slick-slider{
    margin-right: 0;
    margin-left: 0;
}
.wl-single-brand {
    text-align: center;
    margin-bottom: 20px;
}
.slick-slide .wl-single-brand{
    margin-bottom: 0;
}
.slick-slide .wl-single-brand img {
    display: inline-block;
}
 /** Block: brand-logo Style End **/
[class*="ht-category-wrap"] [class*="ht-category-image-"]{
  overflow: hidden;
}
.ht-category-wrap .ht-category-image{
  overflow: hidden;
  margin-bottom: 20px;
}
.ht-category-wrap .ht-category-image a {
  display: block;
  position: relative;
}
.ht-category-wrap .ht-category-image a img {
  width: 100%;
}
.ht-category-wrap .ht-category-image a.ht-category-border::before {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border: 1px solid #fff;
  transition: all 0.5s ease 0s;
  transform: scale(1);
}
.ht-category-wrap .ht-category-image a.ht-category-border-2::before {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border: 1px solid #fff;
  transition: all 0.5s ease 0s;
  transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
}
.ht-category-wrap .ht-category-image-3 {
  border-radius: 100%;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease 0s;
  margin-bottom: 20px;
}
.ht-category-wrap .ht-category-image-3 a img {
  width: 100%;
}
.ht-category-wrap.ht-category-bg-padding {
  background: #f8f8f8;
  padding: 25px 30px 30px;
}
.ht-category-wrap .ht-category-image-zoom a img {
  transition: all 0.5s ease 0s;
}
.ht-category-wrap .ht-category-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ht-category-wrap .ht-category-content h3 {
  margin: 0;
  font-size: 20px;
}
.ht-category-wrap .ht-category-content h3 a {
  color: #444;
}
.ht-category-wrap .ht-category-content h3 a:hover {
  color: #dc9a0e;
}
.ht-category-wrap .ht-category-content span {
  display: inline-block;
  line-height: 1;
  position: relative;
  font-size: 16px;
}
.ht-category-wrap .ht-category-content span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 10px);
  width: 50px;
  height: 1px;
  content: "";
  background-color: #ccc;
}
.ht-category-wrap .ht-category-content-3 {
  position: relative;
  z-index: 9;
  max-width: 80%;
  margin: -43px auto 0;
  padding: 15px 10px 14px;
}
.ht-category-wrap .ht-category-content-3.ht-category-content-3-bg1 {
  background-color: #f4ede7;
}
.ht-category-wrap .ht-category-content-3.ht-category-content-3-bg2 {
  background-color: #e8f5f2;
}
.ht-category-wrap .ht-category-content-3.ht-category-content-3-bg3 {
  background-color: #e3e4f5;
}
.ht-category-wrap .ht-category-content-3.ht-category-content-3-bg4 {
  background-color: #faf5e5;
}
.ht-category-wrap .ht-category-content-3 h3 {
  font-size: 18px;
  line-height: 1;
  margin: 0;
  text-align: center;
}
.ht-category-wrap .ht-category-content-3 h3 span {
  font-size: 14px;
  margin-left: 5px;
}
.ht-category-wrap .ht-category-content-3 h3 a {
  color: #444;
}
.ht-category-wrap .ht-category-content-3 h3 a:hover {
  color: #dc9a0e;
}
.ht-category-wrap .ht-category-content-4{
  text-align: center;
}
.ht-category-wrap .ht-category-content-4 h3 {
  font-size: 16px;
  display: inline-block;
  position: relative;
  margin: 0;
  letter-spacing: 0.5px;
}
.ht-category-wrap .ht-category-content-4 span {
  position: absolute;
  top: -8px;
  right: -33px;
  font-size: 14px;
}
.ht-category-wrap .ht-category-content-4 h3 a {
  color: #444;
}
.ht-category-wrap .ht-category-content-4 h3 a:hover {
  color: #dc9a0e;
}
.ht-category-wrap .ht-category-content-5{
  text-align: center;
}
.ht-category-wrap .ht-category-content-5 h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ht-category-wrap .ht-category-content-5 h3 span {
  margin-left: 5px;
  color: #dc9a0e;
}
.ht-category-wrap .ht-category-content-5 h3 a {
  color: #000000;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.ht-category-wrap .ht-category-content-5 h3 a:hover {
  color: #dc9a0e;
  border-bottom: 1px solid #dc9a0e;
}
.ht-category-wrap:hover .ht-category-image a.ht-category-border::before {
  transform: scale(0.95);
}
.ht-category-wrap:hover .ht-category-image a.ht-category-border-2::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.ht-category-wrap:hover .ht-category-image-3 {
  border: 1px solid #dc9a0e;
}
.ht-category-wrap:hover .ht-category-image-zoom a img {
  transform: scale(1.1);
}

.ht-category-wrap-2 {
  position: relative;
  overflow: hidden;
  padding: 48px 20px 42px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}
.ht-category-wrap-2::before {
  position: absolute;
  z-index: 2;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.7s ease 0s;
  border: 4px solid transparent;
  pointer-events: none;
}
.ht-category-wrap-2{
  text-align: center;
}
.ht-category-wrap-2 .ht-category-image-2 {
  margin-top: 39px;
  display: inline-block;
}
.ht-category-wrap-2 .ht-category-image-2 a {
  display: block;
  text-align: center;
}
.ht-category-wrap-2 .ht-category-image-2 a img {
  max-width: 100%;
  transition: all 0.7s ease 0s;
}
.ht-category-wrap-2 .ht-category-content-2 h3 {
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ht-category-wrap-2 .ht-category-content-2 h3 span {
  font-size: 14px;
  margin: 0 0 0 8px;
}
.ht-category-wrap-2 .ht-category-content-2 h3 a {
  color: #444;
  display: block;
}
.ht-category-wrap-2 .ht-category-content-2 h3 a:hover {
  color: #dc9a0e;
}
.ht-category-wrap-2 .ht-category-content-2 h3::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -14px;
  margin: 0 auto;
  background-color: #D3D3D3;
  width: 90px;
  height: 2px;
}
.ht-category-wrap-2 .ht-category-content-2.hide-title-after h3::before{
    display: none;
}
.ht-category-wrap-2:hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  border: 4px solid #dc9a0e;
}
.ht-category-wrap-2:hover .ht-category-image-2 a img {
  transform: scale(1.2);
}
 /** Block: category-grid Style End **/
/*Marker Style 01*/
.wlb-marker-style-1 {
    padding: 245px 0;
}

.wlb-marker-style-1 .wlb_image_pointer {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    border: 3px solid #ed552d;
    background-color: #fff;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 32px;
}

.wlb-marker-style-1 .wlb_image_pointer .wlb_pointer_box {
    background: #fff;
    width: 240px;
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate3d(50%, -100%, 0);
    transform: translate3d(50%, -100%, 0);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    z-index: 10;
    padding: 20px;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
}

.wlb-marker-style-1 .wlb_image_pointer .wlb_pointer_box h4 {
    font-size: 20px;
    margin-bottom: 7px;
}

.wlb-marker-style-1 .wlb_image_pointer .wlb_pointer_box p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.wlb-marker-style-1 .wlb_image_pointer:hover .wlb_pointer_box {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-110%) translateX(50%);
    transform: translateY(-110%) translateX(50%);
}

.wlb-marker-style-1 .wlb_image_pointer::before {
    content: "\f129";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: FontAwesome;
    color: #ed552d;
    font-size: 18px;
    width: 100%;
    height: 100%;
}

.wlb-marker-style-1 .wlb_image_pointer {
    position: absolute;
    left: 66%;
    top: 15%;
}

/*Marker Style 02*/
.wlb-marker-style-2 {
    padding: 245px 0;
}

.wlb-marker-style-2 .wlb_image_pointer {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    border: 5px solid #dddddd;
    background-color: #fff;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 38px;
}

.wlb-marker-style-2 .wlb_image_pointer .wlb_pointer_box {
    background: #fff;
    width: 240px;
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate3d(50%, -100%, 0);
    transform: translate3d(50%, -100%, 0);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    z-index: 10;
    padding: 20px;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
}

.wlb-marker-style-2 .wlb_image_pointer .wlb_pointer_box h4 {
    font-size: 20px;
    margin-bottom: 7px;
}

.wlb-marker-style-2 .wlb_image_pointer .wlb_pointer_box p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.wlb-marker-style-2 .wlb_image_pointer:hover .wlb_pointer_box {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-110%) translateX(50%);
    transform: translateY(-110%) translateX(50%);
}

.wlb-marker-style-2 .wlb_image_pointer::before {
    content: "\f067";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: FontAwesome;
    color: #ed552d;
    font-size: 18px;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.wlb-marker-style-2 .wlb_image_pointer:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(47deg);
}

.wlb-marker-style-2 .wlb_image_pointer {
    position: absolute;
    left: 50%;
    top: 26%;
}

/*Marker Style 03*/
.wlb-marker-style-3 {
    padding: 245px 0;
}

.wlb-marker-style-3 .wlb_image_pointer {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background-color: #000000;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 49px;
    z-index: 2;
}

.wlb-marker-style-3 .wlb_image_pointer .wlb_pointer_box {
    background: #000000;
    width: 240px;
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate3d(50%, -100%, 0);
    transform: translate3d(50%, -100%, 0);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    z-index: 10;
    padding: 20px;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
}

.wlb-marker-style-3 .wlb_image_pointer .wlb_pointer_box h4 {
    font-size: 20px;
    margin-bottom: 7px;
    color: #ffffff;
}

.wlb-marker-style-3 .wlb_image_pointer .wlb_pointer_box p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
    color: #ffffff;
}

.wlb-marker-style-3 .wlb_image_pointer:hover .wlb_pointer_box {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-110%) translateX(50%);
    transform: translateY(-110%) translateX(50%);
}

.wlb-marker-style-3 .wlb_image_pointer::before {
    content: "\f067";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 18px;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.wlb-marker-style-3 .wlb_image_pointer::after {
    position: absolute;
    left: 2px;
    background: #000;
    content: "";
    right: 2px;
    top: 2px;
    bottom: 2px;
    border-radius: 100%;
    border: 2px solid #fff;
    z-index: -1;
}

.wlb-marker-style-3 .wlb_image_pointer:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(47deg);
}

.wlb-marker-style-3 .wlb_image_pointer {
    position: absolute;
    left: 50%;
    top: 26%;
}

/*Marker Style 04*/
.wlb-marker-style-4 {
    padding: 245px 0;
}

.wlb-marker-style-4 .wlb_image_pointer {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 38px;
    border: 5px solid #d88d78;
    z-index: 2;
}

.wlb-marker-style-4 .wlb_image_pointer .wlb_pointer_box {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 240px;
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate3d(50%, -100%, 0);
    transform: translate3d(50%, -100%, 0);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    z-index: 10;
    padding: 20px;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
}

.wlb-marker-style-4 .wlb_image_pointer .wlb_pointer_box h4 {
    font-size: 20px;
    margin-bottom: 7px;
}

.wlb-marker-style-4 .wlb_image_pointer .wlb_pointer_box p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
    color: #18012c;
}

.wlb-marker-style-4 .wlb_image_pointer:hover .wlb_pointer_box {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-110%) translateX(50%);
    transform: translateY(-110%) translateX(50%);
}

.wlb-marker-style-4 .wlb_image_pointer::before {
    content: "\f067";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: FontAwesome;
    color: #d88d78;
    font-size: 18px;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.wlb-marker-style-4 .wlb_image_pointer:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(47deg);
}

.wlb-marker-style-4 .wlb_image_pointer {
    position: absolute;
    left: 83%;
    top: 37%;
}

/*Marker Style 05*/
.wlb-marker-style-5 {
    padding: 245px 0;
}

.wlb-marker-style-5 .wlb_image_pointer {
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background: #000;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 47px;
    z-index: 2;
}

.wlb-marker-style-5 .wlb_image_pointer .effect-1 {
    position: relative;
}

.wlb-marker-style-5 .wlb_image_pointer .effect-1::before,
.wlb-marker-style-5 .wlb_image_pointer .effect-1::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    border: 1px solid #f10;
    border-radius: 50%;
    -webkit-transform: scale(0.35) translateY(-50%) translateX(-50%);
    -ms-transform: scale(0.35) translateY(-50%) translateX(-50%);
    transform: scale(0.35) translateY(-50%) translateX(-50%);
    opacity: 0;
    -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
    animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
}

.wlb-marker-style-5 .wlb_image_pointer .effect-1::before {
    width: 32px;
    height: 32px;
    left: 50%;
    top: 50%;
    z-index: -1;
}

.wlb-marker-style-5 .wlb_image_pointer .effect-1::after {
    width: 32px;
    height: 32px;
    z-index: -1;
    border-color: rgba(255, 255, 255, 0.4);
    -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
    animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
}

.wlb-marker-style-5 .wlb_image_pointer .wlb_pointer_box {
    background: #000000;
    width: 240px;
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate3d(50%, -100%, 0);
    transform: translate3d(50%, -100%, 0);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    z-index: 10;
    padding: 20px;
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
}

.wlb-marker-style-5 .wlb_image_pointer .wlb_pointer_box h4 {
    font-size: 20px;
    margin-bottom: 7px;
    color: #fff;
}

.wlb-marker-style-5 .wlb_image_pointer .wlb_pointer_box p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
    color: #fff;
}

.wlb-marker-style-5 .wlb_image_pointer:hover .wlb_pointer_box {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-110%) translateX(50%);
    transform: translateY(-110%) translateX(50%);
}

.wlb-marker-style-5 .wlb_image_pointer::before {
    content: "\f067";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 18px;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.wlb-marker-style-5 .wlb_image_pointer:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(47deg);
}

.wlb-marker-style-5 .wlb_image_pointer {
    position: absolute;
    left: 83%;
    top: 37%;
}

/* Marker Animation Css */
@-webkit-keyframes marker-ripple-animation {
    0% {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1.7);
        opacity: 0;
    }
}

@keyframes marker-ripple-animation {
    0% {
        transform: translate3d(-50%, -50%, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate3d(-50%, -50%, 0) scale(1.7);
        opacity: 0;
    }
}
 /** Block: image-marker Style End **/
svg.woolentor-banner-default{
  fill-opacity: 0.1;
}
.wlspcial-banner .banner-thumb a {
    overflow: hidden;
    position: relative;
    display: block;
}
.wlspcial-banner .banner-thumb a::before {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 0;
}

.wlspcial-banner .banner-thumb a::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transition: all 0.5s ease 0s;
    width: 0;
}

.wlspcial-banner .banner-thumb a img {
    width: 100%;
}

.wlspcial-banner:hover .banner-thumb a::before {
    height: 100%;
    opacity: 0.3;
    width: 100%;
}

.wlspcial-banner:hover .banner-thumb a::after {
    height: 100%;
    opacity: 0.3;
    width: 100%;
}

.wlspcial-banner {
    position: relative;
}

.wlspcial-banner .banner-content{
  position: absolute;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.wlspcial-banner .banner-content a {
  color: #383838;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  text-decoration: none;
  display: inline-block;
}

.woolentor-banner-content-pos-center .banner-content{
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
}

.woolentor-banner-content-pos-bottom .banner-content {
  bottom: 0;
  padding-bottom: 40px;
}

.woolentor-banner-content-pos-top .banner-content {
  top: 0;
  padding-top: 40px;
}

.wlspcial-banner.woolentor-banner-content-pos-right .banner-content {
  top: 50%;
  right: 0;
  width: auto;
  transform: translateY(-50%);
}
.wlspcial-banner.woolentor-banner-content-pos-left .banner-content {
  top: 50%;
  left: 0;
  width: auto;
  transform: translateY(-50%);
}
.wlbanner-badgeimage {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.wlbanner-badgeimage img{
  width: 100%;
}
 /** Block: special-day-offer Style End **/
.ht-feature-wrap {
    position: relative;
    text-align: center;
}
.ht-feature-style-1 .ht-feature-inner {
    border: 1px solid #e8e8e8;
    padding: 25px 15px 20px;
    transition: all 0.3s ease 0s;
}
.ht-feature-wrap .ht-feature-content h4 {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1;
    color: #000000;
}
.ht-feature-wrap .ht-feature-content p {
    font-size: 15px;
    color: #6d6d6d;
    margin: 0;
}
.ht-feature-wrap .ht-feature-img {
    margin-bottom: 20px;
    display: inline-block;
}
.ht-feature-wrap .ht-feature-img img {
    max-width: 100%;
    transition: all 0.5s ease 0s;
}
.ht-feature-wrap .ht-feature-img i {
    font-size: 32px;
    color: #dc9a0e;
    display: inline-block;
}
.ht-feature-wrap .ht-feature-img svg{
    width: 32px;
    height: 32px;
}
.ht-feature-style-2 .ht-feature-inner{
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    text-align: left;
}
.ht-feature-style-2 .ht-feature-content{
    padding-left: 30px;
    margin-left: 24px;
    border-left: 1px solid #ddd9d2;
}
.ht-feature-wrap.ht-feature-style-2:hover .ht-feature-img {
    animation: 500ms ease-in-out 0s normal none 1 running rubberBand;
}
.ht-feature-style-2 .ht-feature-content {
    padding-left: 30px;
    width: 100%;
}
.ht-feature-style-2 .ht-feature-content h4,.ht-feature-style-5 .ht-feature-content h4 {
    font-size: 20px;
    margin: 0 0 12px;
    line-height: 1;
    color: #000000;
}
.ht-feature-style-2 .ht-feature-content p {
    margin: 0;
    font-size: 15px;
    color: #6d6d6d;
}
.ht-feature-style-2 .ht-feature-img{
    margin: 0;
}
.ht-feature-wrap.ht-feature-style-1:hover .ht-feature-inner {
    border: 1px solid #dc9a0e;
}
.ht-feature-wrap.ht-feature-style-1:hover .ht-feature-img img,
.ht-feature-style-5:hover .ht-feature-img{
    animation: 500ms ease-in-out 0s normal none 1 running tada;
}
.ht-feature-style-3 .ht-feature-img{
    display: inline-block;
    border: 1px solid #000000;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 100%;
    transition: all 0.5s ease 0s;
}
.ht-feature-style-3 .ht-feature-img img{
    border-radius: 100%;
}
.woolentor-blocks.ht-feature-style-3 .ht-feature-img{
    line-height: 48px;
}
.ht-feature-style-3 .ht-feature-img i{
    font-size: 20px;
    color: #000000;
}
.ht-feature-style-3:hover .ht-feature-img{
    background-color: #dc9a0e;
    border: 1px solid #dc9a0e;
    transform: rotate(360deg);
}
.ht-feature-style-3:hover .ht-feature-img i{
    color: #ffffff;
}
.ht-feature-style-3 .ht-feature-content h4,.ht-feature-style-4 .ht-feature-content h4 {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1;
    color: #000000;
}
.ht-feature-style-3 .ht-feature-content p,.ht-feature-style-4 .ht-feature-content p {
    color: #6d6d6d;
    line-height: 27px;
    margin: 0 auto;
    font-size: 15px;
    width: 82%;
}
.ht-feature-style-4{
    text-align: left;
}
.ht-feature-style-4 .ht-feature-content {
    border-top: 1px solid #ebebeb;
    margin-top: 25px;
    padding-top:25px; 
}
.ht-feature-style-4 .ht-feature-content p{
    width: 100%;
}
.ht-feature-style-4 .ht-feature-img{
    display: inline-block;
    background-color: #e9ecef;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 100%;
    transition: all 0.5s ease 0s;
    margin: 0;
    overflow: hidden;
}
.ht-feature-style-4 .ht-feature-img i {
    font-size: 20px;
    color: #000000;
}
.ht-feature-style-4:hover .ht-feature-img{
    background-color: #dc9a0e;
    transform: rotateY(180deg);
}
.ht-feature-style-4:hover .ht-feature-img i{
    color: #ffffff;
}
.ht-feature-style-5 .ht-feature-img {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 120px;
}
.ht-feature-style-5 .ht-feature-img img {
    max-width: 100%;
}
 /** Block: store-feature Style End **/
.woolentor-product-tab-area {
    position: relative;
    z-index: 35;
}

.product-slider {
    width: 100%;
}

.product-item {
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.product-item mark, .product-item ins {
    background: transparent;
}

.product-item .product-inner .image-wrap {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.product-item .product-inner .image-wrap .wishlist, .product-item .product-inner .image-wrap .tinv-wraper {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    margin-top: 0;
}

.product-item .product-inner .image-wrap .tinv-wraper a, .ht-product-action .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
    margin: 0;
}

.ht-product-list-action .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
    margin-top: 0;
}

.product-item .product-inner .image-wrap .tinv-wraper a .tinvwl_add_to_wishlist-text, .ht-product-action .tinv-wraper a .tinvwl_add_to_wishlist-text {
    display: none;
}

.ht-product-action .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before, .ht-product-action .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus::before {
    font-size: 26px;
}

.yith-wcwl-add-to-wishlist .ajax-loading {
    left: 20px;
    margin: 0;
    position: absolute;
    top: 4px;
}

.product-item .content {
    padding-top: 10px;
}

.content h4.title {
    margin: 0;
}

.product-item .product-inner .content .title {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-item .actions {
    background: #333 none repeat scroll 0 0;
    border-radius: 20px;
    color: #fff;
    display: flex;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease 0s;
    width: 150px;
    opacity: 0;
    visibility: hidden;
}

.product-item .actions>* {
    flex: 1 0 auto;
}

.product-item .product-inner .image-wrap .actions.style_two {
    width: 85%;
    border-radius: 0;
    bottom: 0;
    top: auto;
}

.product-item .woocommerce.compare-button a.button {
    background-color: #333;
    border-radius: 20px;
}

.product-item .product-inner .image-wrap .style_two .wishlist {
    position: static;
}

.yith-wcwl-add-button {
    position: relative;
}

.style_two .yith-wcwl-add-to-wishlist .ajax-loading {
    margin-left: 0;
    top: 11px;
}

.product-item .woocommerce.product.compare-button, .product-item .actions .htcompare-btn {
    border-left: 1px solid #999;
}

.product-item .actions .htcompare-btn {
    border-radius: 0;
}

.product-item:hover .actions {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%);
    visibility: visible;
}

.product-item .actions a, .product-item .woocommerce.compare-button a.button {
    color: #fff;
    display: block !important;
    font-weight: normal;
    line-height: inherit;
    padding: 7px 5px;
    text-indent: -999999px;
    position: relative;
    background: transparent;
}
.wishsuite-button.wltooltip_no span.wishsuite-btn-text {
    display: none;
}

.product-item .actions a::before {
    color: #fff;
    content: "";
    font-family: fontawesome;
    height: 100%;
    left: 0;
    position: absolute;
    text-indent: 0;
    top: 5px;
    width: 100%;
}

.product-item .actions .compare-button a::before, .product-item .actions .htcompare-btn::before {
    content: "\f021";
}

.product-item .product-inner .image-wrap .style_two .wishlist a::before {
    content: "\f08a";
}

.product-item .product-inner .image-wrap .style_two .wishlist .yith-wcwl-wishlistexistsbrowse a::before, .product-item .product-inner .image-wrap .style_two .wishlist .yith-wcwl-wishlistaddedbrowse a::before {
    content: "\f004";
}

.product-item .product-inner .actions.style_two a {
    text-indent: 0;
}

.product-item .product-inner .actions.style_two a::before {
    display: none;
}

.product-item .product-inner .actions.style_two .tinv-wishlist a::before {
    display: block;
    font-size: 20px;
    line-height: 28px;
}

.product-item .product-inner .actions.style_two .tinv-wishlist a {
    text-indent: -999999px;
    margin: 0;
}

.product-item.product_style_three .product-inner .image-wrap {
    overflow: visible;
}

.product_information_area {
    background: #fff none repeat scroll 0 0;
    bottom: -90px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    transition: all 0.4s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}

.product_information_area .content {
    padding-bottom: 15px;
    text-align: center;
}

.product-item .product-inner .image-wrap .product_information_area .actions.style_two {
    border-radius: 0;
    bottom: 0;
    opacity: 1;
    overflow: hidden;
    padding: 0 30px;
    position: static;
    top: auto;
    transform: translateX(0px);
    visibility: visible;
    width: 100%;
}

.product-item:hover .product_information_area {
    bottom: -103px;
    opacity: 1;
    visibility: visible;
}

.woocommerce span.onsale, span.onsale {
    background-color: #23252a;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    left: 15px;
    top: 15px;
    line-height: 1;
    min-height: inherit;
    min-width: inherit;
    padding: 5px 10px;
    position: absolute;
}

.product-item a.button.added {
    display: none !important;
}

.product-item .actions .htcompare-btn.added {
    display: block !important;
}

.product-item .actions .htcompare-btn.loading {
    padding: 0;
}

.product-item .actions a.htcompare-btn.loading::after {
    right: 20px;
}

.product-item .product-inner .image-wrap .actions a.added_to_cart {
    text-indent: -99999px;
}

.product-item .product-inner .image-wrap .actions a.added_to_cart::before {
    content: "";
    font-family: WooCommerce;
    font-size: 20px;
    left: auto;
    position: absolute;
    text-indent: 0;
    top: 0;
    display: block;
}

.product-item a.button.added::after, .product-item a.button.loading::after {
    color: #fff;
    content: "";
    display: block;
    font-family: "fontawesome";
    margin: 0 auto;
    position: absolute;
    text-indent: 0;
    top: 5px;
}

/* Tab Menu */

.ht-tab-menus {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ht-tab-menus {
    margin-bottom: 45px;
}

.ht-tab-menus li {
    display: inline-block;
    margin-right: 20px;
}

.ht-tab-menus li:last-child {
    margin-right: 0;
}

.ht-tab-menus li a {
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 5px 15px;
    text-transform: capitalize;
}

.ht-tab-menus li a:focus {
    outline: none;
}

.ht-tab-menus li a.htactive {
    border-color: #e5e5e5;
}

.ht-tab-pane {
    display: none;
}

.ht-tab-pane.htactive {
    display: block;
}

.product_attribute ul {
    list-style: outside none none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
}

.product_information_area .attribute_label {
    font-weight: 600;
}

.product_attribute {
    margin-top: 25px;
    padding: 0 30px;
}

.product_attribute ul li {
    display: inline-block;
    line-height: 1;
    margin: 0 10px 0 0;
}

.product_attribute ul li.color_attribute {
    border-radius: 100%;
    height: 15px;
    width: 15px;
}

.product-slider .slick-arrow {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #ddd;
    color: #ddd;
    font-size: 20px;
    height: 40px;
    left: -30px;
    line-height: inherit;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    z-index: 99;
    transition: 0.4s;
}

.product-slider .slick-arrow.slick-next {
    right: -30px;
    left: auto;
}

.product-slider .slick-arrow:hover {
    border-color: #333;
    color: #333;
}

.product-slider .slick-dots {
    bottom: 0px;
    display: flex;
    left: 50%;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    transform: translateX(-50%);
}

.product-slider .slick-dots li {
    line-height: 12px;
    margin: 0 4px;
}

.product-slider .slick-dots li button {
    background-color: transparent;
    border: 1px solid #4e4f4f;
    border-radius: 50px;
    height: 13px;
    padding: 0;
    text-indent: -9999px;
    width: 13px;
    line-height: 13px;
}

.product-slider .slick-dots li.slick-active button {
    background-color: #282828;
    border-color: #282828;
}
 /** Block: product-tab Style End **/
.woolentor-banner {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    overflow: hidden;
}

.woolentor-banner-img, .woolentor-content {
    width: 50%;
    float: left;
}

.woolentor-content {
    padding-left: 70px;
}

.woolentor-banner .banner_subtitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.woolentor-banner .banner_title {
    font-size: 28px;
    font-weight: normal;
    margin: 35px 0;
}

.woolentor-banner .banner_button {
    border-bottom: 1px solid #000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.woolentor-content-align-right .woolentor-banner-img {
    order: 1;
    padding-left: 50px;
}

.woolentor-content-align-right .woolentor-content {
    order: 2;
    padding-left: 40px;
}

.woolentor-content-align-right.woolentor-banner .banner_title {
    margin: 20px 0;
}

.woolentor-content-align-bottom .woolentor-banner-img {
    order: 1;
    padding-left: 0;
    width: 100%;
}

.woolentor-content-align-bottom .woolentor-content {
    order: 2;
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.woolentor-content-align-bottom .banner_title {
    margin: 0 0 20px;
}

/* Banner style two */

.woolentor-banner-layout-2 {
    display: block;
    position: relative;
}

.woolentor-banner-layout-2 .woolentor-content {
    padding-left: 0;
}

.woolentor-banner-layout-2 .woolentor-banner-img {
    float: none;
    width: 100%;
}

.woolentor-banner-layout-2 .woolentor-content {
    padding-left: 50px;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
}

.woolentor-banner-layout-2 .woolentor-content h2 {
    margin: 0;
}

.woolentor-banner-layout-2.woolentor-content-align-bottom .woolentor-content {
    bottom: 50px;
    padding: 0 0 0 50px;
    top: auto;
    text-align: left;
}

.woolentor-banner-layout-2.woolentor-content-align-right .woolentor-content {
    left: auto;
    padding-right: 50px;
    padding-left: 0;
    right: 0;
    text-align: right;
}

.woolentor-banner-layout-2.woolentor-content-align-right .woolentor-banner-img {
    padding-left: 0px;
}

.woocommerce.product-slider div.product.ht-product {
    float: left;
}
 /** Block: promo-banner Style End **/
.htwoolentor-faq-card {
    margin-bottom: 12px;
}

.htwoolentor-faq-card .htwoolentor-faq-head {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.625;
    position: relative;
    display: flex;
    padding: 19px 25px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.htwoolentor-faq .htwoolentor-faq-card.is-active .htwoolentor-faq-head .htwoolentor-faq-head-icon.htwoolentor-faq-close-icon, .htwoolentor-faq .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-icon.htwoolentor-faq-open-icon {
    display: block;
}

.htwoolentor-faq .htwoolentor-faq-card.is-active .htwoolentor-faq-head .htwoolentor-faq-head-icon.htwoolentor-faq-open-icon, .htwoolentor-faq .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-icon.htwoolentor-faq-close-icon {
    display: none;
}

.htwoolentor-faq .htwoolentor-faq-card.is-active .htwoolentor-faq-head .htwoolentor-faq-head-icon svg :not([stroke="none"]) {
    fill: #FFFFFF;
}

.htwoolentor-faq .htwoolentor-faq-card.is-active .htwoolentor-faq-head .htwoolentor-faq-head-icon svg :not([fill="none"]) {
    stroke: #FFFFFF;
}

.htwoolentor-faq .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-icon svg [fill="none"] {
    fill: transparent !important;
}

.htwoolentor-faq .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-icon svg [stroke="none"] {
    stroke: transparent !important;
}

@media only screen and (max-width: 767px) {
    .htwoolentor-faq-card .htwoolentor-faq-head {
        padding: 15px 15px;
        font-size: 16px;
        line-height: 1.5;
    }
}

.htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-indicator {
    position: relative;
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

.htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-indicator::before, .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-indicator::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    content: "";
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateY(-50%);
    border-radius: 10px;
    background-color: #3D3D3D;
}

@media only screen and (max-width: 767px) {
    .htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-indicator {
        margin-left: 15px;
    }
}

.htwoolentor-faq-card .htwoolentor-faq-head .htwoolentor-faq-head-indicator::after {
    transform: translateY(-50%) rotate(90deg);
}

.htwoolentor-faq-card .htwoolentor-faq-body {
    overflow: hidden;
}

.htwoolentor-faq-card .htwoolentor-faq-body .htwoolentor-faq-content {
    padding: 16px 25px 4px;
}

@media only screen and (max-width: 767px) {
    .htwoolentor-faq-card .htwoolentor-faq-body .htwoolentor-faq-content {
        padding: 16px 15px 4px;
    }
}

.htwoolentor-faq-card .htwoolentor-faq-body .htwoolentor-faq-content p {
    font-size: 15px;
    line-height: 30px;
    margin: 0;
}

.htwoolentor-faq-card.is-active .htwoolentor-faq-head {
    color: #FFFFFF;
    border-color: #dc9a0e;
    background-color: #dc9a0e;
}

.htwoolentor-faq-card.is-active .htwoolentor-faq-head .htwoolentor-faq-head-indicator::after {
    background-color: #ffffff;
    transform: translateY(-50%);
}
 /** Block: faq Style End **/
.wl_single-product-item a {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

.wl_single-product-item {
    margin-top: 0 !important;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #eeeffb;
    border-radius: 10000px 10000px 20px 20px;
    background: #f7f7f7;
}

.wl_single-product-item .product-thumbnail {
    border: 15px solid #fff;
    text-align: center;
    border-radius: 50000px;
    /* width: 100%; */
    position: relative;
    z-index: 9;
    background: #fff;
}

.wl_single-product-item .product-thumbnail .images {
    /* height: 100%; */
    width: 100%;
    -webkit-box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
    box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
    border-radius: 50%;
}

.wl_single-product-item .product-thumbnail .images img {
    display: inline-block;
    border-radius: 100%;
    width: 100%;
}

.woolentor_block_cart_table .wl_cart_table{
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .wl_single-product-item .product-thumbnail {
        height: 100% !important;
    }
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item .product-thumbnail {
        height: 100% !important;
    }
}

.wl_single-product-item .product-content {
    margin-top: -124px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wl_single-product-item .product-content .product-content-top {
    padding: 140px 20px 10px;
}

.wl_single-product-item .product-content .product-content-top .title {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    text-transform: inherit;
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top .title a {
    color: #fff
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top p {
    font-weight: 400;
    font-size: 14px;
}

.wl_single-product-item .product-content .product-content-top .title a {
    color: #333
}

.wl_single-product-item .product-content .product-content-top .title a:hover {
    color: #0A3ACA
}

.wl_single-product-item .product-content .product-content-top .product-price {
    color: #0A3ACA;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .wl_single-product-item .product-content .product-content-top .product-price {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

.wl_single-product-item .product-content .product-content-top .reading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.wl_single-product-item .product-content .action {
    margin-top: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #4E7CFF;
    padding: 10px 30px;
    border-radius: 0 0 5px 5px;
    margin: 0;
    list-style: none;
}

.wl_single-product-item .product-content .action li {
    margin: 0;
    position: relative;
    line-height: 0
}

.wl_single-product-item .product-content .action li a, .wl_single-product-item .product-content .action .action-item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #285FFC;
    text-align: center;
    border-radius: 5px;
    color: #ffffff;
}

.wl_single-product-item .product-content .action li .yith-wcwl-wishlistaddedbrowse.hide a, .wl_single-product-item .product-content .action li a.add_to_wishlist {
    padding: 0 !important;
}

.wl_single-product-item .product-content .action .action-item:hover {
    background: #2B2B4C;
}

.wl_single-product-item.wl_left-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    border-radius: 500px 0 0 500px;
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item.wl_left-item {
        display: inherit;
        border-radius: 500px 500px 5px 5px;
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
}

.wl_single-product-item.wl_left-item .product-thumbnail {
    height: 270px;
    width: 340px;
    line-height: 200px;
}

.wl_single-product-item.wl_left-item .product-thumbnail .images {
    height: 100%;
    width: 100%;
    -webkit-box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
    box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
    border-radius: 50%;
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item.wl_left-item .product-thumbnail {
        height: 270px;
        width: 270px;
    }
}

.wl_single-product-item.wl_left-item .product-content {
    margin-top: 0px;
    margin-left: -144px;
    width: 100%;
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item.wl_left-item .product-content {
        margin-top: 0px;
        margin-left: 0px;
    }
}

.wl_single-product-item.wl_left-item .product-content .product-price {
    margin-bottom: 5px;
    margin-top: 5px;
}

.wl_single-product-item.wl_left-item .product-content .product-content-top {
    padding: 30px 20px 12px 165px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
    .wl_single-product-item.wl_left-item .product-content .product-content-top {
        padding: 10px 20px 10px 170px;
    }
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item.wl_left-item .product-content .product-content-top {
        padding: 10px 20px 12px 10px;
    }
}

.wl_single-product-item.wl_left-item .product-content .action {
    padding: 10px 30px 10px 150px;
    border-radius: 0 0 5px 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
    .wl_single-product-item.wl_left-item .product-content .action {
        padding: 10px 20px 10px 150px;
    }
}

@media only screen and (max-width: 575px) {
    .wl_single-product-item.wl_left-item .product-content .action {
        padding: 10px 20px;
    }
}

.wl_single-product-item.wl_dark-item .product-thumbnail {
    border: 15px solid #707070;
}

.wl_single-product-item.wl_dark-item .product-thumbnail .images {
    -webkit-box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
    box-shadow: 0 0px 6px rgba(112, 112, 112, 0.2);
}

.wl_single-product-item.wl_dark-item .product-content {
    background: #2B2B4C;
    color: #ffffff;
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top {
    padding: 140px 20px 10px;
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top .title {
    color: #ffffff;
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top .product-price {
    color: #ffffff;
}

.wl_single-product-item.wl_dark-item .product-content .product-content-top .reading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #75828E;
}

.ht-products .wl_single-product-item .product-content .product-content-top .reading .top-rated-rating .ht-product-ratting, .ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-left: -3px;
    margin-right: -3px;
}

.ht-products .wl_single-product-item .product-content .product-content-top .reading .top-rated-rating .ht-product-ratting .ht-product-user-ratting, .ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting .ht-product-user-ratting {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 3;
    margin-left: -5px;
    margin-right: -5px;
}

.ht-products .ht-product.ht-product-content-allcenter .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting .ht-product-user-ratting, .ht-products .ht-product.ht-product-ratting-top-right .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting .ht-product-user-ratting {
    position: inherit;
}

.ht-products .ht-product.ht-product-category-right-bottom .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-price {
    margin-bottom: 25px;
}

.ht-products .ht-product.ht-product-category-right-bottom .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting .ht-product-user-ratting {
    margin-top: 8px;
}

.ht-products .wl_single-product-item .product-content .product-content-top .reading .top-rated-rating .ht-product-ratting .ht-product-user-ratting i, .ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting .ht-product-user-ratting i {
    color: #dc9a0e;
}

.ht-products .wl_single-product-item .product-content .product-content-top .reading .top-rated-rating .ht-product-ratting i, .ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-ratting-wrap .ht-product-ratting i {
    color: #aaaaaa;
}

.wl_single-product-item .action li .woolentor-compare.compare::before {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 100%;
}

.wl_single-product-item .product-content .action li a:hover {
    background: #2B2B4C;
}

.wl_single-product-item .product-content .action span.ht-product-action-tooltip {
    display: none;
}

.wl_single-product-item .product-content .yith-wcwl-add-to-wishlist {
    margin-top: 0;
}

.wl_single-product-item .product-content .yith-wcwl-add-button>a i {
    margin-right: 0;
}

/*--button--*/

.wl_product-accordion .card-body .product-content .product-acontent-bottom .action .btn_cart {
    position: relative;
}

.wl_shop-accordion-wrap .card-body .product-content .product-acontent-bottom .action a.action-item.added, .wl_single-product-item .product-content .action .action-item.added {
    display: none;
}

.wl_shop-accordion-wrap .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward {
    font-size: 0;
    margin-right: 30px;
}

.wl_product-accordion .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward {
    font-size: 0;
    margin-right: 30px;
}

.wl_single-product-item .product-content .action a.added_to_cart.wc-forward {
    text-indent: -9999px;
}

.wl_single-product-item .product-content .action .action-item.loading:before {
    position: absolute;
    text-indent: 0;
    content: "\e01c";
    font-family: WooCommerce;
    left: 0;
    right: 0;
}

.wl_product-accordion .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward:after, .wl_shop-accordion-wrap .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward:after, .wl_single-product-item .product-content .action a.added_to_cart.wc-forward:after {
    position: absolute;
    text-indent: 0;
    content: "\e017";
    font-family: WooCommerce;
    left: 0;
    right: 0;
    font-size: 18px;
}

.wl_product-accordion .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward:after, .wl_shop-accordion-wrap .card-body .product-content .product-acontent-bottom .action a.added_to_cart.wc-forward:after {
    font-size: 18px;
    background: #fff;
    display: inline-table;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    padding: 0 9px;
    margin-right: 70px;
    color: #333;
}

.wl_product-accordion .card-body .product-content .product-acontent-bottom .action .action-item.added, .wl_horizontal-hover-accordion .accordion-ul li .accordion-product-content .accordion-product-item .product-content .action .action-item.added {
    display: none;
}

.wl_horizontal-hover-accordion .accordion-ul li .accordion-product-content .accordion-product-item .product-content .action a.added_to_cart.wc-forward {
    height: 35px;
    padding: 0 9px;
    line-height: 35px;
    background: transparent;
    text-align: center;
    border-radius: 35px;
    border: 1px solid #0A3ACA;
    color: #333;
    margin-right: 10px
}

.woolentor-compare.compare{
    -webkit-text-indent: -99999px;
    text-indent: -99999px;
}
.wl_product-accordion .action .woocommerce.product.compare-button a:before,
.wl_horizontal-hover-accordion .action .woocommerce.product.compare-button a:before,
.wl_single-product-item .action li .woolentor-compare.compare::before {
    content: "\f0ec";
    position: absolute;
    font-family: FontAwesome !important;
    font-size: 18px;
    text-indent: 0;
}
.wl_product-accordion .action .woocommerce.product.compare-button a:before {
  top: 0;
}
.wl_horizontal-hover-accordion .action .woocommerce.product.compare-button a:before {
    text-indent: 0;
    left: 0;
    right: 0;
    color: #000;
    border: 1px solid #0A3ACA;
    width: 37px;
    height: 37px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
}
.woocommerce.woolentor-product-curvy .wl_single-product-item .product-content .action li a:not(.added){
    /* display: block !important; */
    display: flex !important;
    line-height: 40px !important;
    align-items: center;
    justify-content: center;
}
 /** Block: product-curvy Style End **/

 /** Block: universla-product Style Start **/
 [class*="woolentor-grid-"].woolentor-block-slider{
     margin: 0 -15px;
 }
.ht-product.woolentor-slider-item {
    padding: 0 15px;
}
/** Block: universla-product Style End **/