body{
	background-color: #F9FAFB!important;
}	
.inner_new_banner{
	padding: 10px 0px;
}	
.inner_new_banner_bx{
	position: relative;
	height: 192px;
	display: flex;
    justify-content: space-between;
    gap: 10px;
	border-radius: 16px;
	overflow: hidden;
	padding: 32px;
	align-items: center;
}

.inner_new_banner_bx .heading-title, 
.inner_new_banner_bx .inner_new_banner_btns {
    position: relative;
    z-index: 9;
}
.inner_new_banner_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}
.inner_new_banner_bx .heading-title h1 {
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
}
.inner_new_banner_bx .heading-title p {
    color: rgb(255 255 255 / 0.9);
    font-size: 16px;
    line-height: 24px;
}
.inner_new_banner_bx .heading-title {
    max-width: 550px;
}
.inner_new_banner_btns .btn {
    height: 24px;
    font-size: 12px;
    line-height: 16px;
    padding: 0 10px;
}
.inner_new_banner_btns .btn-primary:not(:hover){
  background-color: #c1d33c;
  color: #1d3976;
}
.inner_new_banner_btns .btn-secondary:not(:hover){
  background-color: rgb(255 255 255 / 0.2);
  border-color: rgb(255 255 255 / 0.2);
  color: #fff;
}

.shopNew_grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.shopNew_col {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
}
.shopNew_product {
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.6s;
    height: 100%;
}
.shopNew_product_thumbs {
    height: 314px;
    width: 100%;
    position: relative;
    transition: all 0.6s;
    overflow: hidden;
}
.shopNew_product_thumbsImg{
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shopNew_product:hover .shopNew_product_thumbsImg{
	transform: scale(1.1);
	transition: all 0.6s;
}
.shopNew_product:hover{
	transform: translateY(-4px);
	transition: all 0.6s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.shopNew_product_fixBudge {
    position: absolute;
    z-index: 9;
    top: 15px;
    width: calc(100% - 15px);
    margin: auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shopNew_product_fixBudge .shopNew_product_logo img {
    width: auto;
    max-width: 81px;
    height: auto;
    max-height: 25px;
    object-fit: scale-down;
}
.shopNew_product_budge_btn {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.shopNew_product_budge_btn .shopNew_product_budgeBtn {
    height: 28px;
    background-color: #1D3976;
    border-radius: 8px;
    color: #fff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    min-width: 55px;
}
.shopNew_product_budge_btn .shopNew_product_budge_rating{
	background-color: #fff;
	box-shadow: 0px 0px 6px 0px #00000052;
	color: #627D8E;
	gap: 10px;
}
.shopNew_product_budge_btn .shopNew_product_budge_rating .starBx {
    color: #FFC300;
    font-size: 20px;
    font-weight: 700;
}
.shopNew_product_offer {
    position: absolute;
    bottom: 0;
    z-index: 9;
    text-align: center;
    background-color: #E72080;
    margin: auto;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    border-radius: 27px 27px 0px 0px;
    font-size: 16px;
    color: #fff;
    max-width: calc(100% - 40px);
    margin: auto;
    width: 100%;
    line-height: 18px;
}
.shopNew_product_dec {
    padding: 15px;
        display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 314px);
}
.shopNew_product_title {
    color: #1D3976;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 37px;
}
.shopNew_product_meta {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 13px;
}
.shopNew_product_meta span{
	font-size: 16px;
	line-height: 100%;
	font-weight: 400;
	color: #333;
}
.shopNew_product_color {
    display: flex;
    gap: 4px;
}
.shopNew_colorVariantItem{
	 width: 20px;
    height: 20px;
    border-radius: 100%;
    position: relative;
    margin: 0 -9px 0 0;
    
}
.shopNew_colorVariantItem label {
    margin: 0;
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shopNew_colorVariantItem input{
	width: 1px;
	height: 1px;
	position: absolute;
	visibility: hidden;
}
.shopNew_colorVariantItem input:checked + label{
	border: 1px solid red;
	padding: 2px;
}
.shopNew_colorVariantItem .colorVariantItem_total{
	background-color: #EAEAEA;
}
.shopNew_product_dec_ftr {
    display: flex;
    justify-content: space-between;
    padding: 9px 0 0px;
    border-top: 1px solid #CDD9FF;
    align-items: center;
    flex-wrap: wrap;
}
.shopNew_product_price {
    color: #1D3976;
    font-size: 18px;
    font-weight: 700;
}
.shopNew_product_action .btn_actions {
    width: 34px;
    height: 34px;
    border: 1px solid #eee;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: inherit;
    background-color: #fff;
    padding: 4px;
}
.shopNew_product_action .btn_actions:focus{
  outline: none;
}
.shopNew_product_action .btn_actions:hover, 
.shopNew_product_action .btn_actions.active{
	background-color: #eee;
}
.shopNew_product_action .btn_actions svg, 
.shopNew_product_action .btn_actions img {
    width: 18px;
    height: 18px;
    object-fit: scale-down;
}
.shopNew_product_action .btn_actions svg path {
    stroke: #767676;
}
.shopNew_product_action .btn_actions:hover svg path, 
.shopNew_product_action .btn_actions.active svg path {
    stroke: #0b1264;
}

.shopNew_setion{
	padding: 32px 0;
}

/**filter search**/
.filter_section_bx {
    background: #fff;
    padding: 14px 20px;
    box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.filter_section_bx .filterForm-group{
    flex: 1;
    position: relative;
}
.filter_section_bx .filterForm-free-search{
    width: 345px;
    flex: none;
}
.filterForm-group .input-group {
    border: 1px solid #d1d5db;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    height: 41px;
}
.filterForm-group .input-group .form-control {
    height: 100%;
    border: none;
    border-radius: 0px;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
}
.filterForm-group .input-group .input-group-prepend .input-group-text {
    color: #1d3976;
    font-weight: 700;
    font-size: 16px;
    padding: 0 17px;
    background-color: #f9fafb;
    border: none;
    border-left: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-control-search-icon {
    height: 100%;
    margin: 0px 9px;
    flex: none;
}
.filterForm-group .input-group:hover{
	border-color: #e7257f;
}
.filterForm-group .input-group:hover .form-control-search-icon{
	color: #e7257f;
}
.filterForm-group .form-control{
	border: 1px solid #d1d5db;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    height: 41px;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
}
.filterForm_btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    line-height: 14px;
}
.filterForm_btn svg{
	transition: all 0.1s;
}
.filterForm_btn:hover svg, 
.form-control-trigger:hover .filterForm_btn svg{
	transition: all 0.1s;
	rotate: 180deg;
	color: #e7257f;
}
.filterForm_btn:hover, 
.form-control-trigger:hover .filterForm_btn{
	color: #e7257f;
}
.filterForm_clr_span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: relative;
    top: 2px;
}

 .filterForm-tab-wrapper {
    display: inline-flex;
    background: #f3f3f3;
    padding:0px 4px;
    border-radius: 30px;
    gap: 4px;
    height: 100%;
    align-items: center;
  }
  .filterForm-tab-wrapper input {
    display: none;
  }
  .filterForm-tab-wrapper .product_filter_type {
    padding: 6px 6px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    background: transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-size: 10.5px;
    margin: 0;
    font-weight: 700;
    border: none;
  }
  .filterForm-tab-wrapper .product_filter_type.active {
    background: #e7257f;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .filterForm_filterBtn {
    height: 100%;
    border: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #6b7280;
    font-weight: 500;
    font-size: 16px;
    padding: 0 12px;
    min-width: 141px;
   
}
.filterForm_filterBtn:hover {
    border-radius: 30px;
    background-color: #fdf2f8;
    color: #e7257f;
}
.filterForm_filterBtn:focus{
	outline: none;
}
.filterForm_dropdown_bx {
    padding: 17px;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    width: 100%;
    border: 1px solid #efefef;
    border-radius: 6px;
    min-width: 252px;
    z-index: 999;
    display: none;
}
.filterForm_dropdown_bx input[type="number"] {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: number-input;
}
.form-control-trigger:hover .filterForm_dropdown_bx{
	display: block;
}

.form-control-trigger:hover .form-control {
    border-color: #E72080!important;
    border-radius: 30px 30px 0 0;
}

 .filterForm-price-box {
    width: 100%;
    color: #333;
  }

  .filterForm-price-box .filterForm_h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .filterForm-price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
    margin: 0px;
  }
  .filterForm-price-option:hover{
  	background-color: #f6f6f6;
  }
  .filterForm-price-option input {
    display: none;
  }
  .filterForm-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }

  .filterForm-price-option input:checked + .filterForm-radio {
    border-color: #e61e73;
  }

  .filterForm-price-option input:checked + .filterForm-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #e61e73;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .filterForm-price-text {
    flex: 1;
    text-align: right;
    margin-right: 10px;
  }

  .filterForm-price-box hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 12px 0;
  }
  .filterForm-range-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
  }

  .filterForm-range-inputs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    align-items: center;
    color: #666;
  }

  .filterForm-range-input {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
  }

  .filterForm-range-input span {
    color: #888;
    margin-left: 4px;
  }

  .filterForm-range-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    text-align: right;
  }

  /* Button */
  .filterForm-submit-btn {
    width: 100%;
    background: #e61e73;
    border: none;
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }

  .filterForm-submit-btn:hover {
    opacity: 0.9;
  }


.qf-box {
  width: 100%;
  color: #2c3e50;
}

.qf-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.qf-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.qf-btn {
   padding: 6px 11px;
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #4a5a6a;
    cursor: pointer;
    transition: all 0.2s ease;
}
.qf-btn:hover {
  background: #f4f6f9;
}
.qf-btn:focus{
	outline: none;
}
.qf-divider {
  border: none;
  border-top: 1px solid #e6e9ee;
  margin: 14px 0;
}
.qf-custom-title {
  font-size: 13px;
  color: #8a96a3;
  margin-bottom: 8px;
}
.qf-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9dee6;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
}
.qf-input::placeholder {
  color: #a6b0bb;
}
.qf-submit {
  width: 100%;
  padding: 12px;
  background: #1f3b77;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.qf-submit:hover {
  opacity: 0.92;
}  

.qf-presets-content .shop_sidebarUl{
  max-height: 200px;
}
.qf-presets-content ul.shop_sidebarUl li {
    margin: 0;
    padding: 8px 4px;
}
.qf-presets-content ul.shop_sidebarUl li:hover{
   background-color: #f6f6f6;
}
.qf-presets-content ul.shop_sidebarUl li label{
	color: #4b5563;
	font-size: 16px;
	font-weight: 400;
}
.qf-presets-content .shop_sidebarUl .customCheckbox input:checked + label::before{
	background-color: #e7257f;
}
.qf-presets-content .shop_sidebarUl .customCheckbox input:checked + label{
	color: #111827;
	font-weight: 700;
}
.qf_color {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    margin-left: 10px;
    margin-top: 3px;
    border: 1px solid #efefef;
}

.filterForm_dropdown_bx_large{
	min-width: 750px;
}
.filterForm_events_grid {
    display: flex;
    gap: 30px;
}
.filterForm_events_col {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
}
.filterForm_events_grid .filterForm_h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #1d3976;
        font-weight: 900;
        font-size: 16px;
        line-height: 14px;
}
.filterForm-events_ul ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.filterForm-events_ul ul li{
	padding: 4px 0;
	font-size: 16px;
	color: #4b5563;
	transition: all 0.4s;
}
.filterForm-events_ul ul li:hover{
  padding-right: 6px;
  font-weight: bold;
  color: #e7257f;
  transition: all 0.4s;
}
.filterForm-events_ul ul li a{
	color: inherit;
	font-size: inherit;
}
.filterForm_events_ftr {
    padding: 10px 0 5px;
    border-top: 1px solid #efefef;
    margin-top: 15px;
    display: flex;
    justify-content: end;
}
.filterForm_events_link {
    text-decoration: underline!important;
    font-size: 16px;
	color: #4b5563;
}
.filterForm_events_link:hover{
  color: #e7257f;
}
 

  .u-open-btn {
    margin: 40px;
    padding: 12px 20px;
    cursor: pointer;
  }
  .u-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9999;
  }
  .u-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .u-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    padding: 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
  }
  .u-sidebar.active {
    transform: translateX(0);
  }
 .u-close-btn {
    position: static;
    top: 12px;
    right: 12px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
  }
  .u-sidebar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    height: 60px;
    padding: 0 0 20px;
    border-bottom: 1px solid #efefef;
}
.u-sidebar_header h2{
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: #1d3976;
	margin: 0px;
}
.u-sidebar_foot {
    height: 60px;
    padding: 20px 0px 0px;
    border-top: 1px solid #efefef;
}
.u-sidebar_content {
    max-height: calc(100% - 120px);
    padding: 20px 0 20px 10px;
    overflow: auto;
    height: calc(100% - 120px);
}
.u-sidebar_foot .btn-group{
	display: flex;
	gap: 20px;
}
.u-sidebar_foot .btn-group .btn{
	flex: 1;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
    padding: 0 5px;
}
.u-sidebar-group {
    margin-bottom: 28px;
}
.u-sidebar-heading {
    color: #1d3976;
    font-weight: 700;
    font-size: 19px;
    margin: 0 0 10px;
}
.u-sidebar-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.u-sidebar-div {
    position: relative;
}
.u-sidebar-div input{
    width: 1px;
    height: 1px;
    position: absolute;
    visibility: hidden;
}
.u-sidebar-btnLink {
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    padding: 7px 14px;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    cursor: pointer;
    margin: 0px;
}
.u-sidebar-btnLink:hover{
   border-color: #e7257f;
}
.u-sidebar-btnBx {
    flex: 1 1 calc(33.333% - 10px);
    text-align: center;
    color: #6b7280;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(33.333% - 10px);
}
.u-sidebar-btnBx:hover, 
.u-sidebar-btnBx.active, 
.u-sidebar-div input:checked + label{
	    border-color: #e7257f;
	    background-color: #fdf2f8;
	    color: #1d3976;
}
.u-sidebar-group .shop_sidebarUl label {
    color: #4b5563;
    font-size: 16px;
}
.u-sidebar-group .shop_sidebarUl li{
	margin: 0px;
}
.u-sidebar-group .shop_sidebarUl .customCheckbox input:checked+label:before {
    background-color: #e7257f;
}
.u-sidebar-group .shop_sidebarUl .customCheckbox{
	padding: 6px 0px;
}
.u-sidebar-group .shop_sidebarUl .customCheckbox:hover{
	background-color: #f9fafb;
}
.u-sidebar-group .shop_sidebarUl .customCheckbox:hover label:before{
   border-color: #e7257f;
}
.u-sidebar-group .shop_sidebarUl .numberBadge{
   color: #9ca3af;
   font-size: 10px;
}
.u-sidebar-color {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.u-sidebar_color_box {
    position: relative;
}
.u-sidebar_color_box input {
    position: absolute;
    visibility: hidden;
    width: 1px;
    height: 1px;
}
.u-sidebar_color_box .u-sidebar_color_label {
    padding: 2px;
    transition: all 0.1s;
    cursor: pointer;
}
.u-sidebar_color_box .u-sidebar_color_label span {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}
.u-sidebar_color_box input:checked + label{
	border: 1px solid #e7257f;
    border-radius: 100%;
}
.u-sidebar_color_box .u-sidebar_color_label:hover{
	transform: scale(1.1);
	transition: all 0.1s;
}
.shopNew_product_meta_sku {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search_filter_reseller_label.active,
.search_filter_category_label.active{
  color: #e7257f;
}

.tabcontentProduct {
  display: none;
}	
.chooz-tab-button {
    padding: 20px 0 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.chooz-tab-button .tablinksProduct {
    background-color: inherit;
    border: none;
    padding: 16px;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #6B7280;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}
.chooz-tab-button .tablinksProduct.active {
    color: #1D3976;
    font-weight: 700;
    border-bottom-color: #E7257F;
}
.chooz-tab-button .tablinksProduct:hover{
	color: #E7257F;
}
.chooz-tab-button .tablinksProduct:focus{
	outline: none;
}
.chooz-tab-guide{
	padding: 40px 0;
}
.chooz-tab-guide > h2{
  color: #1d3976;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}
.gift_guide_content {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    margin: 40px 0;
}
.gift_guide_cta {
     background: linear-gradient(
    90deg,
    #1D3976 0%,
    #1e40af 100%
  );
    padding:80px 40px;
    text-align: center;
    border-radius: 30px;
}
.gift_guide_cta_h3 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}
.gift_guide_cta p {
    color: #e5e7eb;
    font-size: 20px;
    margin: 20px 0;
}
.gift_guide_cta_bts {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.gift_guide_cta_bts .btn-primary {
    background: #22c55e;
    color: #ffffff;
    font-weight: 600;
    border-color: #22c55e;
}
.gift_guide_cta_bts .btn-primary:hover{
	opacity: 0.8;
}
.gift_guide_cta_bts .btn-secondary{
	 background: #ffffff;
  color: #1e40af;
  font-weight: 600;
}

@media only screen and (max-width: 1400px){
.inner_new_banner .container, 
.filter_section .container, 
.shopNew_setion .container{
  max-width: calc(100% - 30px);
  padding: 0;
}
.filter_section_bx .filterForm-group{
	flex: none;
}	
}
@media only screen and (max-width: 1169px){
.filter_section {
    position: sticky;
    top: 71px;
    z-index: 999;
}
}
@media only screen and (max-width: 1024px){
 .shopNew_col {
    flex: 1 1 calc(33.333% - 15px);
    max-width: calc(33.33% - 15px);
}	
.shopNew_grid{
	justify-content: center;
}
.filter_section_bx .filterForm-free-search {
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
}
}
@media only screen and (max-width: 860px){
 .shopNew_col {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
}
.filter_section_bx{
	padding: 14px;
}
.filterForm-group .input-group, 
.filterForm-group .form-control, 
.filterForm-tab-wrapper{
	height: 36px;
	font-size: 14px;
}	
.filterForm-group .input-group .form-control, 
.filterForm_filterBtn{
	font-size: 14px;
}
.filterForm-group .input-group .input-group-prepend .input-group-text{
	gap: 4px;
	font-size: 14px;
    padding: 0 10px;
}
.filterForm-group .input-group .input-group-prepend .input-group-text svg {
    width: 18px;
    height: auto;
    flex: none;
}
.filterForm-group.form-control-trigger {
    display: none;
}
.filter_section_bx.active .filterForm-group.form-control-trigger{
	display: block;
}
.filterForm_dropdown_bx{
	  max-width: 252px;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 400px;
    overflow: auto;
}
.filter_section_bx .filterForm-group{
	position: static;
}
.filterForm_events_grid{
	flex-wrap: wrap;
	flex-direction: column;
}
.filterForm_events_col {
    flex: 1 1 100%;
    max-width: 100%;
}
.filterForm_dropdown_bx_large {
    min-width: 92%;
}
.filter_section_bx .filterForm-group.filterForm-free-search{
    position: relative;
}
}
@media only screen and (max-width: 580px){
.shopNew_product_thumbs {
    height: 260px;
 }	
.shopNew_product_offer{
	max-width: calc(100% - 20px);
	padding: 0 10px;
	text-align: inherit;
	font-size: 14px;
}
.shopNew_product_dec_ftr{
	  justify-content: center;
    gap: 10px;
    flex-direction: column;
} 
.filter_section_bx .filterForm-group {
        flex: auto;
   }
.filter_section{
	top: 68px;
} 
.inner_new_banner_bx{
	flex-direction: column-reverse;
	padding: 30px 15px; 
}
.inner_new_banner_bx .heading-title{
	margin: 0px;
}
.inner_new_banner_bx .heading-title h1 {
    font-size: 20px;
    line-height: 22px;
}
.inner_new_banner_bx .heading-title p {
    font-size: 14px;
    line-height: 20px;
}
.inner_new_banner_btns{
	 justify-content: flex-start;
    width: 100%;
}  
}
@media only screen and (max-width: 520px){
 .shopNew_col {
    flex: 1 1 calc(100% - 15px);
    max-width: calc(100% - 15px);
}	
    .shopNew_product_thumbs {
        height: 300px;
 }
}

/*** 29/12/2025 */
.search_filter_category li input[type=checkbox],
.search_filter_reseller_catalog li input[type=checkbox],
.search_filter_event_catalog li input[type=checkbox]{
	opacity: 0!important;
}
 
.filterForm_events_ftr {
    align-items: center;
    gap: 10px;
}
 
 
.clear_stock_filter,
.clear_budget_filter,
.clear_color_filter{
    flex: none;
    width: auto;
    padding: 10px;
    font-weight: 500;
    color: #1d3976;
    text-decoration: underline;
    font-size: 16px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
 
.boost_with_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 0;
}
.shopNew_product{
	overflow: unset;
}
 
.admin_action_serach_page {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0); 
    box-shadow: 0 24px 40px rgb(0 0 0 / .12);
    background: #FFF!important;
    top: 98%;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0 0 10px 10px;
    padding: 15px;
    z-index: 99;
    bottom: auto;
}

h2.shopNew_product_title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.shopNew_col {
    position: relative;
}
.shopNew_col:hover {
	z-index: 99;
}
 
 
.shopNew_col:hover .admin_action_serach_page {
    opacity: 1;
    visibility: visible;
    //transform: translateY(190px);
}
.shop_sidebarUl .customCheckbox {
 
    justify-content: start!important;
}
.prodcut_rating_parent > label {
    width: auto;
}
 
.rating_type_form_div .update_product_rating_from_front {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 10px auto 0;
    border: 1px solid #1d3976;
    height: 29px;
    border-radius: 14px;
    background-color: #1d3976;
    color: #fff;
    cursor: pointer;
}
 
a.make_admin_action_front.floating_Iocns_admin_action {
    display: flex;
    color: #fff;
}
label.show_variation_image{
    border: 1px solid #dfdbdb;
}
 
.activeColor img {
	    padding: 0;
    margin: -5px -2px 0 0;
}
.merge_product_from_front_div,
.assign_rating_from_front_div{
    width: 100%;
}

.filterForm-free-search .input-group-text{
	cursor: pointer;
}
 
@media (max-width:768px){
	/* Responsive table – horizontal scroll */
#bulk_action_form .table {
	  width: 100%;
	  overflow-x: auto;
	  -webkit-overflow-scrolling: touch;
	}
	/* Keep table wide so it can scroll */
#bulk_action_form .table table {
	  width: 100%;
	  border-collapse: collapse;
	}
	/* Optional: better readability */
#bulk_action_form .table th,
#bulk_action_form .table td {
	  white-space: nowrap;
	  padding: 8px 10px;
	  border: 1px solid #ddd;
	}
	.merge_product_from_front_div,
	.assign_rating_from_front_div{
    width: 100%;
    overflow: auto;
}
.modal-window.large, .modal-window.small {
    width: 91%;
    margin: 70px auto 0;
}
}
.u-overlay {

    transition: opacity 0.3s ease;

    backdrop-filter: blur(3px);

}

.u-sidebar {

    width: 410px;

}

.u-sidebar .u-sidebar_foot {

    position: absolute;

    right: 0;

    bottom: 24px;

    width: 100%;

    padding: 20px;

    background: #FFFF;

}
 
.u-sidebar button#clearFilters {

    border: 1px solid #d1d5db;

    background: #FFF;

    color: #333!important;

    text-decoration: none!important;

}

.u-sidebar button#clearFilters:hover {

	background: #f9fafb;

}
 
.sidebar_logo_all .u-sidebar-btnLink {

    font-size: 16px;

    padding: 7px 14px;

    border: 1px solid #d1d5db;

    border-radius: 4px;

    font-size: 16px;

    font-weight: 700;

    color: rgb(107 114 128);

}
 
 
.sidebar_logo_all .u-sidebar-btnBx:hover, 
.sidebar_logo_all .u-sidebar-btnBx.active, 
.sidebar_logo_all .u-sidebar-div input:checked + label {
 
    color: rgb(107 114 128);

}

.sidebar_logo_all .u-sidebar-btnLink:hover {
	border-color: #9ca3af;
}

button.show_more_btn,
button.show_less_btn {
	background: none;
	padding: 0;
	border: 0;
	cursor: pointer;
	color: rgb(231 37 127);
	text-decoration: underline;
	font-weight: 700;
	margin:5px 0 0;
}
 
.sidebar_logo_all {

    min-height: 90px;

    max-height: 340px;

    overflow: auto;
 
    /* Firefox */

    scrollbar-width: none;
 
    /* IE / old Edge */

    -ms-overflow-style: none;

}
 
/* Chrome, Edge, Safari */

.sidebar_logo_all::-webkit-scrollbar {

    width: 0;

    height: 0;

}

.u-sidebar-btn {
 
    align-content: flex-start;

}
 
.u-sidebar .colorVariantItem{

	transition: transform 0.3s ease;

}

.u-sidebar .colorVariantItem:hover {

	transform: scale(1.1);

}
 
.u-sidebar {
 
    padding: 20px 20px 20px 0;
 
}

.u-sidebar_header {

    padding: 0 0 0 20px;

}

.shopNew_col .new_productBox_budge {
    position: absolute !important;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
 
.shopNew_col .shopNew_product_fixBudge {
    position: unset;
    z-index: 9;
    top: 0;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    height: 100%;
}
.shopNew_col .shopNew_product_logo {
    width: auto;
    text-align: left;
    width: fit-content;
    left: 0;
    right: auto;
    position: absolute;
    left: 10px;
    position: absolute;
    top: 15px;
    left: 10px;
}
.shopNew_col .shopNew_product_logo {
    width: auto;
    text-align: left;
    width: fit-content;
    left: 0;
    right: auto;
    position: absolute;
    left: 10px;
}
 
.shopNew_col  .btn-groups .budgeLinksTxt {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    flex: auto;
    max-width: fit-content;
    height: 15px;
    font-size: 12px;
    padding: 14px 9px;
    border-radius: 10px;
    background: #1d3976;
}
 
.shopNew_col  .productBox_budge_top {
    top: 10px;
    left: auto;
    right: 10px;
}
span.clear_filter.clear_catalog_category_filter {
    cursor: pointer;
}

.filterForm-events_ul ul li:hover {
     padding-right: 0; 
     font-weight: unset;
    color: #e7257f;
    transition: all 0.4s;
}
 
.filterForm_dropdown_bx.filterForm_dropdown_bx_large.filterEventDropdown input.search_reseller_catalog,
.filterForm_dropdown_bx.filterForm_dropdown_bx_large.filterEventDropdown input.search_category{
	position: absolute!important;
}
 html[dir="ltr"] .u-sidebar {
    padding: 20px 0px 20px 20px;
}
 
html[dir="ltr"] .u-sidebar_content {
    padding: 20px 0 20px 20px;
}
.u-sidebar_content {
    overflow: hidden;
    overflow-y: scroll;
}
.colorVariantSide {
 
    gap: 10px;
}
 
.search_filter_reseller_label,
.search_filter_category_label,
.btn_actions {
	cursor: pointer;
}
.product_name_search_btn {
	background: none;
	border: 0 !important;
	outline: none !important;
	cursor: pointer;
}
.mobile_filter_close{
    width: auto;
    height: auto;
    background:none;
    color: #e7257f;
    border:0;
    font-size: 18px;
    border-radius: 8px;
    padding:0px;
    cursor:pointer;
}

.colorVariantSide {

    gap: 6px;

    justify-content: center;

}
@media (min-width:640px){

.mobile_filter_close.close-btn.upload_logo_pop_up_ok_btn {

	display: none!important;

}

}

.tabcontentProduct {
  display: none;
}   
.chooz-tab-button {
    padding: 20px 0 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.chooz-tab-button .tablinksProduct {
    background-color: inherit;
    border: none;
    padding: 16px;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #6B7280;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}
.chooz-tab-button .tablinksProduct.active {
    color: #1D3976;
    font-weight: 700;
    border-bottom-color: #E7257F;
}
.chooz-tab-button .tablinksProduct:hover{
    color: #E7257F;
}
.chooz-tab-button .tablinksProduct:focus{
    outline: none;
}
.chooz-tab-guide{
    padding: 40px 0;
}
.chooz-tab-guide > h2{
  color: #1d3976;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}
.gift_guide_content {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    margin: 40px 0;
}
.gift_guide_cta {
     background: linear-gradient(
    90deg,
    #1D3976 0%,
    #1e40af 100%
  );
    padding:80px 40px;
    text-align: center;
    border-radius: 30px;
}
.gift_guide_cta_h3 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}
.gift_guide_cta p {
    color: #e5e7eb;
    font-size: 20px;
    margin: 20px 0;
}
.gift_guide_cta_bts {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.gift_guide_cta_bts .btn-primary {
    background: #22c55e;
    color: #ffffff;
    font-weight: 600;
    border-color: #22c55e;
}
.gift_guide_cta_bts .btn-primary:hover{
    opacity: 0.8;
}
.gift_guide_cta_bts .btn-secondary{
     background: #ffffff;
  color: #1e40af;
  font-weight: 600;
}
.gift_guide_content img {
    width: auto;
    max-width: 100%;
}