/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */
/*temp load font*/
@font-face { 
    font-family: 'Roundelay';
    font-style: normal;
    font-weight: 800;
    src: url('/wp-content/uploads/2025/03/Roundelay-ExtraBold.ttf')format('truetype');
}
@font-face { 
    font-family: 'Roundelay';
    font-style: normal;
    font-weight: 700;
    src: url('/wp-content/uploads/2025/03/Roundelay-Bold.ttf')format('truetype');
}
@font-face { 
    font-family: 'Roundelay';
    font-style: normal;
    font-weight: 400;
    src: url('/wp-content/uploads/2025/03/Roundelay-Regular.ttf')format('truetype');
}
@font-face { 
    font-family: 'Roundelay';
    font-style: normal;
    font-weight: 300;
    src: url('/wp-content/uploads/2025/03/Roundelay-Thin.ttf')format('truetype');
}
@font-face { 
    font-family: 'Brevia';
    font-style: normal;
    font-weight: 900;
    src: url('/wp-content/uploads/2025/06/Brevia-Black.ttf')format('truetype');
}
@font-face { 
    font-family: 'Brevia';
    font-style: normal;
    font-weight: 700;
    src: url('/wp-content/uploads/2025/06/Brevia-Bold.ttf')format('truetype');
}
@font-face { 
    font-family: 'Brevia';
    font-style: normal;
    font-weight: 600;
    src: url('/wp-content/uploads/2025/06/Brevia-Semibold.ttf')format('truetype');
}
@font-face { 
    font-family: 'Centra';
    font-style: normal;
    font-weight: 400;
    src: url('/wp-content/uploads/2025/06/CentraNo1-Book.ttf')format('truetype');
}
@font-face { 
    font-family: 'Centra';
    font-style: normal;
    font-weight: 300;
    src: url('/wp-content/uploads/2025/06/CentraNo1-Light.ttf')format('truetype');
}
@font-face { 
    font-family: 'Centra';
    font-style: normal;
    font-weight: 500;
    src: url('/wp-content/uploads/2025/06/CentraNo1-Medium.ttf')format('truetype');
}
@font-face { 
    font-family: 'Centra';
    font-style: normal;
    font-weight: 700;
    src: url('/wp-content/uploads/2025/06/CentraNo1-Bold.ttf')format('truetype');
}

/* Start - Header */
.dl-side-nav .ue_menu{
    justify-content: flex-end !important;
}
.dl-side-nav .ue_menu .ue_inner_menu-box{
    width: 356px !important;
    padding: 0 0px !important;
}
.dl-side-nav .menu-opened{
    position: fixed !important;
    right: 30px !important;
    top: 77px !important;
}
.dl-side-nav.elementor-widget-ucaddon_fullscreen_navigation_menu > .elementor-widget-container{
    width: 30px;
}
.dl-header .ue-menu > li > .sub-menu > li a{
    border-radius: 20px;
}
.dl-header .ue-menu > li > .sub-menu > li{
    margin-bottom: 8px;
}
.dl-header .ue-menu > li > .sub-menu{
    transition: all .55s ease-in-out !important;
}
.dl-header .ue-menu > li > a .ue-nav-menu-icon{
    transition: all .55s ease !important;
}
.dl-header .ue-menu > li > a:hover .ue-nav-menu-icon{
  transform: rotate(180deg);
}

.dl-header .search-icon .elementor-icon-wrapper, .dl-header .ue_hamburger  .ue_hamburger_custom_open{
    display: flex;
} 
.menu-opened .dl-header .ue_hamburger   .ue_hamburger_custom_close{
    display: flex !important;
} 

.dl-header .dl-side-nav .ue_menu > div > div.ue_inner_menu-box{
    height: calc(100% - 115px);
}
.dl-header .dl-side-nav .ue_menu > div > div > div:nth-child(1){
    padding: 0 45px;
}
.dl-header .dl-side-nav .ue_menu > div > div > div:nth-child(2){
    margin: 0 auto auto auto;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    height: calc(100% - 100px);
    margin-top: 20px;
    padding: 0 0 0 45px;
}
.dl-header .dl-side-nav .ue_menu .ue_inner_menu {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    z-index: 9999;
}
.dl-header .dl-side-nav .ue_menu > div > div > div:nth-child(3){
    padding: 0 45px;
}
.dl-header .dl-side-nav .ue_menu .uc-list-menu{
    overflow-y: auto !important;
    height: 100%;
    width: 100%;
    box-sizing: content-box;
}

.dl-header .dl-side-nav .ue_menu ul > li.fullnav-item-b > a {
    font-size: 18.5px;
}
.dl-header .dl-side-nav .ue_menu ul > li.fullnav-item-b:nth-last-of-type(4)::after {
    content: "";
    display: block;
    position: relative;
    width: 80%;
    height: 35px;
    border-bottom:1px solid #fff;
}
body .jupiterx-header .ue_menu::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #16161666;
    transition: opacity 1s ease visibility 1s ease;
    visibility: hidden;
    opacity: 0;
    display: none;
}
body.menu-opened .jupiterx-header .ue_menu::after{
    visibility: visible;
    opacity: 1;
    display: block;
}
.dl-side-nav .ue_menu ul ul.sub-menu li a:hover{
    color: #FFFFFF !important;
}
.dl-side-nav .ue_menu-social-icons{
    overflow: visible !important;
}


/* Navbar scroll hide/show */
body header .header-fixed {
    transition: all 0.35s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-fixed.header-scrolled {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); 
}
.header-fixed::before{
    content:"";
    display: block;
    width:100%;
    height:100%;
    background-color: #fff !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.header-fixed.page-scroll-up::before{
	background-color: #ffffff !important;
	opacity: 1;
    visibility: visible;
    transition: all 0.35s ease;
}
.header-fixed.page-scroll-up .dl-logo-img a, .header-fixed.header-scrolled .dl-logo-img a{
    height: 86px;
    transform: scale(0.8);
    transform-origin: center center;
  backface-visibility: hidden;
}
.header-fixed .dl-logo-img a{
    height: 182px;
    transition: all .2s ease;
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    overflow: visible;
}
.header-fixed.page-scroll-up .dl-logo-img a{
    overflow: hidden;
}
.header-fixed .e-con-inner{
	transition: all .3s;
}
.header-fixed.page-scroll-up .e-con-inner{
	transition: all .3s;
}
.header-fixed.header-scrolled .e-con-inner{
	transition: all .3s;
}
.header-fixed.page-scroll-up .ue-menu > .menu-item > a{
	color: var(--e-global-color-primary) !important;
}
.header-fixed.page-scroll-up .ue-menu > li > .sub-menu li{
    color:#ffffff !important;
}

.header-fixed.page-scroll-up .top-nav-cta.sample-cta a{
     background-color: var(--e-global-color-primary) !important;
    color: #ffffff !important;
    border-color: var(--e-global-color-primary) !important;
}
.header-fixed.page-scroll-up .top-nav-cta.sample-cta a:hover{
    opacity: 0.5;
}
.header-fixed.page-scroll-up .top-nav-search.search-icon svg  path{
    stroke: var(--e-global-color-primary) !important;
}
.header-fixed.page-scroll-up .ue_hamburger svg path{
    fill: var(--e-global-color-primary);
}
@media screen and (max-width:1024px) {
    .header-fixed .dl-logo-img a {
        height: 122px;
    }
    .header-fixed.page-scroll-up .dl-logo-img a, .header-fixed.header-scrolled .dl-logo-img a {
        height: 86px;
        transform: scale(1);
    }
    .header-fixed.page-scroll-up .dl-logo-img a{
        overflow: visible;
    }
	.ca_btn_container:not(.ue_active_drop) .ca_btn{
		color: #ffffff !important;
    	background-color: #FFFFFF33 !important;
	}
}

/* Hide scrollbar for Chrome, Safari and Opera */
.dl-header .dl-side-nav .ue_menu .uc-list-menu::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.dl-header .dl-side-nav .ue_menu .uc-list-menu {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* End - Header */

/* Fix: Override Elementor AppleWebKit social grid spacing for dl-footer-social */
.e--ua-appleWebkit .dl-footer-social .elementor-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
}
  
.e--ua-appleWebkit .dl-footer-social .elementor-grid-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* br */
@media (min-width:1024px){
    .breakLine-d{
        display:inline-block;
    }
}

/* icon cta style */
.dl-icon-cta .elementor-button-text{
    padding: 10px 15px 10px 21px;
}
.dl-icon-cta .elementor-button-icon{
    margin-right: 3.5px;
}
.dl-icon-cta .elementor-button-icon svg{
    width: 29px;
    height: 29px;
}

img{
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

/* darkblue cta */
.darkblue-cta a:hover {
    opacity: 0.5;
}

/* SKU Master Template */
.dl-single-banner-section:after{
    content:"";
    width: 100%;
    height:100%;
    display: block;
    background:linear-gradient(180deg, rgba(0, 0, 0, 0) 50.07%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.dl-single-banner-content{
    max-width: 600px;
}

.dl-rtd-single-banner-content{
    /* margin: 0 auto;
    max-width: var(--content-width); */
}
.dl-rtd-single-banner-content > .e-con-inner{
    max-width: var(--content-width);
    margin: 0 auto;
}
.dl-rtd-single-banner-content > .e-con-inner > div{
    max-width: 600px !important;
    margin: 0;
}

@media (max-width:1024px){
    .dl-rtd-banner-section .dl-rtd-single-banner-content{
        position:relative !important;
    }
}
.dl-nutritional-info .e-n-tabs-heading{
    display: none !important;
}
.dl-nutritional-info .tabulator-header {
    border-radius: 10px !important;
}
.dl-nutritional-info .tabulator-tableholder{
        padding-top: 10px !important;
    background: #fff !important;
    margin-top: -10px !important;
    z-index: -1 !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
.dl-disclaimer-info p{
    margin-bottom: 0px !important;
}
.dl-nutritional-content-wrapper{
    max-width: 500px !important;
	/* overflow-y:auto !important; */
}
.dl-nutritional-info:before{
    height: 100px !important;
    bottom: 0;
    top: auto !important;
    z-index: 1;
}
/* .dl-nutritional-info {
    height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    transition: none !important;
  } */
  
  .dl-nutritional-info-content {
    height: 100% !important;
    position: relative !important;
	  margin:auto 0 0 0 !important;
  }
  
  .dl-nutritional-content-wrapper {
    will-change: transform !important; 
	overflow: auto;
  }
  
  .e-n-tabs-content > div{
      transition: display 0.5s ease !important;
  }
  
  @media (max-width:1024px){
      .dl-nutritional-content-wrapper{
          max-width: 100% !important;
      }
      .dl-nutritional-info {
        height: 100% !important;
      }
  }

.dl-faq-section {
    position: relative;
    overflow: hidden;
}

.dl-faq-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;

    background: linear-gradient(
        to bottom,
        rgba(0, 174, 239, 0) 0%,     
        rgba(0, 174, 239, 0) 5%,
        rgba(0, 174, 239, 0) 20.1%,
        rgba(0, 174, 239, 0) 80%,
        rgba(0, 47, 135, 1) 95.1%,   
        rgba(0, 47, 135, 1) 100%
    );
}

.dl-ir-listing .uc_post_list_box {
    border-bottom: white;
    border-bottom-style: solid;
    border-width: thin;
}

.dl-ir-listing .uc_more_btn::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 14px;
  margin-left: 0.5em;
  background: url('/wp-content/uploads/2025/05/Vector-next-angle.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}


.dl-ir-listing  .uc_post_list_content_inside {
    display: flex;
    flex-direction: column-reverse;
}

.dl-blur-container{
   backdrop-filter: blur(100px); 
}

@media screen and (max-width:768px) {
    .dl-faq-section .unlimited-elements-background-overlay .ue-item-inside{
        display: none;
    }
    .dl-faq-section::before{
        background: var(--e-global-color-primary) !important;
    }
}
/* .dl-rtd-banner-section .owl-item, .dl-rtd-banner-section .elementor-widget-ucaddon_card_carousel_custom_products{
    width: 100% !important;
} */
.dl-nutritional-info {
  height: 100vh ;
  overflow: hidden;
  position: relative;
    transition: none !important;
}
.nutri-inner-tabs .e-n-tabs-heading{
    display: flex !important;
}
.nutri-inner-tabs .e-n-tabs-heading .e-n-tab-title{
    background: none !important;
    padding: 0;
    margin:0 !important;
}
.nutri-inner-tabs .e-n-tabs-heading::before{
    content: "Packsize:";
    width: auto;
    height: auto;
    display: block;
    color: #ffffff;
    font-size: 20px;
	line-height:32px;
	margin-top:0px;
}

/* .dl-nutritional-info-content::after{
    content: "";
    width: 500px;
    height: 50px;
    position: absolute;
    bottom:0;
    background: linear-gradient(180deg, #00AEEF00 0%, rgb(0 174 239) 100%);
    z-index: 10;
} */
@media screen and (max-width:1024px) {
    .dl-nutritional-info-content::after{
        width: 100%;   
    }
}
/* .dl-nutritional-content-wrapper .dl-nutri-info-tabs{
    max-height: 550px !important;
	overflow-y:auto !important;
} */
.dl-nutritional-info{
    height: auto !important;
}
.single .dl-nutri-info-tabs .e-n-tabs-content .e-n-tabs-content{
    max-height: 550px !important;
	overflow-y:auto !important;
}
.single .nutri-inner-tabs .e-n-tabs-heading {
    /*position: fixed;*/
    /*top: 130px;*/
    gap:0;
}
.nutri-inner-tabs .e-n-tabs-heading{
        align-items: center;
}
.single .dl-nutri-info-tabs {
    /* margin-top: 50px;*/
}
.single .dl-nutritional-info > div{
    padding-bottom: 0;
}
.dl-nutri-info-tabs .e-n-tabs{
    overflow: hidden;
}
@media screen and (max-width:1210px) and (min-width:1025px) {
    .single .nutri-inner-tabs .e-n-tabs-heading{
        top: 170px;
    }
}

@media screen and (max-width:418px){
    .single .nutri-inner-tabs .e-n-tabs-heading{
        top: 160px;
    }
}
.dl-nutri-info-tabs .nutri-inner-tabs .e-n-tab-title{
    padding: 8px 10px 8px 10px !important;
}

.dl-nutri-info-tabs .tabulator .tabulator-row .tabulator-cell{
    text-align: left !important;
    white-space: wrap !important;
    height: auto !important;
    line-height: normal !important;
}

.single .dl-nutri-info-tabs .e-n-tabs-content .e-n-tabs-content > div > div > div:last-child{
    padding-bottom: 100px;
}

/*KN Pgae*/
/*tabs*/
.tabs-container .nutri-inner-tabs .e-n-tabs-content > div{
    overflow-x:hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tabs-container .nutri-inner-tabs .e-n-tabs-content > div::-webkit-scrollbar, .single .dl-nutri-info-tabs .e-n-tabs-content .e-n-tabs-content::-webkit-scrollbar  {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.tabs-container .nutri-inner-tabs .e-n-tabs-content > div, .single .dl-nutri-info-tabs .e-n-tabs-content .e-n-tabs-content {
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.dl-nutritional-content-wrapper .uc-items-wrapper, .dl-nutritional-info .uc-items-wrapper:not(.owl-carousel):first-of-type{
    flex-wrap: wrap !important;
    overflow-x: auto;
    margin-right: -85px;
    padding-right: 85px;
}

.dl-nutritional-content-wrapper  .ue-item, .dl-nutritional-info .uc-items-wrapper:first-of-type .ue-item{
    white-space: nowrap !important;
    min-width: auto !important;
}

@media screen and (max-width:1024px){
    .dl-nutritional-content-wrapper .uc-items-wrapper, .dl-nutritional-info .e-n-tabs-heading:first-of-type{
        flex-wrap: nowrap !important;
        overflow-x: auto;
        margin-right: -25px;
        margin-left: -25px;
        padding: 0 25px;
    }
    .nutri-inner-tabs .e-n-tabs-heading .e-n-tab-title-text{
        font-size: 16px !important;
    }
}
@media screen and (max-width:425px){
    /* .nutri-inner-tabs .e-n-tabs-heading::before{
        width:100%;
    } */
}
.tabs-container .dl-nutri-info-tabs .e-n-tabs{
    overflow: visible !important;
    gap: 20px !important;
}

/* all banner */
@media screen and (max-width:767px){
body .dl-single-banner-section:nth-child(1){
    min-height: 80vh !important;
}}


/* fixed header */
.header-fixed.page-scroll-up .main-header-cta .ca_btn {
    color: #ffffff !Important;
    background-color:var(--e-global-color-primary) !Important;
    border-color: var(--e-global-color-primary) !Important;
}

.header-fixed.page-scroll-up .ca_btn_container .ca_dropdown{
	box-shadow: 0px 0px 10px 0 #00000000 !Important;
}

.dl-nutritional-info > div > div {
    padding:0 !important;
}

.single .elementor-widget-dl_custom_key_features_section .layout-wrapper .disclamer{
    display: none;
}

/* listing filter dropdown issue */
.filter-select select option{
    color:#000000;
}
.filter-select select:focus{
	outline:none !important;
}
