/*------add smooth scroll----*/
html {
  scroll-behavior: smooth;
}

/*------desactivation select----*/
*{
	user-select:none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* css shop page description--------*/
.shop-description{
	margin-top:30px;
	text-align:center;
	opacity:0;
	border-radius:10px;
}

.tip-h2{
	color:rgba(46, 87, 151);
	padding: 15px 10px 10px 0px;
	font-weight:bolder;
}

.tip-h3{
	font-size:20px;
	color:rgba(95, 101, 109);
	padding: 0px 10px 10px 10px;
	font-weight:bold;
}

/*----------menu set to visibility hidden opacity none-----for not showing onload*/
.ast-desktop .ast-builder-menu{
	position:absolute;
	visibility:hidden;
	display:none;
}

.ast-desktop #ps_insert_menu{
	position: relative;
}

/* ----toggled class for menu------*/
.ast-desktop .ast-builder-menu.ps_show_menu{
	display:block;
	visibility: visible;
	min-width:250px;
	transform:translate(-50%,40px);
	background-color:#fff;
	transition: transform 450ms ease;
}

.ast-desktop .ast-builder-menu.ps_show_menu ul{
	display:flex;
	flex-direction:column;
}

/*-------------change font size of menu-----------------*/
.ast-desktop .ast-builder-menu.ps_show_menu ul a{
	font-size:1.1rem;
}

/*--------add border bottom to li------------------*/
.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1>li{
	border-bottom: 1px solid rgba(240, 240, 240, 0.9);
}

/*--------add border bottom to li------------------*/
.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1 li ul li{
	border-bottom: 1px solid rgb(210, 210, 210);
	padding: 10px 0;
}

/*-------add transition for animation-----*/
.bi{
	cursor:pointer;
	font-size:1.5rem;
	transition: all 350ms ease-in-out;
}

/*---toggle class for rotating hamburger menu----*/
.bi.ps_insert_menu_span_rotate{
	transform: rotate(90deg);
	color:#0075de;
}

/*-------set nav menu on desktop to scroll auto and box shadow------*/
.ast-desktop #ast-desktop-header nav.site-navigation{
	box-shadow:-2px 3px 3px 3px #0099ff;
	border-radius:5px;
	overflow-y:auto;
	overflow-x:hidden;
	height:500px;
	width:400px;
}

/*--set width of ul to 100% for a continous hover------*/
.ast-desktop .ast-builder-menu.ps_show_menu nav .main-navigation{
	min-width:100%;
}

.ast-desktop .ast-builder-menu.ps_show_menu nav .main-navigation ul{
	min-width:100%;
}


/*--------shifting submenu on hover--------*/
.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1>li.menu-item a{
	padding:10px;
}

.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1>li.menu-item{
	overflow:hidden;
	
}

.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1>li.menu-item:hover>ul.sub-menu{
	position: fixed;
	display:block;
	top:0;
	min-height:500px;
	background-color:#fff;
	transform:translate(90%,0%) !important;
}
/*------adding box-shadow to menu-----*/
.ast-desktop .ast-builder-menu.ps_show_menu ul, .ast-desktop .ast-builder-menu.ps_show_menu ul li:hover ul{
	border-radius:5px;
}

/*turning the arrows on li hover------*/
.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1 li.menu-item ul li .ast-icon.icon-arrow svg{
	color:gray !important;
	
}

.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1 li.menu-item ul li:hover .ast-icon.icon-arrow svg{
	transform-origin: 50% 50%;
	transform: rotate(0deg);
}

.ast-desktop .ast-builder-menu.ps_show_menu ul#ast-hf-menu-1 li.menu-item:hover .ast-icon.icon-arrow svg{
	transform: rotate(-90deg);
	transition:transform 450ms ease;
}

/*--------------add border on insert_menu_span_p_wrapper----*/

#insert_menu_span_p_wrapper.insert_menu_span_p_wrapper{
	border:2px transparent solid;
	Background-color: #edf1f3;
	display:flex;
	transition: all 350ms  ease-in-out;
}


/*-------------hover effect on insert menu  wrapper-------------*/
#insert_menu_span_p_wrapper.insert_menu_span_p_wrapper:hover{
	border:2px #cbd1d5 solid;
}

/*-------add fixed width to social email container div----------------*/
div.header-social-inner-wrap{
	width:235px;
	font-size: clamp(6px, 1vw + 3px, 1.4rem);
}


/*-----------center element Nos produits et hamburger and add style border ..---------*/
.ps_insert_menu_p#ps_insert_menu_p{
	padding:10px;
	margin:0 5px 0 0;
	font-size:1.2rem;
}

.ps_insert_menu_span#ps_insert_menu_span{
	display:flex;
	justify-content:flex-end;
	align-items: center;
	padding:5px;
	margin:0;
	font-size:1.3em;
}

/*----------change menu with images to row-reverse for image before text-------------------*/
/*----desktop---*/
nav.site-navigation ul#ast-hf-menu-1:first-child>li:first-child a:nth-of-type(1){
/* 	margin-left:110px; */
	margin-left:70px;
}
nav.site-navigation ul#ast-hf-menu-1 .menu-image-wrapper{
	display: flex;
    align-items: center;
    flex-direction: row-reverse;
	gap:10px;
}
/*----mobile----*/
div#ast-mobile-popup .ast-mobile-popup-content .ast-builder-menu-mobile #ast-hf-mobile-menu .menu-image-wrapper{
	display: flex;
    align-items: center;
    flex-direction: row-reverse;
	gap:5px;
	justify-content:flex-end;
}

/*add default class to back to top btn*/
.ast-desktop #ps_back_to_top_btn{
	position:fixed;
	top: 90%;
	right:2%;
	width:30px;
	height:30px;
	border-radius:50%;
	background-color:#66FFFF;
	border: 4px solid #0099FF;
	display:none;
	opacity:0;
}

/*---------------styling back to top btn mobile-------*/
.ast-header-break-point #ps_back_to_top_btn{
	position:fixed;
	top: 85%;
	right:10%;
	width:30px;
	height:30px;
	border-radius:50%;
	background-color:#66FFFF;
	border: 4px solid #0099FF;
	display:none;
	opacity:0;
	z-index:9999;
}

/*-------class added to back to top btn when scroll is >50px--------*/
#ps_back_to_top_btn.ps_back_to_top_btn{
	display:flex;
	opacity:1;
	z-index:999;
	transform:rotate(90deg);
	align-items:center;
	justify-content:center;
	cursor:pointer;
}

#ps_back_to_top_btn.ps_back_to_top_btn span{
	color: #0099FF;
}

/*add position sticky to header in mobile*/
body.ast-header-break-point header.site-header#masthead{
	position:sticky;
	top: 0;
	background-color: #fff;
}

/*----------add position sticky to desktop--------*/
.ast-desktop #masthead{
	position:sticky;
	top: 0;
	background-color: #fff;
}

/*------------remove padding from header div------*/
div.site-branding.ast-site-identity, div.ast-primary-header-bar.ast-primary-header.main-header-bar{
	padding-bottom:0;
	margin-bottom: 0;
}

/*--------arrange border radius for woolenter items-------*/
.product-item .actions a{
	border-radius: 50%;
}

.product-item .product-inner .image-wrap div.actions.style_two{
	opacity:1;
	visibility:visible;
	display: flex;
	align-items:center;
	max-width:4ch;
	border-radius: 50%;
	width:4ch;
	aspect-ratio:1/1;
}

/*----hide product on desktop and show them on hover--------*/
.ast-desktop .product-item .product-inner .image-wrap div.actions.style_two{
	opacity:0;
	visibility:hidden;
	display: flex;
	align-items:center;
	max-width:4ch;
	border-radius: 50%;
	width:4ch;
	aspect-ratio:1/1;
}

.ast-desktop .product-item:hover .product-inner .image-wrap div.actions.style_two{
	opacity:1;
	visibility:visible;
}

.product-item .product-inner .image-wrap div.actions.style_two:hover{
	background-color: #0099FF;
}

/*--------------align product to bottom--------*/
.woocommerce ul.products li.product.desktop-align-left, .woocommerce-page ul.products li.product.desktop-align-left {
	justify-content: flex-end;
}

/*-------------------arrange images in mobile-pop-up and desktop--------------------*/

#ast-mobile-popup .menu-image-wrapper img{
	width : 60px;
}

.menu-image-wrapper img{
	width : 60px;
}

/*------------------css styling du filtre category plugin--------------*/

select[name='ps_product_categories']{
	border: 2px dotted var(--ast-global-color-0);
	margin : 25px 0;
}

/*----------------add second class to keep search menu open------------*/
.ast-search-menu-icon.ast-dropdown-active-2 {
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

.ast-search-menu-icon.ast-dropdown-active-2.slide-search .search-form {
    visibility: visible !important;
    opacity: 1 !important;
}

.ast-header-search form.search-form .search-field, .ast-header-search .ast-dropdown-active-2.ast-search-menu-icon.slide-search input.search-field {
    width: 250px !important;
}

/*------------------decrease hight of notif bar------------------*/
p.woocommerce-store-notice.demo_store{
	padding:5px;
}

/*------------------remove default prices and default add to cart btn----------------*/
.archive span.price, .archive a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart{
	display:none !important;
}

/*------------remove default prices and default add to cart btn aso on home--------*/
span.price, a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart{
	display:none !important;
}



/*-------Woolentor add to cart --------*/
.product-item .actions a{
    border-radius:50% !important;
}

/*-----------------style the custom add to cart btn with custom price in archive-------------------*/

.archive .ps_custom_add_to_cart_btn, .ps_custom_add_to_cart_btn {
	display: flex;
	width:fit-content;
	justify-content: center;
	text-align:center;
	flex:1 0 1;
	align-items:center;
    padding: 10px 5px;
    font-size: 1rem !important;
	color:#ffff;
	background-color:#00adbd;
	border-radius:0 !important;
}

.archive .ps_custom_add_to_cart_btn:hover, .ps_custom_add_to_cart_btn:hover{
	background-color:#1fb6c4 ;
}

.archive .my_custom_price_html, .my_custom_price_html{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	color:#065368 !important;
	font-weight:bold;
}

.archive .my_custom_price_html del, .my_custom_price_html del{
	font-weight:normal !important;
}
.ast-header-break-point #search-field{
	width:150px !important;
}

.archive .new_add_to_cart_btn_and_price, .new_add_to_cart_btn_and_price{
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	gap:5px;
}

/*-----------------style sku_class------------------*/
.sku_class1, .sku_class2{
	font-size: clamp(12px, 0.9rem + 4px, 1.1vw);
}

/*-----------------decrease padding from widget filter price----------*/

.widget.woocommerce.widget_price_filter{
	padding:1em !important;
}

/*----------------add no repeat to background image-------------------*/

.home .swiper-wrapper .elementor-background-slideshow__slide__image{
	background-repeat: no-repeat;
}

/*------------------------- New badge in archive page----------------------- */
.ct-woo-card-extra.new-badge{
	position: absolute;
	color: red;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 50px;
	font-size: 15px;
	font-family: "Roboto", sans-serif;
	letter-spacing:2px;
	padding-left: 25px;
	padding-top: 25px;
	left: 0px;
	z-index: 2;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
	top: -10px;
}

/*---------------add white background for product in home and other and add border------------*/
li.product{
	background-color: #fff;
	padding: 10px !important;
	border-radius: 10px;
	border: solid 2px #00adbd;
}

/*----------------------- New badge in single product page page---------- */
.itsnew {
   padding: 5px 8px;
   font-size: 15px;
   font-weight: 600;
   color: red;
   margin-top: 5px;
   align-items: center;
   width: 45px;
   height: 35px;
   display: flex;
   border-radius: 50%;
   top: 10px;
}

/*----------------style footer visa images to center------------------------*/
.visa-images-wrapper{
	text-align: center;
	background-color: #f3f6f6;
	padding-bottom: 5px;
}

/*--------------adjust height of background image in sections-------------------------*/
.elementor-981 .elementor-element.elementor-element-c0d2b6c>.elementor-background-overlay,
.elementor-981 .elementor-element.elementor-element-c004815:not(.elementor-motion-effects-element-type-background),
.elementor-981 .elementor-element.elementor-element-4605b37:not(.elementor-motion-effects-element-type-background),
.elementor-981 .elementor-element.elementor-element-ea43054:not(.elementor-motion-effects-element-type-background) {
	background-size: 90% 65% !important;
}

/*------------------------sizing effect---------------------------------------*/

.mouvement2 {
/* animation properties */
  animation: move2 2s linear infinite;
}


/*----------------------keyframes--------------------------*/

@keyframes move2 {
  0% {
    opacity:0;
  }
  50% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

/*---------------------media screen-------------------------*/

@media (max-width: 767px) {
    .elementor-981 .elementor-element.elementor-element-9a6f39c:not(.elementor-motion-effects-element-type-background), .elementor-981 .elementor-element.elementor-element-9a6f39c > .elementor-motion-effects-container > .elementor-motion-effects-layer {
        background-position: -0 -0;
        background-repeat: repeat;
        background-size: cover;
    }
}

@media screen and (min-width:901px) {
img {
    pointer-events: none;
  -webkit-touch-callout: none;
}
}