/* Counter Widget CSS */
.hfe-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Default alignments that will be overridden by controls */
.hfe-counter-wrapper[style*="flex-direction: column"] {
    align-items: center; /* horizontal alignment for column layouts */
    justify-content: center; /* vertical alignment for column layouts */
}

.hfe-counter-wrapper[style*="flex-direction: row"] {
    justify-content: center; /* horizontal alignment for row layouts */
    align-items: center; /* vertical alignment for row layouts */
}

.hfe-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hfe-counter-number {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

.hfe-counter-title {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.hfe-counter-prefix,
.hfe-counter-suffix {
    font-size: inherit;
    line-height: inherit;
}



/* Title styling - flex enabled for alignment controls */
.hfe-counter-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ensure counter content doesn't shrink */
.hfe-counter-content {
    flex-shrink: 0;
}

/* Equal width distribution for horizontal layouts */
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Alternative approach - apply to all potential horizontal layouts */
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-title,
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Ensure counter content maintains flex display in all layouts */
.hfe-counter-content {
    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* Responsive equal width distribution */
@media (max-width: 1024px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hfe-counter-number {
        font-size: 36px;
    }
    
    .hfe-counter-title {
        font-size: 16px;
    }
}

/* Navigation Menu CSS */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Alignment CSS ends */

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

/*  Horizontal Menu */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Common Animation CSS */

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

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

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

/* Double Line / Underline / Overline Style */

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

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

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

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

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

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

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

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

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

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

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

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


/* Framed Style */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Background Style */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Text Style */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Dropdown animation CSS */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Icon common CSS */

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

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

/* Menu Cart CSS */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*Search Box CSS*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Post Info CSS */

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

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

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

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

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

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

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

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

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

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


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


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

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

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

.hfe-post-title a {
    text-decoration: none;
}
.hfe-post-title {
    margin-top: 0px;
}
.hfe-read-more {
    text-decoration: none;
}
.hfe-post-meta {
    font-size: 12px;
    line-height: 1.3em;
}
.hfe-post-title {
    font-size: 20px;
}.wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal,.wp-block-jetpack-contact-form-is-layout-flex.is-horizontal,.wp-block-jetpack-contact-form.is-layout-flex.is-horizontal{flex-flow:row wrap}.wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal .wp-block-button,.wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal .wp-block-jetpack-button,.wp-block-jetpack-contact-form-is-layout-flex.is-horizontal .wp-block-button,.wp-block-jetpack-contact-form-is-layout-flex.is-horizontal .wp-block-jetpack-button,.wp-block-jetpack-contact-form.is-layout-flex.is-horizontal .wp-block-button,.wp-block-jetpack-contact-form.is-layout-flex.is-horizontal .wp-block-jetpack-button{flex:0 0 auto}.wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal .wp-block-button .wp-block-button__link,.wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal .wp-block-jetpack-button .wp-block-button__link,.wp-block-jetpack-contact-form-is-layout-flex.is-horizontal .wp-block-button .wp-block-button__link,.wp-block-jetpack-contact-form-is-layout-flex.is-horizontal .wp-block-jetpack-button .wp-block-button__link,.wp-block-jetpack-contact-form.is-layout-flex.is-horizontal .wp-block-button .wp-block-button__link,.wp-block-jetpack-contact-form.is-layout-flex.is-horizontal .wp-block-jetpack-button .wp-block-button__link{word-break:normal}.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-25,.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-25,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-25,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-25,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-25,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-25{width:25%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-33,.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-33,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-33,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-33,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-33,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-33{width:33.33%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-50,.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-50,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-50,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-50,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-50,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-50{width:50%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-75,.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-75,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-75,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-75,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-75,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-75{width:75%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-100,.wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-100,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-100,.wp-block-jetpack-contact-form-is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-100,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .jetpack-field__width-100,.wp-block-jetpack-contact-form.is-layout-flex.is-vertical:not(.is-content-justification-stretch) .wp-block-button__width-100{width:100%}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex{display:block}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex>:not(:first-child),.is-multistep .wp-block-jetpack-contact-form-is-layout-flex>:not(:first-child),.is-multistep .wp-block-jetpack-contact-form.is-layout-flex>:not(:first-child){margin-top:var(--wp--style--block-gap,1.5rem)}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex .wp-block-jetpack-form-step{display:flex;flex-wrap:wrap;width:100%}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex .jetpack-form-steps-wrapper,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex .jetpack-form-steps-wrapper,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex .jetpack-form-steps-wrapper{width:100%}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex .wp-block-jetpack-form-progress-indicator,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex .wp-block-jetpack-form-progress-indicator,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex .wp-block-jetpack-form-progress-indicator{align-self:normal}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-content-justification-left .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-content-justification-left .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-content-justification-left .wp-block-jetpack-form-step{align-items:flex-start}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-content-justification-right .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-content-justification-right .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-content-justification-right .wp-block-jetpack-form-step{align-items:flex-end}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-content-justification-center .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-content-justification-center .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-content-justification-center .wp-block-jetpack-form-step{align-items:center}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-horizontal .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-horizontal .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-horizontal .wp-block-jetpack-form-step{align-items:flex-end}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-vertical .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-vertical .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-vertical .wp-block-jetpack-form-step{flex-direction:column}.is-multistep .wp-block-jetpack-contact-form-container.is-layout-flex.is-nowrap .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form-is-layout-flex.is-nowrap .wp-block-jetpack-form-step,.is-multistep .wp-block-jetpack-contact-form.is-layout-flex.is-nowrap .wp-block-jetpack-form-step{flex-wrap:nowrap}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap{box-sizing:border-box;flex:1 1 100%;position:relative;width:100%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-25-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-25-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-25-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-25-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-25-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-25-wrap{flex:1 1 calc(25% - var(--wp--style--block-gap, 1.5rem)*1)}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-33-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-33-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-33-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-33-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-33-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-33-wrap{flex:1 1 calc(33.33% - var(--wp--style--block-gap, 1.5rem)*1)}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-50-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-50-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-50-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-50-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-50-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-50-wrap{flex:1 1 calc(50% - var(--wp--style--block-gap, 1.5rem)*1)}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-75-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-75-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-75-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-75-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-75-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-75-wrap{flex:1 1 calc(75% - var(--wp--style--block-gap, 1.5rem)*1)}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-100-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-100-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-100-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-100-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-100-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-100-wrap{flex:1 1 100%}.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-auto-wrap,.wp-block-jetpack-contact-form-container.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-auto-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-auto-wrap,.wp-block-jetpack-contact-form-is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-auto-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-animated .contact-form__inset-label-wrap.grunion-field-width-auto-wrap,.wp-block-jetpack-contact-form.is-layout-flex.is-style-outlined .contact-form__inset-label-wrap.grunion-field-width-auto-wrap{flex:1 1 auto;width:auto}.jnews-faq-wrapper{display:flex;flex-direction:column;gap:16px}.jnews-faq-wrapper.style-1 .list-wrapper,.jnews-faq-wrapper.style-2 .list-wrapper.expand{background:#f7f7f7}.jnews-faq-wrapper.style-3{gap:0}.jnews-faq-wrapper.style-3 .list-wrapper{border-bottom:1px solid #eee}.jnews-faq-wrapper.style-3 .list-wrapper a.list-toogle{padding:24px 0}.jnews-faq-wrapper.style-4 .list-wrapper{border:1px solid #eee}.jnews-faq-wrapper.style-5 .list-wrapper a.list-toogle{background:#f7f7f7}.jnews-faq-wrapper.style-5 .list-wrapper.expand a.list-toogle{padding-bottom:24px}.jnews-faq-wrapper .list-wrapper{transition:background-color .4s ease;width:100%}.jnews-faq-wrapper .list-wrapper a.list-toogle{align-items:center;display:flex;justify-content:space-between;padding:24px}.jnews-faq-wrapper .list-wrapper a.list-toogle h5.question{font-size:16px;font-weight:700;margin:0}.jnews-faq-wrapper .list-wrapper .card-expand{margin-top:16px;padding:0 24px;transition:background-color .3s ease}.jnews-faq-wrapper .list-wrapper svg.faq-icon{transition:.5s}.jnews-faq-wrapper .list-wrapper.expand svg.faq-icon{transform:rotateX(180deg);transform-origin:center;transition:.5s}.jnews-faq-wrapper .list-wrapper.expand a.list-toogle{padding-bottom:0}.jnews-faq-wrapper .list-wrapper.expand .card-expand{padding-bottom:24px}.jnews-dark-mode .jnews-faq-wrapper.style-1 .list-wrapper{background:var(--j-darkgrey-bg-color)}.jnews-dark-mode .jnews-faq-wrapper.style-2 .list-wrapper.expand{background:var(--j-darkgrey-bg-color)!important}.jnews-dark-mode .jnews-faq-wrapper.style-3 .list-wrapper{border-bottom:1px solid var(--j-border-color)}.jnews-dark-mode .jnews-faq-wrapper.style-3 .list-wrapper a.list-toogle{padding:24px 0}.jnews-dark-mode .jnews-faq-wrapper.style-4 .list-wrapper{border:1px solid var(--j-border-color)!important}.jnews-dark-mode .jnews-faq-wrapper.style-5 .list-wrapper a.list-toogle{background:var(--j-darkgrey-bg-color)}.jnews-dark-mode .jnews-faq-wrapper.style-5 .list-wrapper.expand a.list-toogle{padding-bottom:24px}.jnews-dark-mode .jnews-faq-wrapper svg path{fill:var(--j-link-txt-color)!important}.jnews-faqs-block{margin-bottom:30px}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(//letambour.net/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(//letambour.net/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(//letambour.net/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}.jeg_media_option{margin-top:10px}.jeg_media_option ul{font-size:12px;padding:6px 0;list-style-type:none}.jeg_media_option li{margin-bottom:0}.jeg_media_option li a,.jeg_option_container .jeg_sharelist_podcast a{color:#53585c;font-weight:400;padding:6px 20px;display:block;line-height:22px}.jnews-dark-mode .jeg_option_container .jeg_sharelist_podcast a{color:#000!important}.jnews-dark-mode .jeg_sharelist_podcast a svg{fill:var(--j-link-txt-color)!important}.jnews-dark-mode .jeg_option_container .jeg_sharelist_podcast a svg{fill:#000!important}.jeg_media_option .jeg_sharelist_podcast a:hover,.jeg_media_option li:hover>:not(.active),.jeg_media_option li>.active,.jeg_option_container .jeg_sharelist_podcast a:hover{background:#f7f7f7;color:#212121}.jeg_media_option li:last-child{margin:0}.jeg_media_option .jeg_meta_share{position:unset}.jeg_media_option .jeg_meta_share .jeg_sharelist_podcast,.jeg_media_option .jeg_moreoption,.jeg_option_container .jeg_meta_share .jeg_sharelist_podcast{padding:6px 0;margin:0;list-style:none;position:absolute;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.18);min-width:150px;display:none;z-index:1041;top:100%}.jeg_media_option .jeg_moreoption li .add_to_queue span:not(:last-of-type),.jeg_media_option .jeg_moreoption li a>.fa,.jeg_option_container .follow-wrapper a>.fa,.jeg_option_container .jeg_sharelist_podcast a>.fa{margin-right:6px;font-size:12px;width:12px;height:12px;line-height:12px}.jeg_media_option .jeg_media_button.more.active~.jeg_moreoption,.jeg_media_option .jeg_meta_share.active .jeg_sharelist_podcast,.jeg_option_container .jeg_meta_share.active .jeg_sharelist_podcast{display:block}.jeg_media_option .jeg_media_button{text-align:center;display:inline-block;font-size:12px;height:26px;line-height:24px;border:1px solid;border-radius:26px}.jeg_media_option .jeg_media_button.play,.jeg_media_option .jeg_media_button.subscribe{padding:0 15px}.jeg_media_option .jeg_media_button.add_to_queue,.jeg_media_option .jeg_media_button.more{margin-left:5px;width:26px;border-color:#e0e0e0}.jeg_media_option .jeg_media_button.add_to_queue:not(.success){color:#a0a0a0}.add_to_queue .loader,.add_to_queue .success,.add_to_queue.loading .initial,.add_to_queue.success .initial,.add_to_queue.success .loader,.jeg_media_button.play .loader,.jeg_media_button.play.loading .initial{display:none}.add_to_queue .initial,.add_to_queue.loading .loader,.add_to_queue.success .success,.jeg_media_button.play .initial,.jeg_media_button.play.loading .loader{display:inline-block}.jeg_media_option .jeg_media_button.play span:not(:last-of-type){width:auto;padding-right:5px}.jeg_media_option.single_episode .jeg_episode_length:before{content:'\2022';margin:0 5px}.single-post .jeg_singlepage .jeg_media_option{margin-bottom:30px}.single-post .jeg_singlepage .jeg_media_button{font-size:14px;height:34px;line-height:32px}.single-post .jeg_singlepage .jeg_media_button.play{padding:0 20px}.single-post .jeg_singlepage .jeg_media_button.add_to_queue{width:34px;margin-left:10px}@media only screen and (max-width:480px){.single-post .jeg_singlepage .jeg_media_option{margin-bottom:20px}}.jeg_media_button.more.episode{position:absolute;right:0;top:0;border:unset}.jeg_media_option.episode .play,.jeg_postblock_podcast_4 .jeg_media_option .play{padding:0;width:26px}.jeg_media_option.episode .jeg_media_button.play span,.jeg_postblock_podcast_4 .jeg_media_option .jeg_media_button.play span{padding:0}.jeg_media_option.episode .jeg_media_button.play span.initial,.jeg_postblock_podcast_4 .jeg_media_option .jeg_media_button.play span.initial{padding:0 0 0 3px}.jeg_media_option.overlay{z-index:2;position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.3);overflow:hidden;width:100%;height:100%;transition:.5s ease}.jeg_media_option.overlay .jeg_media_button{color:#fff;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}.jeg_postblock_podcast_1 .jeg_post{width:100%;margin-bottom:30px}@media only screen and (min-width:567px){.jeg_postblock_podcast_1 .jeg_posts{flex-wrap:wrap;display:flex;align-items:flex-start;margin-right:-30px}.jeg_postblock_podcast_1 .jeg_post{width:50%;padding-right:30px}}@media only screen and (min-width:768px){.jeg_postblock_podcast_1 .jeg_post{width:25%}.jeg_postblock_podcast_1.jeg_col_1o3 .jeg_post{width:100%}.jeg_postblock_podcast_1.jeg_col_2o3 .jeg_post{width:50%}}.jeg_postblock_podcast_2 .jeg_block_container{overflow:visible}.jeg_postblock_podcast_2 .jeg_post{margin-bottom:20px;overflow:hidden}.jeg_postblock_podcast_2 .jeg_post_excerpt{margin:5px 0}.jeg_postblock_podcast_2 .jeg_post_title{font-size:15px;font-weight:400;line-height:1.4em;margin:0 0 5px}.jeg_postblock_podcast_2 .box_wrap{display:flex;align-items:flex-start}.jeg_postblock_podcast_2 .jeg_postblock_content{flex:1 1 auto}.jeg_postblock_podcast_2 .jeg_thumb{width:40%;flex:0 0 40%;margin-right:15px}@media only screen and (min-width:567px) and (max-width:767px){.jeg_postblock_podcast_2 .jeg_post_excerpt{margin:1em 0}.jeg_postblock_podcast_2 .jeg_post_title{font-size:16px;font-weight:700}}@media only screen and (min-width:768px){.jeg_postblock_podcast_2:not(.jeg_col_1o3) .jeg_posts{flex-wrap:wrap;display:flex;margin-right:-30px}.jeg_postblock_podcast_2:not(.jeg_col_1o3) .jeg_post{width:50%;padding-right:30px;margin-bottom:30px}.jeg_postblock_podcast_2.jeg_col_2o3 .jeg_thumb,.jeg_postblock_podcast_2.jeg_col_3o3 .jeg_thumb{width:50%;flex-basis:50%}.jeg_postblock_podcast_2.jeg_col_3o3 .jeg_thumb{padding-right:15px;margin-right:15px}.jeg_postblock_podcast_2 .jeg_post_title{font-size:16px;font-weight:700}.jeg_postblock_podcast_2.jeg_col_1o3 .jeg_post_title{font-size:14px}}@media only screen and (min-width:1024px){.jeg_postblock_podcast_2 .box_wrap{align-items:center}.jeg_postblock_podcast_2 .jeg_thumb{width:50%;flex-basis:50%}.jeg_postblock_podcast_2 .jeg_post_title{font-size:16px}.jeg_postblock_podcast_2.jeg_col_3o3 .jeg_post_title{font-size:24px}.jeg_postblock_podcast_2.jeg_col_3o3 .jeg_media_option{margin-top:15px}}@media only screen and (min-width:767px) and (max-width:991px){.jeg_postblock_podcast_2:not(.jeg_col_3o3) .jeg_media_button.play{padding:0}.jeg_postblock_podcast_2:not(.jeg_col_3o3) .jeg_media_button.play{width:26px;height:26px;line-height:24px}.jeg_postblock_podcast_2:not(.jeg_col_3o3) .jeg_media_button.play .fa{letter-spacing:-6px}.jeg_postblock_podcast_2:not(.jeg_col_3o3) .jeg_media_button .wide-button-text{display:none}}.jeg_postblock_podcast_1 .thumbnail-container:before,.jeg_postblock_podcast_category .thumbnail-container:before{content:'';opacity:.5;background:#000;background-position:center;background-size:cover;position:absolute;height:100%;top:0;left:0;right:0;bottom:0}.jeg_postblock_podcast_1 .jeg_pl_md_box .jeg_post_title,.jeg_postblock_podcast_category .jeg_pl_md_box .jeg_post_title{margin-bottom:2px}.jeg_postblock_podcast_1 .jeg_post .jeg_postblock_content,.jeg_postblock_podcast_category .jeg_post .jeg_postblock_content{background:unset}.jeg_postblock_podcast_category .jeg_post{width:100%;margin-bottom:20px}@media only screen and (min-width:567px){.jeg_postblock_podcast_category .jeg_posts{flex-wrap:wrap;display:flex;align-items:flex-start;margin-right:-20px}.jeg_postblock_podcast_category .jeg_post{width:50%;padding-right:20px}}@media only screen and (min-width:768px){.jeg_postblock_podcast_category .jeg_post{width:50%}.jeg_postblock_podcast_category.jeg_col_1o3 .jeg_post{width:100%}}@media only screen and (min-width:1024px){.jeg_postblock_podcast_category .jeg_post{width:25%}.jeg_postblock_podcast_category.jeg_col_1o3 .jeg_post{width:50%}.jeg_postblock_podcast_category.jeg_col_3o3 .jeg_post{width:20%}}.jeg_postblock_podcast_3 .jeg_block_container{overflow:visible}.jeg_postblock_podcast_3 .jeg_post{margin-bottom:20px;overflow:hidden}.jeg_postblock_podcast_3 .box_wrap{display:flex;align-items:flex-start}.jeg_postblock_podcast_3 .jeg_postblock_content{flex:1 1 auto}.jeg_postblock_podcast_3 .jeg_post_excerpt{margin:5px 0}.jeg_postblock_podcast_3 .jeg_post_title{font-size:15px;font-weight:400;line-height:1.4em;margin:0 0 5px}.jeg_postblock_podcast_3 .jeg_thumb{width:100px;flex:0 0 100px;margin-right:10px}@media only screen and (min-width:567px) and (max-width:767px){.jeg_postblock_podcast_3 .box_wrap{align-items:center}.jeg_postblock_podcast_3 .jeg_thumb{width:200px;flex-basis:200px;margin-right:30px;padding-right:0}.jeg_postblock_podcast_3 .jeg_post_excerpt{margin:1em 0}.jeg_postblock_podcast_3 .jeg_post_title{font-size:16px;font-weight:700}}@media only screen and (min-width:768px){.jeg_postblock_podcast_3:not(.jeg_col_1o3) .box_wrap{display:flex;align-items:center}.jeg_postblock_podcast_3:not(.jeg_col_1o3) .jeg_thumb{width:200px;flex-basis:200px;margin-right:30px;padding-right:0}.jeg_postblock_podcast_3 .jeg_post_title{font-size:14px;font-weight:700}.jeg_postblock_podcast_3:not(.jeg_col_1o3) .jeg_post_title{font-size:16px}.jeg_postblock_podcast_3:not(.jeg_col_1o3) .jeg_post_excerpt{margin:1em 0}}@media only screen and (min-width:1024px){.jeg_postblock_podcast_3 .jeg_thumb{width:120px;flex-basis:120px}.jeg_postblock_podcast_3:not(.jeg_col_1o3) .jeg_thumb{width:260px;flex-basis:260px}.jeg_postblock_podcast_3 .jeg_post_title{font-size:16px}.jeg_postblock_podcast_3:not(.jeg_col_1o3) .jeg_post_title{font-size:24px}}@media only screen and (min-width:767px) and (max-width:991px){.jeg_postblock_podcast_3.jeg_col_1o3 .jeg_media_button.play{padding:0}.jeg_postblock_podcast_3.jeg_col_1o3 .jeg_media_button.play .fa{padding-right:0;width:30px;height:30px;line-height:30px;text-align:center}.jeg_postblock_podcast_3.jeg_col_1o3 .jeg_media_button span{display:none}}.jeg_postblock_podcast_4 .jeg_block_container{overflow:visible}.jeg_postblock_podcast_4 .jeg_postblock_content{position:relative}.jeg_postblock_podcast_4 .jeg_postblock_content .jeg_post_meta,.jeg_postblock_podcast_4 .jeg_postblock_content .jeg_post_title{margin-right:74px}.jeg_postblock_podcast_4 .jeg_media_option{position:absolute;top:0;right:0;margin-top:2px}.jeg_postblock_podcast_4 .jeg_media_option .play span:last-of-type{display:none}@media only screen and (min-width:567px){.jeg_postblock_podcast_4 .jeg_posts{flex-wrap:wrap;display:flex;align-items:flex-start;margin-right:-30px}.jeg_postblock_podcast_4 .jeg_post{width:50%;padding-right:30px;margin-bottom:30px}}@media only screen and (min-width:768px){.jeg_postblock_podcast_4 .jeg_post{width:33.333333333%}.jeg_postblock_podcast_4.jeg_col_1o3 .jeg_post{width:100%}.jeg_postblock_podcast_4.jeg_col_2o3 .jeg_post{width:50%}}@media only screen and (min-width:1024px){.jeg_postblock_podcast_4 .jeg_post .jeg_post_title{font-size:18px;margin-bottom:0}}.jeg_postblock_episode_1 .jeg_block_container{overflow:visible}.jeg_postblock_episode_1 .jeg_post{margin-bottom:20px;overflow:hidden}.jeg_postblock_episode_1 .jeg_post_excerpt{margin:5px 0}.jeg_postblock_episode_1 .jeg_post_title{font-size:15px;font-weight:400;line-height:1.4em;margin:0 0 5px}.jeg_postblock_episode_1 .box_wrap{display:flex;align-items:flex-start}.jeg_postblock_episode_1 .jeg_postblock_content{flex:1 1 auto}.jeg_postblock_episode_1 .jeg_thumb{width:40%;flex:0 0 40%;margin-right:15px}@media only screen and (min-width:567px) and (max-width:767px){.jeg_postblock_episode_1 .jeg_post_excerpt{margin:1em 0}.jeg_postblock_episode_1 .jeg_post_title{font-size:16px;font-weight:700}}@media only screen and (min-width:768px){.jeg_postblock_episode_1:not(.jeg_col_1o3) .jeg_posts{flex-wrap:wrap;display:flex;margin-right:-30px}.jeg_postblock_episode_1:not(.jeg_col_1o3) .jeg_post{width:50%;padding-right:30px;margin-bottom:30px}.jeg_postblock_episode_1.jeg_col_2o3 .jeg_thumb,.jeg_postblock_episode_1.jeg_col_3o3 .jeg_thumb{width:50%;flex-basis:50%}.jeg_postblock_episode_1.jeg_col_3o3 .jeg_thumb{margin-right:25px}.jeg_postblock_episode_1 .jeg_post_title{font-size:16px;font-weight:700}.jeg_postblock_episode_1.jeg_col_1o3 .jeg_post_title{font-size:14px}}@media only screen and (min-width:1024px){.jeg_postblock_episode_1 .box_wrap{align-items:center}.jeg_postblock_episode_1 .jeg_thumb{width:50%;flex-basis:50%}.jeg_postblock_episode_1 .jeg_post_title{font-size:16px}.jeg_postblock_episode_1.jeg_col_3o3 .jeg_post_title{font-size:24px}.jeg_postblock_episode_1.jeg_col_3o3 .jeg_media_option{margin-top:15px}}@media only screen and (min-width:767px) and (max-width:991px){.jeg_postblock_episode_1:not(.jeg_col_3o3) .jeg_media_button.play{padding:0}.jeg_postblock_episode_1:not(.jeg_col_3o3) .jeg_media_button.play{width:26px;height:26px;line-height:24px}.jeg_postblock_episode_1:not(.jeg_col_3o3) .jeg_media_button.play .fa{letter-spacing:-6px}.jeg_postblock_episode_1:not(.jeg_col_3o3) .jeg_media_button span{display:none}}.jeg_postblock_episode_2 .jeg_block_container{overflow:visible}.jeg_postblock_episode_2 .jeg_post{margin-bottom:20px;overflow:hidden}.jeg_postblock_episode_2 .box_wrap{display:flex;align-items:flex-start}.jeg_postblock_episode_2 .jeg_postblock_content{flex:1 1 auto}.jeg_postblock_episode_2 .jeg_post_excerpt{margin:5px 0}.jeg_postblock_episode_2 .jeg_post_title{font-size:15px;font-weight:400;line-height:1.4em;margin:0 0 5px}.jeg_postblock_episode_2 .jeg_thumb{width:100px;flex:0 0 100px;margin-right:10px}@media only screen and (min-width:567px) and (max-width:767px){.jeg_postblock_episode_2 .box_wrap{align-items:center}.jeg_postblock_episode_2 .jeg_thumb{width:200px;flex-basis:200px;margin-right:30px;padding-right:0}.jeg_postblock_episode_2 .jeg_post_excerpt{margin:1em 0}.jeg_postblock_episode_2 .jeg_post_title{font-size:16px;font-weight:700}}@media only screen and (min-width:768px){.jeg_postblock_episode_2:not(.jeg_col_1o3) .box_wrap{display:flex;align-items:center}.jeg_postblock_episode_2:not(.jeg_col_1o3) .jeg_thumb{width:200px;flex-basis:200px;margin-right:30px;padding-right:0}.jeg_postblock_episode_2 .jeg_post_title{font-size:14px;font-weight:700}.jeg_postblock_episode_2:not(.jeg_col_1o3) .jeg_post_title{font-size:16px}.jeg_postblock_episode_2:not(.jeg_col_1o3) .jeg_post_excerpt{margin:1em 0}}@media only screen and (min-width:1024px){.jeg_postblock_episode_2 .jeg_thumb{width:120px;flex-basis:120px}.jeg_postblock_episode_2:not(.jeg_col_1o3) .jeg_thumb{width:260px;flex-basis:260px}.jeg_postblock_episode_2 .jeg_post_title{font-size:16px}.jeg_postblock_episode_2:not(.jeg_col_1o3) .jeg_post_title{font-size:24px}}@media only screen and (min-width:767px) and (max-width:991px){.jeg_postblock_episode_2.jeg_col_1o3 .jeg_media_button.play{padding:0}.jeg_postblock_episode_2.jeg_col_1o3 .jeg_media_button.play .fa{padding-right:0;width:30px;height:30px;line-height:30px;text-align:center}.jeg_postblock_episode_2.jeg_col_1o3 .jeg_media_button span{display:none}}.jeg_postblock_episode_list .jeg_block_container,.jeg_postblock_episode_list .jeg_posts>.jeg_post{overflow:visible}.jeg_postblock_episode_list .jeg_posts>.jeg_post{border-bottom:1px solid #eee;margin-bottom:15px}.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_block_heading{display:flex;flex-direction:row;align-items:center;width:100%;margin-bottom:12px}.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_thumb{flex:0 0 120px;margin-right:15px}.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_postblock_content{flex:1 1 auto}.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_postblock_content .jeg_post_title{font-size:15px;font-weight:400;line-height:1.4em;margin:0 0 5px}.jeg_postblock_episode_list .jeg_post_excerpt{clear:both;margin-bottom:15px}.jeg_postblock_episode_list .jeg_pl_xs_4 .jeg_postblock_content{padding:0}.jeg_postblock_episode_list .jeg_postsmall .jeg_media_option{float:left;margin-top:4px}.jeg_postblock_episode_list .jeg_media_option .play{margin-right:10px}.jeg_postblock_episode_list .jeg_pl_xs_4 .jeg_post_meta{display:block}.jeg_postblock_episode_list .jeg_pl_xs_4 .jeg_post_title{display:block}.jnews_global_player .jeg_postblock_episode_list .jeg_postsmall .jeg_post_meta{padding-left:37px}.jnews_global_player .jeg_postblock_episode_list .jeg_postsmall .jeg_post_title{margin:auto;padding:0 37px}.jeg_postblock_episode_list .jeg_pl_xs_4 .jeg_postblock_content:before{content:unset}@media only screen and (min-width:480px){.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_postblock_content .jeg_post_title{font-size:16px}}@media only screen and (min-width:768px) and (max-width:991px){.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_block_heading{align-items:flex-start}}@media only screen and (min-width:1024px){.jeg_postblock_episode_list .jeg_posts>.jeg_post .jeg_postblock_content .jeg_post_title{font-size:20px;line-height:1.2}}.jeg_postblock_episode_detail{list-style-type:none;margin-bottom:20px}.jeg_postblock_episode_detail .jeg_block_container{overflow:visible}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content{margin-bottom:20px}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content{padding:0 0 20px;border-bottom:1px solid #eee}.jeg_postblock_episode_detail .jeg_postblock_content:before{display:none}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content{position:relative;display:-webkit-box;display:flex;flex-wrap:nowrap}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content>*{-webkit-box-flex:0;flex:0 0 auto;margin:0}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content .jeg_post_info{-webkit-box-flex:0;flex:0 1 auto;width:100%;padding-left:20px}.jeg_postblock_episode_detail .jeg_post .jeg_thumb{padding:0;width:90px;height:90px}.jeg_postblock_episode_detail .jeg_post .jeg_thumb .thumbnail-container{height:100%}.jeg_postblock_episode_detail .jeg_post .jeg_thumb .no_thumbnail{display:block!important;background-color:rgba(0,0,0,.5)}.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content .jeg_post_video{min-width:60px}.jeg_postblock_episode_detail .jeg_post .jeg_post_title{font-size:16px;font-weight:500;margin:0;display:block}.jeg_postblock_episode_detail .jeg_post .jeg_post_excerpt{margin-top:8px}.single-series .jeg_content{padding-top:60px}.jeg_single_podcast_2 .jeg_sidebar{padding:0 15px}@media screen and (min-width:768px){.jeg_single_podcast_2 .jeg_inner_content{align-items:center;display:flex;flex-direction:row;justify-content:space-between;align-items:start}.jeg_single_podcast_2 .jeg_inner_content .jeg_featured{flex:1 0 30%;padding-right:10px}.jeg_single_podcast_2 .jeg_inner_content .entry-header{flex:1 0 70%;padding-left:10px}}@media (min-width:992px){.single-series .jeg_sidebar_right .jeg_main_content{float:left}.single-series .jeg_sidebar_right .jeg_sidebar{float:right}}.single-series .jeg_series_contents .post-title{font-size:16px;font-weight:700;border-bottom:2px solid #eee;margin:0 0 20px;padding-bottom:10px}.single-series .jeg_featured{margin-bottom:0;position:relative;overflow:hidden}.single-series .jeg_featured:hover .jnews-edit-post{color:#fff!important;visibility:visible;opacity:1;top:0}.single-series .jeg_featured .thumbnail-container{margin-bottom:20px}.single-series .entry-header .jeg_post_title,.single-series .entry-header>p{margin-bottom:12px}.single-series .entry-header>.jeg_post_title{font-size:24px;font-weight:500;line-height:32px}.single-series .jeg_post_option{position:relative;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.single-series .jeg_post_option .jeg_meta_option{margin:auto;margin-right:0}.single-series .jeg_post_option .jeg_meta_option>a,.single-series .jeg_post_option .jeg_meta_share>a{color:#a0a0a0}.single-series .jeg_post_option>div:not(:last-of-type){margin-right:24px}.single-series .follow-wrapper a{display:block;color:inherit;border:1px solid #e8e8e8;text-transform:uppercase;border-radius:2px;padding:2px 8px;font-size:11px;font-weight:500;letter-spacing:.04em;-webkit-transition:.2s;transition:.2s}.single-series .jeg_meta_container{margin-bottom:20px}.single-series .entry-header .jeg_post_meta{font-size:12px}.single-series .entry-header .jeg_post_meta a{font-weight:400;color:inherit}.single-series .entry-header .jeg_post_meta [class*=jeg_meta]:not(:last-child):after{content:'\2022';margin-left:8px}.jeg_podcast.jeg_postblock_episode_detail{list-style-type:none;counter-reset:jeg-episode-detail;margin-bottom:20px}.jeg_podcast.jeg_postblock_episode_detail .jeg_postblock_content{padding:20px 0 20px 50px;border-bottom:1px solid #eee;counter-increment:jeg-episode-detail}.jeg_podcast.jeg_postblock_episode_detail .jeg_postblock_content:before{content:counter(jeg-episode-detail);width:40px;text-align:center;position:absolute;left:0;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content{position:relative;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:nowrap}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content>*{-webkit-box-flex:0;flex:0 0 auto;padding:10px}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content .jeg_post_info{-webkit-box-flex:0;flex:0 1 auto;width:100%;padding-left:20px}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_thumb{padding:0;width:90px;height:90px}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_thumb .thumbnail-container{height:100%}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_thumb .no_thumbnail{display:block!important;background-color:rgba(0,0,0,.5)}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_postblock_content .jeg_post_video{min-width:60px}.jeg_podcast.jeg_postblock_episode_detail .jeg_post .jeg_post_title{font-size:16px;font-weight:500;margin:0 0 5px;display:block}.jeg_viewport.jnews_has_player{padding-bottom:80px}.jeg_player_wrapper .jeg_playlist{display:none}.jnews_podcast.jnews_dock_player{width:100%;z-index:999;position:fixed;bottom:0;display:none}.jnews_podcast.jnews_dock_player.show{display:block}.jeg_player_inner{background-color:#fff;display:flex;flex-direction:column;height:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:0 5px 15px rgba(0,0,0,.18)}.jeg_player_controls_wrap{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding:0;height:80px}.jeg_inner_content .jeg_player{margin-bottom:30px}.jeg_inner_content .jeg_player_controls_wrap{padding:20px 25px;height:auto}@media only screen and (max-width:480px){.jeg_inner_content .jeg_player_controls_wrap{padding:15px 20px}.jeg_inner_content .jeg_player{margin-bottom:20px}}.jeg_main_content .jeg_player_inner{border-radius:5px;box-shadow:none;border:1px solid rgba(0,0,0,.1)}.jeg_control_bar_left{flex:0 1 15%;max-width:15%}.jeg_main_content .jeg_control_bar_left{flex:0 0 auto;max-width:unset}.jeg_control_bar_center{flex:0 1 70%;max-width:70%}.jeg_main_content .jeg_control_bar_center{flex:0 1 100%;max-width:unset}.jeg_control_bar_right,.jeg_control_bar_toggle_player{flex:0 1 15%;max-width:15%;display:flex;flex-direction:row;justify-content:flex-end}.jeg_control_bar_toggle_player{justify-content:center}.jeg_main_content .jeg_control_bar_toggle_player{display:none}.jeg_player_control{display:flex;flex-flow:row nowrap;justify-content:center}.jeg_player_inner .jeg_player_control a .fa{width:32px;height:32px}.jeg_control_bar_toggle_player .jeg_player_control__toggle_player,.jeg_control_bar_toggle_player .jeg_player_control__toggle_player .fa,.jeg_player_control [class*=jeg_player_control__] .fa{line-height:30px;text-align:center}.jeg_player_control .jeg_player_control__pause .fa,.jeg_player_control .jeg_player_control__play .fa{border:1px solid;border-color:inherit;border-radius:32px}.jeg_player_control .jeg_player_control__play .fa{letter-spacing:-2px}.jeg_control_bar_toggle_player .jeg_player_control__toggle_player{font-size:25px}.jeg_player_current_item{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;position:relative;transform:translateX(0);transition:transform .25s cubic-bezier(.3,0,0,1)}.jeg_player_current_item__cover{width:56px;height:56px;position:relative;flex-shrink:0;overflow:hidden;display:none}.jeg_player_current_item__cover img{width:56px;height:56px;object-fit:cover}.jeg_player_current_item__content{display:flex;flex-direction:column;justify-content:center;margin:0 20px;width:100%}.jeg_main_content .jeg_player_current_item__content{margin-right:10px}.jeg_player_current_item__content,.jeg_player_current_item__title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-align:left}.jeg_player_current_item__title span{color:#212121;font-size:14px;font-weight:500}.jeg_main_content .jeg_player_current_item__cover,.jeg_main_content .jeg_player_current_item__title{display:none}.jeg_player_bar{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.jeg_main_content .jeg_player_controls_wrap .jeg_player_bar{display:flex}.jeg_player_bar.volume{max-width:136px}.jeg_progress_bar,.jeg_volume_bar_wrapper{height:12px;position:relative;width:100%}.jeg_progress_bar{margin:0 12px}.jeg_player_bar__current_time,.jeg_player_bar__duration{font-size:11px;font-weight:400;line-height:16px;letter-spacing:normal;text-transform:none;text-align:center;display:flex;justify-content:center}.jeg_progress_bar__seek,.jeg_volume_bar{background-color:#c7c8cd;border-radius:2px;display:flex;height:4px;width:100%;position:absolute;top:50%;transform:translateY(-50%)}.jeg_progress_bar__play,.jeg_volume_bar__value{background-color:#2460f2;background-color:var(--j-accent-color);position:relative;border-radius:2px}.jeg_progress_bar__ball{position:absolute;width:1px;height:1px;opacity:1;top:50%;left:auto;right:0;z-index:3;content:' ';display:block;transition:left 20ms ease;cursor:pointer;outline:0}.jeg_progress_bar__ball:before{display:block;content:' ';margin-top:-6px;margin-left:-6px;transition:width .3s ease,height .3s ease,margin .3s ease;background-color:#fff;border:0;border-radius:50%;width:12px;height:12px;z-index:100;box-shadow:0 2px 4px 0 rgba(0,0,0,.5);opacity:0}.jeg_progress_bar__ball:focus:before,[class*=jeg_progress_bar__]:hover .jeg_progress_bar__ball:before,[class*=jeg_volume_bar]:hover .jeg_progress_bar__ball:before{opacity:1}.jeg_player_control__playlist{background-color:#fff;z-index:-1;position:absolute;bottom:80px;right:0;width:400px;height:auto;box-shadow:0 5px 15px rgba(0,0,0,.18);visibility:hidden;opacity:0;transition:visibility 0s linear .3s,opacity .3s;padding:20px 30px}.jeg_player_control__playlist.show{visibility:visible;opacity:1;transition:visibility 0s linear 0s,opacity .3s}.jeg_player_control__playlist .jeg_player_control__close_player{top:0;right:0;left:auto;width:40px;height:40px;line-height:40px;display:inline-block}.jeg_player_control .jeg_player_control__playlist .jeg_player_control__close_player .fa{font-size:24px;width:40px;height:40px;line-height:40px}.jeg_player_control .jeg_player_control__playlist .jeg_player_control__playlist_inner{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-height:50vh;width:100%;height:auto;overflow-y:scroll;padding:0;margin:0}.jeg_player_control__playlist .jeg_block_heading{border-bottom:2px solid #eee}.jeg_player_control__playlist .jeg_block_heading span{padding:0}.jeg_player_control__playlist_inner .jeg_playlist_item,.jeg_player_control__playlist_inner>li>div{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;position:relative;transform:translateX(0);transition:transform .25s cubic-bezier(.3,0,0,1);width:100%}.jeg_player_control__playlist_inner>li>div{flex-direction:row-reverse;text-overflow:ellipsis;overflow:hidden;text-align:center;margin-bottom:14px}.jeg_player_control__playlist_inner>li:last-child div{margin-bottom:0}.jeg_player_control__playlist_inner .item-cover{width:60px;height:60px;overflow:hidden;position:relative;flex-shrink:0}.jeg_player_control__playlist_inner .item-cover,.jeg_player_control__playlist_inner .jeg_playlist_item_remove{align-self:start}.jeg_player_control__playlist_inner .item-title_wrapper{display:flex;flex-direction:column;justify-content:flex-start;text-align:left;margin:0 14px;width:auto}.jeg_playlist_item_remove{display:block!important;width:50px;height:50px;line-height:50px}.jeg_playlist_item_remove{font-size:16px}.jeg_playlist_item .fa.fa-lock{display:none}li.jeg_playlist_current .jeg_playlist_item_remove .fa:before{content:'\f028'}.jeg_player_control__playlist_inner::-webkit-scrollbar{display:none}.jeg_player_control__playlist_inner{-ms-overflow-style:none;scrollbar-width:none}.jeg_control_bar_center .jeg_player_current_item__title span i.fa.fa-lock{margin-right:10px}.jnews_dock_player .jeg_player_control a{color:var(--j-body-color)}.jnews_dock_player .jeg_player_control a:hover{color:var(--j-accent-color)}.jeg_player_inner .jeg_control_bar_left .jeg_player_control .fa{width:36px;height:36px;line-height:34px}.jeg_player_inner .jeg_control_bar_left .jeg_player_control__pause .fa,.jeg_player_inner .jeg_control_bar_left .jeg_player_control__play .fa{font-size:16px;margin:0 10px}.jeg_control_bar_left .jeg_player_control__play .fa{border-color:#e0e0e0}.jeg_mobile_player_wrapper{background:#fff;display:flex;flex-flow:column;position:fixed;height:100%;width:100%;padding:0;top:0;left:0;z-index:999999;-webkit-transform:translateY(100%);transform:translateY(100%);transition:opacity .2s .25s,max-height .2s,-webkit-transform .3s;transition:transform .3s,opacity .2s .25s,max-height .2s;transition:transform .3s,opacity .2s .25s,max-height .2s,-webkit-transform .3s;transition-timing-function:cubic-bezier(.1,0,.3,1)}.jeg_player_control__close_player{position:absolute;top:0;right:0;float:none;border:none;height:72px;line-height:72px;text-align:center;display:inline-block;vertical-align:middle;width:auto;flex-grow:1;min-width:42px;color:inherit;cursor:pointer}.jeg_player_control__close_player .fa-angle-down{font-size:36px}.jeg_mobile_player_wrapper .jeg_player_current_item_cover_container{flex:0 1 auto;width:100%;padding:22px 22px 0 22px;margin:30px auto 20px auto}.jeg_mobile_player_wrapper .jeg_player_current_item__cover{margin:auto;width:35vh;height:35vh}.jeg_mobile_player_wrapper .jeg_player_current_item__cover img{width:100%;height:100%;object-fit:cover;top:0;left:0;max-width:100%}.jeg_mobile_player_wrapper .jeg_player_current_item__title_wrapper .jeg_player_current_item__title{text-overflow:ellipsis;overflow:hidden;flex:0 1 auto}.jeg_mobile_player_wrapper .jeg_player_current_item__title_wrapper{margin-bottom:10px}.jeg_mobile_player_wrapper .jeg_player_current_item__title{padding:0 24px;text-align:center}.jeg_mobile_player_wrapper .jeg_playlist{flex:1 1 auto;overflow-y:scroll;display:flex}.jeg_mobile_player_wrapper .jeg_playlist_inner{display:flex;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%;padding:0;margin:0}.jeg_mobile_player_wrapper li{margin:0 5px;padding:5px 5px 6px 12px}.jeg_mobile_player_wrapper .jeg_playlist_inner .jeg_playlist_item,.jeg_mobile_player_wrapper .jeg_playlist_inner>li>div{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;position:relative;transform:translateX(0);transition:transform .25s cubic-bezier(.3,0,0,1);width:100%}.jeg_mobile_player_wrapper .jeg_playlist_inner>li>div{flex-direction:row-reverse;text-overflow:ellipsis;overflow:hidden;text-align:center}.jeg_mobile_player_wrapper .jeg_playlist_item_remove{opacity:1}.jeg_mobile_player_wrapper .jeg_playlist_inner .item-cover{width:50px;height:50px;position:relative;flex-shrink:0}.jeg_mobile_player_wrapper .jeg_playlist_inner .item-title_wrapper{display:flex;flex-direction:column;justify-content:flex-start;text-align:left;margin:0 14px;width:auto}.jeg_mobile_player_wrapper .jeg_player_current_item__title span i.fa.fa-lock{margin-right:10px}.jeg_mobile_player_wrapper .jeg_player_bar{margin-bottom:20px;padding:0 20px}.jeg_mobile_player_wrapper .jeg_player_control{flex:0 1 auto;margin:10px auto;display:block}.jeg_mobile_player_wrapper .jeg_player_control [class*=jeg_player_control__]:not(.jeg_player_control__playlist),.jeg_mobile_player_wrapper .jeg_player_control [class*=jeg_player_control__]:not(.jeg_player_control__playlist) .fa{width:42px;height:42px}.jeg_mobile_player_wrapper .jeg_player_control a{height:62px;width:62px;text-align:center;display:inline-block;vertical-align:middle;width:auto;flex-grow:1;min-width:30px;cursor:pointer}.jeg_mobile_player_wrapper .jeg_player_control [class*=jeg_player_control__] .fa{line-height:42px;text-align:center}@media only screen and (min-width:500px){.jeg_mobile_player_wrapper .jeg_player_current_item__cover{margin:auto;width:20vh;height:20vh}}.jeg_control_bar_right,.jeg_no_solution,.jeg_player_control__mute,.jeg_player_control__next,.jeg_player_control__pause,.jeg_player_control__previous,.jeg_player_control__repeat_off,.jeg_player_control__shuffle_off,.jeg_player_control__stop,.jeg_player_controls_wrap .jeg_player_bar{display:none}@media only screen and (min-width:1367px){.jeg_control_bar_left{flex-basis:10%;max-width:10%}.jeg_control_bar_center{flex-basis:90%;max-width:90%}.jnews_dock_player .jeg_control_bar_left{flex-basis:30%;max-width:30%}.jnews_dock_player .jeg_control_bar_center{flex-basis:40%;max-width:40%}.jnews_dock_player .jeg_control_bar_right,.jnews_dock_player .jeg_control_bar_toggle_player{flex-basis:30%;max-width:30%}.jeg_control_bar_toggle_player{display:none}.jnews_dock_player .jeg_player_controls_wrap{padding:0 25px}.jeg_player_controls_wrap .jeg_player_bar,.jnews_dock_player .jeg_control_bar_right{display:flex}.jnews_dock_player .jeg_player_control{justify-content:flex-start}.jnews_dock_player .jeg_player_control.last{flex-basis:80%;flex-direction:row;justify-content:flex-end}.jnews_dock_player .jeg_player_bar.volume{flex-basis:20%}.jnews_dock_player .jeg_player_control__next,.jnews_dock_player .jeg_player_control__previous,.jnews_dock_player .jeg_player_control__stop{display:inline}.jeg_player_current_item__title{text-align:center}.jeg_playlist_item_remove{opacity:0;transition:.3s}.jeg_player_control__playlist_inner li:hover .jeg_playlist_item_remove,li.jeg_playlist_current .jeg_playlist_item_remove{opacity:1}}@media only screen and (min-width:1025px){.jeg_player_current_item__cover{display:inline-block}.jeg_sidecontent .jnews_podcast.jnews_dock_player{z-index:3}.jeg_sidecontent .jnews_dock_player_inner{margin-left:340px;box-shadow:none}}@media only screen and (min-width:1281px){.jeg_boxed .jnews_dock_player .jeg_player_inner{box-shadow:none}.jeg_boxed .jnews_dock_player_inner{max-width:1230px;margin:0 auto;position:relative}.jeg_boxed .jnews_dock_player_inner .jeg_player_inner:before{content:'';width:100%;height:7px;position:absolute;bottom:100%;left:0;background:-moz-linear-gradient(bottom,rgba(0,0,0,.05) 0,rgba(0,0,0,0) 100%);background:-webkit-linear-gradient(bottom,rgba(0,0,0,.05) 0,rgba(0,0,0,0) 100%);background:linear-gradient(to top,rgba(0,0,0,.05) 0,rgba(0,0,0,0) 100%)}}.jnews-dark-mode{--j-bg-rgb-color:26,26,26}.jnews-dark-mode .jeg_mobile_player_wrapper,.jnews-dark-mode .jeg_player_control,.jnews-dark-mode .jeg_player_control__playlist,.jnews-dark-mode .jeg_player_inner{background-color:rgb(var(--j-bg-rgb-color))}.jnews-dark-mode .jeg_media_option .jeg_sharelist_podcast,.jnews-dark-mode .jeg_media_option ul{background:var(--j-darkgrey-bg-color)}.jnews-dark-mode .jeg_media_option .jeg_sharelist_podcast a:hover,.jnews-dark-mode .jeg_media_option li:hover>:not(.active),.jnews-dark-mode .jeg_media_option li>.active{background:var(--j-grey-bg-color);color:var(--j-link-txt-color)}.jnews-dark-mode .jeg_player_current_item__title span{color:var(--j-txt-color)}/*!** Dark mode : border color **!*/.jnews-dark-mode .jeg_media_option .jeg_moreoption,.jnews-dark-mode .jeg_player_control__playlist,.jnews-dark-mode .jeg_player_inner,.jnews-dark-mode .jeg_progress_bar__ball:before{box-shadow:0 2px 4px rgba(0,0,0,.3),0 10px 20px rgba(0,0,0,.6)}.jnews-dark-mode.jeg_boxed .jnews_dock_player_inner .jeg_player_inner:before{background:-moz-linear-gradient(bottom,rgba(0,0,0,.3) 0,rgba(0,0,0,0) 100%);background:-webkit-linear-gradient(bottom,rgba(0,0,0,.3) 0,rgba(0,0,0,0) 100%);background:linear-gradient(to top,rgba(0,0,0,.3) 0,rgba(0,0,0,0) 100%)}.jnews_video .no_thumbnail{display:block}.jnews_video .jeg_post.format-video .jeg_thumb:after,.jnews_video .jeg_post.format-video .jeg_thumb:before{display:none}.jeg_thumb .jeg_video_length,.jeg_thumb .thumbnail-container,.jeg_thumb:after,.jeg_thumb:before{opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.jeg_thumb.video_previewer .jeg_video_length,.jeg_thumb.video_previewer .thumbnail-container,.jeg_thumb.video_previewer:after,.jeg_thumb.video_previewer:before{opacity:0!important}.jeg_thumb .jeg_post_video_preview{position:absolute;top:0;z-index:-1;left:0;right:0;bottom:0;overflow:hidden}.jeg_thumb .jeg_post_video_preview img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.jnews_video .jeg_post_meta>div:before{content:'\2022';margin-right:6px}.rtl .jnews_video .jeg_post_meta>div:before{margin-right:auto;margin-left:6px}body[class*=jeg_single_tpl_video_] .jeg_post_primary_info .jeg_post_meta>div:after{content:'\2022';margin-left:6px}body[class*=jeg_single_tpl_video_] .jeg_post_primary_info .jeg_post_meta>div:last-child:after{display:none}body[class*=jeg_single_tpl_video_] .jeg_post_primary_info .jeg_views_count>div{display:inline-block}.jnews_video .jeg_post_meta .jeg_meta_author+div:before,.jnews_video .jeg_post_meta .jeg_meta_option:before,.jnews_video .jeg_post_meta>div:first-child:before{display:none}.jnews_video .jeg_post_meta.style_1 .jeg_meta_author{margin-bottom:5px}.jeg_postblock_playlist.jeg_postblock.loaded,.jeg_postblock_video_1.jeg_postblock.loaded,.jeg_postblock_video_2.jeg_postblock.loaded,.jeg_postblock_video_3.jeg_postblock.loaded,.jeg_postblock_video_4.jeg_postblock.loaded{overflow:visible}.jeg_postblock_video_1 .jeg_posts_wrap,.jeg_postblock_video_2 .jeg_posts_wrap,.jeg_postblock_video_3 .jeg_posts_wrap,.jeg_postblock_video_4 .jeg_posts_wrap{position:relative}.jeg_meta_option .loader,.jeg_meta_option.active .loader,.jeg_meta_option.loading .initial,.jeg_moreoption .icon-active,.jeg_moreoption .icon-loader,.jeg_moreoption a.active .icon-default,.jeg_moreoption a.active.loading .icon-active,.jeg_moreoption a.active.loading .icon-default,.jeg_moreoption a.loading .icon-default{display:none}.jeg_meta_option.active .initial,.jeg_meta_option.active .jeg_moreoption,.jeg_meta_option.loading .loader{display:block}.jeg_moreoption a.active>.icon-active,.jeg_moreoption a.loading>.icon-loader{display:inline-block}.jeg_thumb .jeg_video_length{display:inline-block;position:absolute;z-index:3;bottom:5px;left:5px;margin:0;font-size:10px;font-weight:500;line-height:1;letter-spacing:.04em;background:rgba(0,0,0,.8);color:#fff;padding:2px 4px;border-radius:2px}.jnews_video.jeg_pagination_loadmore .jeg_block_navigation,.jnews_video.jeg_pagination_scrollload .jeg_block_navigation{margin-top:0}.jnews_video .jeg_block_loadmore a{background:0 0;border:unset;box-shadow:unset;font-size:10px;color:#a0a0a0;height:auto;line-height:1;min-width:0;padding:0;border:0}.jnews_video .jeg_block_loadmore a.active,.jnews_video .jeg_block_loadmore a:hover{color:#212121;background:0 0;border-color:#e0e0e0}[class*=jeg_postblock_video_] .jeg_block_container{overflow:visible}[class*=jeg_postblock_video_] .jeg_block_container:after{content:"";display:table;clear:both}[class*=jeg_postblock_video_] .jeg_meta_option .fa{color:inherit}.jnews_video .jeg_meta_option>a{display:block;width:16px;text-align:center}.jeg_postblock_playlist .jeg_post_meta,.jeg_postblock_video_1 .jeg_post_meta,.jeg_postblock_video_2 .jeg_post_meta,.jeg_postblock_video_3 .jeg_post_meta,.jeg_postblock_video_4 .jeg_post_meta{position:relative}.jeg_postblock_playlist .jeg_meta_option,.jeg_postblock_video_1 .jeg_meta_option,.jeg_postblock_video_2 .jeg_meta_option,.jeg_postblock_video_3 .jeg_meta_option,.jeg_postblock_video_4 .jeg_meta_option{position:absolute;top:0;right:0}.rtl .jeg_postblock_playlist .jeg_meta_option,.rtl .jeg_postblock_video_1 .jeg_meta_option,.rtl .jeg_postblock_video_2 .jeg_meta_option,.rtl .jeg_postblock_video_3 .jeg_meta_option,.rtl .jeg_postblock_video_4 .jeg_meta_option{right:auto;left:0}.jeg_meta_option ul{font-size:12px;padding:6px 0;list-style-type:none}.jeg_meta_option li{margin-bottom:0;position:relative}.jeg_meta_option li a{color:#53585c;font-weight:400;padding:6px 20px}.jeg_meta_option li:hover>a:not(.active){background:#f7f7f7;color:#212121}.entry-header .jeg_meta_option li .fa,.jeg_meta_option li .fa{color:inherit;margin-right:6px;width:12px;text-align:center}.jeg_meta_option .jeg_moreoption a.active{color:#a0a0a0}.jeg_meta_option .jeg_moreoption,.jeg_meta_share .jeg_sharelist,.jeg_moreoption .jeg_add_to_playlist{position:absolute;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.18);min-width:150px;display:none;z-index:1041}.jeg_meta_option,.jeg_meta_share{position:relative}.jeg_moreoption{top:100%;right:-10px}.jeg_sharelist{bottom:100%;left:0}.fa-twitter:before{content:none!important}.jeg_meta_share.active .jeg_sharelist a svg{position:relative;top:2px}.jeg_meta_share.active .jeg_sharelist a .fa-line svg{left:2.8px}.jeg_add_to_playlist{width:180px;top:0;left:100%}.jeg_add_to_playlist.supposition-active{left:auto;right:100%}.jeg_add_to_playlist li:first-child{border-bottom:1px solid #eee;padding-bottom:4px;margin-bottom:6px}.jeg_moreoption a,.jeg_sharelist a{display:block;text-align:left}.jeg_meta_option.active .jeg_moreoption,.jeg_meta_share.active .jeg_sharelist{display:block}.follow-wrapper a,.jnews_video .follow-wrapper a{display:block;color:inherit;border:1px solid #e8e8e8;text-transform:uppercase;border-radius:2px;padding:2px 8px;font-size:11px;font-weight:500;letter-spacing:.04em;-webkit-transition:.2s;transition:.2s}.jnews-dark-mode .follow-wrapper a,.jnews-dark-mode .jnews_video .follow-wrapper a{border-color:var(--j-border-color)}.follow-wrapper a:hover,.jnews_video .follow-wrapper a:hover{color:#212121}.jnews-dark-mode .follow-wrapper a:hover,.jnews-dark-mode .jnews_video .follow-wrapper a:hover{color:var(--j-link-txt-color)}.jnews_video .follow-wrapper .follow:before{content:'+';margin-right:4px;opacity:.5}.follow-wrapper a span,.jnews_video .follow-wrapper a span{padding:0 0 0 8px}.jeg_userlist .jeg_meta_subscribe{line-height:initial;margin-top:4px}.jeg_userlist .jeg_meta_subscribe .follow-wrapper a{display:inline-block;padding:0 8px;font-size:inherit;font-size:calc(100% - 4px)}.jeg_userlist .jeg_meta_subscribe .follow-wrapper .follow:before{content:unset}.jeg_userlist .jeg_meta_subscribe.show_count .follow-wrapper,.jeg_userlist-wrap:hover .jeg_meta_subscribe.show_count:not(.no-follow) .jeg_subscribe_count{display:none}.jeg_userlist-wrap:hover .jeg_meta_subscribe .follow-wrapper{display:block}.jeg_userlist-wrap .jeg_meta_subscribe .jeg_subscribe_count{line-height:18px}.jeg_userlist .jeg_meta_subscribe{font-size:11px;margin-bottom:0;color:#a0a0a0;min-height:20px}.jeg_userlist .jeg_meta_subscribe .jnews-spinner{display:none}.jnews-dark-mode .jeg_userlist .jeg_meta_subscribe{color:var(--j-meta-txt-color)!important}.jeg_userlist .jeg_meta_subscribe .follow-wrapper a{background:#fff;color:#53585c;font-size:10px;padding:2px 8px}.jnews-dark-mode .jeg_userlist .jeg_meta_subscribe .follow-wrapper a{background:var(--j-bg-color)!important}.jnews-dark-mode .jeg_userlist.style-5 .jeg_userlist-name{color:var(--j-link-txt-color)!important}.jnews-dark-mode .jeg_userlist .jeg_meta_subscribe .follow-wrapper a{border-color:var(--j-border-color)!important}.jnews-dark-mode .jeg_userlist .jeg_meta_subscribe .follow-wrapper a{color:var(--j-txt-color)}.nav_top .jeg_video_block_heading{margin-right:64px}.jeg_postblock.jeg_pagination_nextprev.nav_top .jeg_block_nav a{font-size:20px;color:#212121;margin:auto;height:32px;line-height:32px;width:24px;text-align:center;border:0;background-color:transparent;-webkit-transition:all .2s ease;transition:all .2s ease}.jeg_postblock.jeg_pagination_nextprev .jeg_block_nav a:hover{opacity:.7;background:0 0}.jeg_postblock.jeg_pagination_nextprev .jeg_block_nav a.disabled{opacity:.5;background:0 0}.jeg_postblock.jeg_pagination_nextprev.nav_top .jeg_block_navigation{position:absolute;top:0;right:0;margin:0}.jeg_postblock.jeg_pagination_nextprev.nav_top .jeg_block_nav{display:-webkit-box;display:flex}.jeg_video_block_heading_wrapper{position:relative;margin-bottom:20px}.jeg_video_block_heading_wrapper:after{content:"";display:table;clear:both}.jeg_video_block_heading_wrapper .jeg_video_block_heading img{border-radius:50%;width:32px;height:32px}.jeg_video_block_heading_wrapper .jeg_video_block_heading .jeg_block_title{font-size:17px;font-weight:500}.jeg_video_block_heading_wrapper .jeg_video_block_heading .jeg_block_title span{padding:0;line-height:normal;height:auto}.jeg_video_block_heading_wrapper .jeg_video_block_heading{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.jeg_video_block_heading_wrapper .jeg_video_block_heading>*{margin-right:12px}.jeg_video_block_heading_wrapper .jeg_video_block_heading .tag_content{border:1px solid #e8e8e8;text-transform:uppercase;border-radius:2px;padding:0 8px;font-size:11px;font-weight:500;letter-spacing:.04em}.jnews-dark-mode .jeg_video_block_heading_wrapper .jeg_video_block_heading .tag_content{border-color:var(--j-border-color)}.jeg_video_block_heading_wrapper .jeg_video_block_heading .subtitle{font-size:14px;color:#a0a0a0}.jnews-dark-mode .jeg_video_block_heading_wrapper .jeg_video_block_heading .subtitle{color:var(--j-meta-txt-color)}.jeg_video_block_heading_wrapper .follow-wrapper{margin:auto 0 auto auto}.jeg_postblock_video_1{margin-bottom:15px}.jeg_postblock_video_1 .jeg_posts{flex-wrap:wrap;display:-webkit-box;display:flex;-webkit-box-align:start;align-items:flex-start;margin-right:-30px}.jeg_postblock_video_1 .jeg_post{float:left;width:25%;padding-right:30px;margin-bottom:25px}.jnews_video .jeg_post_meta{text-transform:none;line-height:1.4}.jnews_video .jeg_meta_author a{color:inherit;font-weight:400}.jnews_video .jeg_post_meta.style_1{margin-top:10px}.jeg_postblock_video_1 .jeg_post_meta .jeg_author_avatar{float:left;width:32px;height:32px;margin-right:1em}.jeg_postblock_video_1 .jeg_post_meta .jeg_meta_author{text-transform:none;display:block}.jeg_postblock_video_1 .jeg_meta_author a{color:#a0a0a0;font-size:12px;font-weight:400}.jeg_postblock_video_1.jeg_col_1o3 .jeg_posts{margin-right:-20px}.jeg_postblock_video_1.jeg_col_1o3 .jeg_post{width:50%;padding-right:20px;margin-bottom:20px}.jeg_postblock_video_1.jeg_col_1o3 .jeg_post_title{font-size:12px;font-weight:500}.jeg_postblock_video_1.jeg_col_3o3 .jeg_post{width:20%}.jeg_postblock_video_1 .jeg_pl_md_5 .jeg_post_title{font-size:14px;font-weight:500}.jeg_postblock_playlist,.jeg_postblock_video_2{margin-bottom:15px}.jeg_postblock_playlist .jeg_posts_wrap,.jeg_postblock_video_2 .jeg_posts_wrap{position:relative}.jeg_postblock_playlist .jeg_posts,.jeg_postblock_video_2 .jeg_posts{flex-wrap:wrap;display:-webkit-box;display:flex;-webkit-box-align:start;align-items:flex-start;margin-right:-30px}.jeg_postblock_playlist .jeg_post,.jeg_postblock_video_2 .jeg_post{float:left;width:33.333333333%;padding-right:30px;margin-bottom:25px}.jeg_postblock_playlist .jeg_post_meta,.jeg_postblock_video_2 .jeg_post_meta{text-transform:capitalize}.jeg_postblock_video_2 .jeg_post_meta .jeg_author_avatar{float:left;width:32px;height:32px;margin-right:1em}.jeg_postblock_video_2 .jeg_post_meta .jeg_meta_author{text-transform:none;display:block}.jeg_postblock_video_2 .jeg_meta_author a{color:#a0a0a0;font-size:12px;font-weight:400}.jeg_postblock_playlist.jeg_col_1o3 .jeg_posts,.jeg_postblock_video_2.jeg_col_1o3 .jeg_posts{margin-right:-20px}.jeg_postblock_playlist.jeg_col_1o3 .jeg_post,.jeg_postblock_video_2.jeg_col_1o3 .jeg_post{width:100%;padding-right:20px;margin-bottom:20px}.jeg_postblock_playlist.jeg_col_1o3 .jeg_post_title,.jeg_postblock_video_2.jeg_col_1o3 .jeg_post_title{font-size:12px;font-weight:500}.jeg_postblock_playlist.jeg_col_2o3 .jeg_post,.jeg_postblock_video_2.jeg_col_2o3 .jeg_post{width:50%}.jeg_postblock_playlist.jeg_col_3o3 .jeg_post,.jeg_postblock_video_2.jeg_col_3o3 .jeg_post{width:33.333333333%}.jeg_postblock_playlist .jeg_pl_md_5 .jeg_post_title,.jeg_postblock_video_2 .jeg_pl_md_5 .jeg_post_title{font-size:14px;font-weight:500}.jeg_postblock_video_3{margin-bottom:15px}.jeg_postblock_video_3 .jeg_post{margin-bottom:30px;display:-webkit-box;display:flex;align-items:flex-start}.jeg_postblock_video_3 .jeg_post_meta .jeg_author_avatar{float:left;width:32px;height:32px;margin-right:1em}.jeg_postblock_video_3 .jeg_post_meta .jeg_meta_author{text-transform:none;display:block}.jeg_postblock_video_3 .jeg_meta_author a{color:#a0a0a0;font-size:12px;font-weight:400}.jeg_postblock_video_3 .jeg_thumb{-webkit-box-flex:1;flex:1 0 40%;max-width:360px;margin-right:30px}.jeg_postblock_video_3 .jeg_postblock_content{-webkit-box-flex:1;flex:1 1 auto}.jeg_postblock_video_3 .jeg_post_title{font-size:22px;font-weight:700;line-height:1.4em;margin:0 0 5px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_post{margin-bottom:25px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{max-width:120px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_post_title{font-size:15px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{margin-right:15px}.jeg_postblock_video_4{margin-bottom:15px}.jeg_postblock_video_4 .jeg_posts_wrap{position:relative}.jeg_postblock_video_4 .jeg_posts{flex-wrap:wrap;display:-webkit-box;display:flex;-webkit-box-align:start;align-items:flex-start;margin-right:-30px}.jeg_postblock_video_4 .jeg_post{float:left;width:33.333333333%;padding-right:30px;margin-bottom:25px}.jeg_postblock_video_4 .jeg_post_meta{text-transform:capitalize}.jeg_postblock_video_4 .jeg_post_meta .jeg_author_avatar{float:left;width:32px;height:32px;margin-right:1em}.jeg_postblock_video_4 .jeg_post_meta .jeg_meta_author{text-transform:none;display:block}.jeg_postblock_video_4 .jeg_meta_author a{color:#a0a0a0;font-size:12px;font-weight:400}.jeg_postblock_video_4.jeg_col_1o3 .jeg_posts{margin-right:-20px}.jeg_postblock_video_4.jeg_col_1o3 .jeg_post{width:50%;padding-right:20px;margin-bottom:20px}.jeg_postblock_video_4.jeg_col_1o3 .jeg_post_title{font-size:12px;font-weight:500}.jeg_postblock_video_4.jeg_col_2o3 .jeg_post{width:33.333333333%}.jeg_postblock_video_4.jeg_col_3o3 .jeg_post{width:25%}.jeg_postblock_video_4 .jeg_pl_md_5 .jeg_post_title{font-size:14px;font-weight:500}.jeg_meta_share>a{text-transform:uppercase}.jeg_meta_share .jeg_sharelist{position:absolute;width:145px;padding:15px;bottom:25px;right:-5px;display:none}.jeg_meta_share .jeg_sharelist.supposition-active{left:auto;right:100%}.jeg_meta_share.active .jeg_sharelist{display:block}.jeg_meta_share .jeg_sharelist a{display:block;text-align:left}.jeg_meta_share .jeg_sharelist a:not(:last-child){margin-bottom:8px}.jeg_meta_share .jeg_sharelist span{color:#212121;font-weight:400;padding-left:5px;font-size:12px}.jeg_meta_share .jeg_sharelist .fa{font-size:12px;margin-right:0;height:24px;line-height:24px;width:24px;border-radius:24px;text-align:center;padding:0;box-shadow:0 1px 3px rgba(0,0,0,.2)}.jeg_meta_share .jeg_sharelist .fa:before{color:#fff}.jeg_meta_share .jeg_sharelist .jeg_btn-facebook .fa{background:#45629f}.jeg_meta_share .jeg_sharelist .jeg_btn-qrcode .fa{background:#bd0000}.jeg_meta_share .jeg_sharelist .jeg_btn-xing .fa{background:#005658}.jeg_meta_share .jeg_sharelist .jeg_btn-threads .fa,.jeg_meta_share .jeg_sharelist .jeg_btn-twitter .fa{background:#000}.jeg_meta_share .jeg_sharelist .jeg_btn-bluesky .fa{background:#0085ff}.jeg_meta_share .jeg_sharelist .jeg_btn-google-plus .fa{background:#df5443}.jeg_meta_share .jeg_sharelist .jeg_btn-linkedin .fa{background:#0083bb}.jeg_meta_share .jeg_sharelist .jeg_btn-pinterest .fa{background:#cf2830}.jeg_meta_share .jeg_sharelist .jeg_btn-tumblr .fa{background:#314358}.jeg_meta_share .jeg_sharelist .jeg_btn-stumbleupon .fa{background:#ff4e2e}.jeg_meta_share .jeg_sharelist .jeg_btn-email .fa{background:#eb4d3f}.jeg_meta_share .jeg_sharelist .jeg_btn-whatsapp .fa{background:#075e54}.jeg_meta_share .jeg_sharelist .jeg_btn-hatena .fa{background-image:url(//letambour.net/wp-content/plugins/jnews-video/assets/img/hatena-share.png);background-size:20px;background-color:#039be5}.jeg_meta_share .jeg_sharelist .jeg_btn-line .fa{background-size:14px;background-color:#00b900}.jeg_meta_share .jeg_sharelist .fa-hatena:after,.jeg_meta_share .jeg_sharelist .fa-line:after{content:"*";color:transparent;text-indent:-9999em}.jeg_meta_share .jeg_sharelist .jeg_btn-hatena .fa,.jeg_meta_share .jeg_sharelist .jeg_btn-line .fa{background-repeat:no-repeat;background-position:center center}.jeg_meta_share .jeg_sharelist .jeg_btn-buffer .fa{background:#333}.jeg_meta_share .jeg_sharelist .jeg_btn-vk .fa{background:#4c75a3}.jeg_meta_share .jeg_sharelist .jeg_btn-reddit .fa{background:#ff4500}.jeg_meta_share .jeg_sharelist .jeg_btn-wechat .fa{background:#7bb32e}.jeg_meta_share .jeg_sharelist .jeg_btn-telegram .fa{background:#08c}.single-playlist .jeg_content{padding-top:60px}@media (min-width:992px){.single-playlist .jeg_sidebar_right .jeg_main_content{float:left}.single-playlist .jeg_sidebar_right .jeg_sidebar{float:right}}.single-playlist .jeg_post_meta>div:not(:last-of-type){margin-right:8px}.single-playlist .jeg_post_meta>div:not(:last-child):after{content:'\2022';margin-left:8px}.single-playlist .jeg_video_length{font-size:12px;color:#a0a0a0}.single-playlist .jeg_featured{margin-bottom:0}.single-playlist .jeg_featured .thumbnail-container{margin-bottom:20px}.single-playlist .jeg_post_option{position:relative;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.single-playlist .jeg_post_option .jeg_meta_option{margin:auto;margin-right:0}.single-playlist .jeg_post_option .jeg_meta_option>a,.single-playlist .jeg_post_option .jeg_meta_share>a{color:#a0a0a0}.single-playlist .jeg_post_option>div:not(:last-of-type){margin-right:24px}.single-playlist .entry-header .jeg_post_title,.single-playlist .entry-header>p{margin-bottom:12px}.single-playlist .entry-header>.jeg_post_title{font-size:24px;font-weight:500;line-height:32px}.single-playlist .jeg_playlist_contents .post-title{font-size:17px;font-weight:700;line-height:1.471em;border-bottom:2px solid #eee;margin:0;padding-bottom:20px}.single-playlist .jeg_meta_container{margin-bottom:20px}.single-playlist .jeg_post_label{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.04em;margin-bottom:10px}.single-playlist .entry-header .jeg_post_meta{font-size:12px}.single-playlist .entry-header .jeg_post_meta [class*=jeg_meta]:not(:last-child):after{content:'\2022';margin-left:8px}.single-playlist .entry-header .jeg_post_meta a{font-weight:400;color:inherit}.jeg_single_playlist_2 .jeg_inner_content{display:-webkit-box;display:flex;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;-webkit-box-align:center;align-items:center}.jeg_single_playlist_2 .jeg_inner_content>div:not(:first-child){margin-left:29px}.jeg_single_playlist_2 .jeg_inner_content .entry-header{max-width:561px}.jeg_single_playlist_2 .jeg_post_option .jeg_meta_option{margin:0}.jeg_single_playlist_2 .jeg_featured{max-width:361px;width:100%}.single-playlist .jnews-playlist-items{list-style-type:none;counter-reset:jeg-playlist-item;margin-bottom:20px}.single-playlist .jnews-playlist-items>li{padding:20px 0 20px 50px;border-bottom:1px solid #eee;counter-increment:jeg-playlist-item}.single-playlist .jnews-playlist-items>li:before{content:counter(jeg-playlist-item);width:40px;text-align:center;position:absolute;left:0;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.single-playlist .jnews-playlist-item .jeg_block_container{position:relative;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:nowrap}.single-playlist .jnews-playlist-item .jeg_block_container>*{-webkit-box-flex:0;flex:0 0 auto;padding:10px}.single-playlist .jnews-playlist-item .jeg_block_container .jeg_post_info{-webkit-box-flex:0;flex:0 1 auto;width:100%;padding-left:20px}.single-playlist .jnews-playlist-item .jeg_thumb{padding:0;width:90px;height:90px}.single-playlist .jnews-playlist-item .jeg_block_container .jeg_post_video{min-width:60px}.single-playlist .jnews-playlist-item .jeg_post_title{font-size:16px;font-weight:500;margin:0 0 5px}.single-playlist .jeg_block_container .jeg_remove_post{display:block;color:inherit;border:1px solid #e0e0e0;text-transform:uppercase;border-radius:2px;padding:2px 12px;font-size:11px;letter-spacing:.06em;text-align:center}.single-playlist .jeg_block_container .jeg_remove_post .fa{opacity:.6;margin-right:2px}.jnews-playlist-item{position:relative}.jnews-playlist-overlay{position:absolute;background:rgba(0,0,0,.5);top:0;left:0;right:0;bottom:0;display:none;z-index:9999}.jnews-playlist-overlay>div{position:absolute;font-size:24px;color:#fff;left:50%;top:50%;margin-top:-12px;margin-left:-12px}.jnews-playlist-item.playlist-item-removing .jnews-playlist-overlay{display:block}#jeg_playlist.edit_playlist{max-width:720px}#jeg_playlist.edit_playlist form{display:-webkit-box;display:flex;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}#jeg_playlist.edit_playlist form>.form-message,#jeg_playlist.edit_playlist form>p{-webkit-box-flex:0;flex:0 0 100%}#jeg_playlist.edit_playlist form .form-group{margin-bottom:0}#jeg_playlist.edit_playlist form .form-group:first-child{-webkit-box-flex:0;flex:0 0 40%}#jeg_playlist.edit_playlist form .form-group:last-child{-webkit-box-flex:0;flex:1 0 60%;padding-left:30px}#jeg_playlist.edit_playlist form .form-group .form-input-wrapper{margin-bottom:20px}#jeg_playlist.edit_playlist form .form-group label{font-weight:500;font-size:14px;margin-bottom:4px}#jeg_playlist.edit_playlist form .submit{text-align:right}#jeg_playlist.edit_playlist .jeg_upload_wrapper{position:relative}#jeg_playlist.edit_playlist .jeg_upload_wrapper .ui-sortable{width:222px;height:222px;position:relative}#jeg_playlist.edit_playlist .jeg_upload_wrapper .ui-sortable li{position:absolute;margin:0;width:100%;height:100%}#jeg_playlist.edit_playlist .jeg_upload_wrapper .ui-sortable li img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}#jeg_playlist.edit_playlist .jeg_upload_wrapper #btn-single-image{position:absolute;top:0;bottom:0;left:0;right:0;height:auto;border:none;border-radius:unset;color:#fff;background-color:rgba(0,0,0,.5)}#jeg_playlist.edit_playlist .jeg_upload_wrapper #btn-single-image>span{display:none}#jeg_playlist.edit_playlist .jeg_upload_wrapper .remove:after{bottom:unset;width:100%}#jeg_playlist.edit_playlist .jeg_upload_wrapper #btn-single-image i{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:56px}[id*=jeg_playlist].jeg_popup button.mfp-close{top:0}[id*=jeg_playlist] .jeg_popupform,[id*=jeg_playlist] .jeg_popupform input:not([type=submit]){text-align:left}[id*=jeg_playlist].edit_playlist .jeg_popupform .button{width:auto;min-width:130px}.jeg_popup_container{outline:0;position:fixed;box-sizing:border-box;left:0;bottom:0;top:auto;max-width:289px;max-height:55px;z-index:2147483647;transform:translate3d(0,0,0)}#paper_toast{display:block;position:fixed;background-color:#323232;color:#f1f1f1;min-height:48px;min-width:288px;max-width:400px;padding:16px 24px;box-sizing:border-box;box-shadow:0 2px 5px 0 rgba(0,0,0,.26);border-radius:2px;margin:12px;font-size:14px;cursor:default;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;opacity:1;-webkit-font-smoothing:antialiased}.jeg_popup_container #paper_toast{padding:8px 24px;-webkit-box-pack:justify;justify-content:space-between;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;-webkit-box-align:center;align-items:center}.jnews_history_content_wrapper .jnews_history_login{margin:20% auto;text-align:center}.jnews_history_content_wrapper .jnews_history_login>*{margin-bottom:30px}.jnews_history_content_wrapper .jnews_history_login .icon{font-size:60px}.jnews_history_content_wrapper .jnews_history_login .message{font-size:24px;margin-bottom:10px}.jnews_history_content_wrapper .jnews_history_login .submessage{font-size:18px}@media screen and (min-width:768px){.jeg_postblock_video_1.jeg_col_1o3 .jeg_post_title{font-size:12px;font-weight:500}}@media only screen and (max-width:1024px){.jeg_postblock_video_3 .jeg_thumb{max-width:280px}.jeg_postblock_video_3 .jeg_post_title{font-size:18px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_post{margin-bottom:20px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{max-width:100px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_post_title{font-size:13px}}@media screen and (max-width:768px){.jnews_history_content_wrapper .jnews_history_login>*{margin-bottom:10px}.jnews_history_content_wrapper .jnews_history_login .icon{font-size:50px}.jnews_history_content_wrapper .jnews_history_login .message{font-size:18px}.jnews_history_content_wrapper .jnews_history_login .submessage{font-size:14px}.jeg_postblock_video_3 .jeg_thumb{margin-right:20px}}@media only screen and (min-width:768px) and (max-width:1023px){.jeg_video_block_heading_wrapper{margin-bottom:20px}.jeg_postblock_video_1 .jeg_posts,.jeg_postblock_video_2 .jeg_posts{margin-right:-20px}.jeg_postblock_video_1 .jeg_post,.jeg_postblock_video_2 .jeg_post{padding-right:20px}.jeg_postblock_video_1 .jeg_post_title{font-size:15px}.jeg_postblock_video_3.jeg_col_2o3 .jeg_thumb{margin-right:20px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{max-width:80px;margin-right:10px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_pl_md_2 .jeg_post_meta{clear:both;padding-top:5px}.jeg_postblock_video_3.jeg_col_3o3 .jeg_pl_md_2 .jeg_post_title{font-size:18px}}@media only screen and (max-width:767px){.jeg_video_block_heading>:not(.jeg_block_title):not(img){display:none}.jeg_postblock_video_3 .jeg_post_title{font-size:16px}.jeg_postblock_video_1.jeg_col_1o3 .jeg_post{padding-right:30px}.jeg_postblock_video_1.jeg_col_2o3 .jeg_post,.jeg_postblock_video_1.jeg_col_3o3 .jeg_post{width:50%}.jeg_postblock_video_3.jeg_col_1o3 .jeg_post_title{font-size:14px}}@media only screen and (max-width:667px){.jeg_postblock_video_1 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_1 .jeg_post.format-video .jeg_thumb:after,.jeg_postblock_video_2 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_2 .jeg_post.format-video .jeg_thumb:after,.jeg_postblock_video_4 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_4 .jeg_post.format-video .jeg_thumb:after{-webkit-transform:scale(1.5);transform:scale(1.5)}.jeg_postblock_playlist .jeg_posts,.jeg_postblock_video_1 .jeg_posts,.jeg_postblock_video_2 .jeg_posts,.jeg_postblock_video_4 .jeg_posts{margin-right:0!important}.jeg_postblock_playlist .jeg_post,.jeg_postblock_video_1 .jeg_post,.jeg_postblock_video_2 .jeg_post,.jeg_postblock_video_4 .jeg_post{width:100%!important;padding:0!important}.jeg_postblock_playlist .jeg_post_title,.jeg_postblock_video_1 .jeg_post_title,.jeg_postblock_video_2 .jeg_post_title,.jeg_postblock_video_4 .jeg_post_title{font-size:18px}}@media only screen and (max-width:480px){.jeg_postblock_playlist:not(.jeg_pb_boxed),.jeg_postblock_video_1:not(.jeg_pb_boxed),.jeg_postblock_video_2:not(.jeg_pb_boxed),.jeg_postblock_video_4:not(.jeg_pb_boxed){margin-bottom:10px}.jeg_postblock_playlist .jeg_post,.jeg_postblock_video_1 .jeg_post,.jeg_postblock_video_2 .jeg_post,.jeg_postblock_video_3 .jeg_post,.jeg_postblock_video_4 .jeg_post{margin-bottom:20px}.jeg_postblock_video_3 .jeg_thumb,.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{margin-right:10px}.jeg_postblock_video_3.jeg_col_1o3 .jeg_thumb{max-width:40%}.jeg_postblock_video_3 .jeg_post_title{font-size:14px}.jeg_postblock_video_3 .jeg_post_excerpt{display:none}.single-playlist .jnews-playlist-item .jeg_post_meta,.single-playlist .jnews-playlist-item .jeg_remove_post span{display:none}.single-playlist .jnews-playlist-item .jeg_remove_post{font-size:14px}.single-playlist .jnews-playlist-item .jeg_thumb{width:50px;height:50px}.single-playlist .jnews-playlist-item .jeg_post_title{margin:0}.single-playlist .jnews-playlist-item .jeg_block_container .jeg_post_info{padding-top:0}.single-playlist .jnews-playlist-item .jeg_block_container{-webkit-box-align:start;align-items:flex-start}.single-playlist .jeg_single_playlist_2 .jeg_featured{max-width:none}.single-playlist .jeg_single_playlist_2 .jeg_inner_content>div:not(:first-child){margin-left:0;max-width:none}.single-playlist .jeg_single_playlist_2 .jeg_post_option .jeg_meta_option{margin:auto;margin-right:0}.single-playlist .jeg_single_playlist_2 .jeg_inner_content{display:unset}}@media only screen and (max-width:320px){.jeg_postblock_video_1 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_1 .jeg_post.format-video .jeg_thumb:after,.jeg_postblock_video_2 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_2 .jeg_post.format-video .jeg_thumb:after,.jeg_postblock_video_4 .jeg_post.format-gallery .jeg_thumb:after,.jeg_postblock_video_4 .jeg_post.format-video .jeg_thumb:after{-webkit-transform:none;transform:none}.jeg_postblock_playlist .jeg_post_title,.jeg_postblock_video_1 .jeg_post_title,.jeg_postblock_video_2 .jeg_post_title,.jeg_postblock_video_4 .jeg_post_title{font-size:14px!important}}