.below-menu a {
	font-weight: 700;
}

.cart_sticky {
	display: none !important;
	opacity: 0 !important;
	visibility:  hidden !important;
	height: 0 !important; 
}

.sidebar-product-info > h1 {
	text-align: left;
}

.button-add-2 {
	font-size: 13px;
}

.button-add-2 .quantity,
.button-add-2 button.add_to_cart {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;	
}
	.button-add-2 button.add_to_cart.disabled {
		opacity: 0.5;
		/*pointer-events: none;*/
	}
	.button-add-2 button.add_to_cart.disabled:hover {
		background: var(--theme-red);
		color: white;
	}

.button-add-2 .minus {
	/*border-right: none;*/
	pointer-events: all;
	border-radius: 4px 0 0 4px;
}

.button-add-2 .plus {
	/*border-left: none;*/
	pointer-events: all;
	border-radius: 0 4px 4px 0;
}

.button-add-2 .qty {
	width: calc(100% - 60px);
	pointer-events: all;
	background: white !important;
	color: black !important;
}

.button-add-2 .minus:hover,
.button-add-2 .qty:hover,
.button-add-2 .plus:hover {
	background: var(--theme-red);
	border-color:var(--theme-red);
	color: white;	
}
.button-add-2 .qty:hover {
	background: black;
	border-color:black;
}

@media screen and (max-width: 1024px){
	.button-add-2 .minus:hover,
	.button-add-2 .plus:hover {
		background: var(--theme-red);
		border-color:var(--theme-red);
		color: white;	
	}
	.button-add-2 .qty:hover,
	.button-add-2 .qty:active {
		background: black;
		border-color:black;
	}
	.button-add-2 .minus:active,	
	.button-add-2 .plus:active {
		background: var(--theme-red);
		border-color:var(--theme-red);
		color: white;	
	}
}

.button-add-2 button.add_to_cart {
	margin-bottom: 15px;
	background: var(--theme-red);
	border: var(--theme-red);
	color: white;
	padding: 8px 15px;
	cursor: pointer;
	pointer-events: all;
	transition-duration: 0.4s;
	border-radius: 6px;
}
	.button-add-2 button.add_to_cart:hover {
		background: var(--theme-red-hover);
	}

.button-add-2 .obs_title1 {
	position: relative !important;
	width: initial !important;
	float: initial !important;
	font-style: italic;
	margin-bottom: 5px;
}

.button-add-2 textarea {
	padding: 5px;
	height: 80px;
	max-width: 380px;
}

select[name="variant_selector"],
.extra-product select {
  width: 100%;
  max-width: 380px;
  padding: 8px 10px;
  height: 40px;
  border: 2px solid var(--theme-red);
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin: 0 auto;
	border-radius: 6px;
}
	select[name="variant_selector"].active,
	.extra-product select.active {
		border: 1px solid black;	  
	}
	select[name^="extra_selector_"] {
		border-color: #333;	  
	}
	
label[for^="extra_selector_"] { font-weight: normal; font-style: italic; }
span.variant {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
}
label[for="variant_selector"] {
	font-size: 13px;	
	font-weight: 400;
	font-style: italic;	
}

@media screen and (max-width: 991px){
	.sidebar-product-info > h1 {
		text-align: center;
	}
	.button-add-2 {
		text-align: center;
	}
	.button-add-2 .quantity,
	.button-add-2 button.add_to_cart {		
		margin: 5px auto;		
		max-width: 380px;
	}
	label[for="variant_selector"] {
		display: block;
		text-align: center;
	}
	span.variant {
		display: block;
		text-align: center;
	}
}



/*
	=======================================================================================================
	- CART MODAL - 	
	=======================================================================================================
*/

	
	#modal_product_cart > div .buttons  {
		padding: 10px;
		padding-bottom: 25px;
	}
		#modal_product_cart > div .buttons button {			
			width:100%;
			margin-top:10px;
			background: white;
			border: 1px solid var(--theme-red);			
			color: black;				
			font-size:13px;
			padding:10px;
			transition-duration: 0.3s;
			text-transform: uppercase;
			opacity: 1;			
			transition-duration: 0.4s !important;
			font-weight: 700;
			border-radius: 6px;
		}
		#modal_product_cart > div .buttons button.checkout {
			background: var(--theme-red);
			border: 1px solid var(--theme-red);
			color: white;
			border-radius: 6px;
		}
			#modal_product_cart > div .buttons button:hover {
				border: 1px solid black;
				background: black;
				color: white;				
				transition-duration: 0.4s !important;
			}	


#modal_product_cart {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;	
	height: 100%;
	z-index: 1000;
	background: none;	
	display: block;
	transition-duration: 0.3s;
	pointer-events: none;
}
	#modal_product_cart.active {
		background: rgba(0,0,0,0.7);
		pointer-events: initial;
	}

	#modal_product_cart > div {
		background: white;
    width: 320px;
    height: 100%;
    position: relative; 
    left:100%;
    transition-duration: 0.3s;
	}
		#modal_product_cart.active > div {
			left: calc(100% - 320px);
		}

	#modal_product_cart.active > div h3{
		margin: 0;
		padding: 10px 0;
		font-size: 21px;
		font-weight: 700;
	}
		#modal_product_cart.active > div h3 > span {
			font-size: 20px;
			color: var(--theme-red);
		}
	#modal_product_cart.active > div h5{
		margin: 0;
		font-size: 13px;
		color: #333;
	}
	#modal_product_cart .cart_item {
		position: relative;
		padding: 10px;
		border-bottom: 1px solid #ececec;		
		font-size:13px;
		text-transform: initial;
	}
	#modal_product_cart .delete_item {
		margin-top: -10px;
		float: right;
		background: none;
		border:none;
		font-size: 28px;
	}
		#modal_product_cart .delete_item:hover {
			color: #1e1e1e;
		}
	#modal_product_cart a {
		color: #1e1e1e;
    font-size: 13px;
    margin-top: 10px;
    display: block;
	}
		#modal_product_cart a:hover {
			text-decoration: underline;
		}

	
	#modal_product_cart .cart_minus,
	#modal_product_cart .cart_qty,
	#modal_product_cart .cart_plus {
		float: left;
		height: 35px;
		border: 1px solid var(--theme-red);
		padding: 5px;
		margin: 10px 0;
		font-weight: 700;
	}
	#modal_product_cart .cart_minus,	
	#modal_product_cart .cart_plus {
		width: 30px;		
		pointer-events: all;
	}
	#modal_product_cart .cart_minus {
		border-radius: 4px 0 0 4px;
	}
	#modal_product_cart .cart_plus {
		border-radius: 0 4px 4px 0;
	}
		#modal_product_cart .cart_minus:hover,	
		#modal_product_cart .cart_plus:hover {
			background: var(--theme-red);
			border: 1px solid var(--theme-red);
			color: white;
		}
				
	#modal_product_cart .cart_qty {
		width: calc( 100% - 60px);
		border-left: unset;
		border-right: unset;
		text-align: center;
		pointer-events: none;
	}

#modal_product_cart span.christmas_disabled {
	font-weight: bold;
  display: block;
  margin: 10px 2px;
  text-align: center;
  background: #e7b623;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  padding: 3px;
  text-transform: uppercase;
  max-width: 286px;
}

div.added {
	display: none !important;
	opacity: 0 !important;
	visibility:  hidden !important;
	height: 0 !important; 
}

#goexp2_add_btn_advice {
	display: none;
	position: absolute !important;
  top: 108px;
  left: -242px;
  width: 225px;
  background: white;
  padding: 5px 10px;
  border: 1px solid black;
  position: relative;
	z-index: 1;
}
	#goexp2_add_btn_advice:after {
		content: " ";
    position: absolute;
    display: block;
    top: 14px;
    right: -11px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    border: 1px solid black;
    border-bottom: unset;
    border-left: unset;
	}

@media screen and (max-width: 768px){
	#goexp2_add_btn_advice {	
    position: relative !important;
    top: 0;
    left: 0;
    width: 100%;    
    max-width: 378px;
    margin: 0 auto;
    background: #ffeb3b6e;
  }
	  #goexp2_add_btn_advice:after {
	 		display: none; 	
	  }
	
}
.special_label {
	display: inline-block;
	background: var(--theme-red);
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
	position: absolute;
	top: 15px;
	right: 15px;
}


@keyframes spinner {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
.spinner {
  animation: spinner 2s linear infinite;
}

.input-switch {
	display: inline-block;
	height: 30px;
	width: 60px;
	position: relative;
	border-radius: 20px;
	border: 1px solid #b8b8b8;
	background: #d8d8d8;
	cursor: pointer;
	transition-duration: 0.3s;
}
	.input-switch:before {
    content: ' ';
    display: inline-block;
    position: absolute;
    width: calc( 50% - 2px );
    height: calc( 100% - 2px );
    top: 1px;
    left: 1px;
    border-radius: 50%;
    background: white;
    border: 1px solid #b0b0b0;
		transition-duration: 0.3s;
	}
	.input-switch.on {
    border: 1px solid #ac5249;
		background: var(--theme-red);
	}
	.input-switch.on:before {
    left: calc( 50% + 1px);
		border: 1px solid #ac5249; 
	}

.p-opts-selection {
	border-radius:4px;
	padding: 5px;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
	.p-opts-selection h5 {
		color: white;
		font-weight: 400;
		margin: 10px auto 4px auto;
	}
	.p-opts-selection ul {
		list-style: none;
    text-align: left;
    display: block;
    margin: 0 auto;
    background: white;
    padding: 10px 10px 5px 10px;
    border-radius: 4px;
		color: #333;
	}
	.p-opts-selection label {
		margin-left: 10px;
	}

	.form-modal-selected {
		display: none;
		position: fixed; 
		top:0;
		left:0;
		width: 100vw;
		height: 100vh;  
		background: rgba(255,255,255,0.7); 
		z-index: 1000;
		text-align: center;   
	}  
		.form-modal-selected > div {
			overflow-y: auto;
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			min-width: 2%;
			max-width:600px;
			transform: translate(-50%, -50%);
			max-width: calc( 100% - 30px );
			max-height: calc( 100% - 30px );
			background-color: white;
			padding:15px;
			border: 1px solid black;
			width: -webkit-fill-available;
		}

		.form-modal-selected h4.title {
			font-size: 15px;
			font-weight: 600;
			color: #ce2c21;    
		}
		 

		.form-modal-selected span.message {
			display: block;
			font-size: 14px;    
			max-width: calc(100% - 30px);
			margin: 15px auto 0 auto;
		}

		.form-modal-selected button {
			display: inline-block;    
			border: 1px solid black;
			padding: 6px 12px;
			background: none;
			font-weight: 600;
			color:black;
			font-size: 13px;    
			margin: 0 auto;    
		}
			.form-modal-selected button:hover {
			 text-decoration: underline;
			}
	 

	@media screen and (max-width:768px) {
		.form-modal-selected > div {
			width: calc( 100% - 30px );    
		} 
		.text-xs-center {
			text-align: center !important;
		}
	}

	@media screen and (max-width:767px) {
		.text-xs-center {
			text-align: center !important;
		}
	}

	@media screen and (max-width:480px) {
		.hidden-xxs {
			display:none !important;
		}
	}
		#popup_box {
			position:absolute;
			top: 50%;
			left: 50%;
			width: 300px;
			height:370px;
			border: 0px solid #ccc;
			background: white;
			padding: 15px;
			-moz-border-radius:8px; border-radius:8px; -webkit-border-radius:8px;
			z-index:100; 
			display: none;
		}
		
		#popup_content {			
			/*overflow-y: scroll !important;*/
			overflow-y: hidden !important;
		}
	

	/*
  =================================================================================
  ALERT MODAL
  =================================================================================
	*/

	.form-modal {
		display: none;
		position: fixed; 
		top:0;
		left:0;
		width: 100vw;
		height: 100vh;  
		background: rgba(255,255,255,0.7); 
		z-index: 1000;
		text-align: center;   
	}  
		.form-modal > div {
			overflow-y: auto;
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			min-width: 2%;
			max-width:600px !important;
			transform: translate(-50%, -50%);
			max-width: calc( 100% - 30px );
			max-height: calc( 100% - 30px );
			background-color: white;
			padding:15px;
			border: 1px solid black;
			width: -webkit-fill-available;
		}

		.form-modal h4.title {
			font-size: 15px;
			font-weight: 600;
			color: #ce2c21;    
		}
		 

		.form-modal span.message {
			display: block;
			font-size: 14px;    
			max-width: calc(100% - 30px);
			margin: 15px auto 0 auto;
		}

		.form-modal button {
			display: inline-block;    
			border: 1px solid black;
			padding: 6px 12px;
			background: none;
			font-weight: 600;
			color:black;
			font-size: 13px;    
			margin: 0 auto;    
		}
			.form-modal button:hover {
			 text-decoration: underline;
			}
	 

	@media screen and (max-width:768px) {
		.form-modal > div {
			width: calc( 100% - 30px );    
		} 
		.text-xs-center {
			text-align: center !important;
		}
	}

	@media screen and (max-width:767px) {
		.text-xs-center {
			text-align: center !important;
		}
	}

	@media screen and (max-width:480px) {
		.hidden-xxs {
			display:none !important;
		}
	}
		#popup_box {
			position:absolute;
			top: 50%;
			left: 50%;
			width: 300px;
			height:370px;
			border: 0px solid #ccc;
			background: white;
			padding: 15px;
			-moz-border-radius:8px; border-radius:8px; -webkit-border-radius:8px;
			z-index:100; 
			display: none;
		}
		
		#popup_content {			
			/*overflow-y: scroll !important;*/
			overflow-y: hidden !important;
		}


.custom-select {
	position: absolute;
	/* width: 200px; */
	cursor: pointer;
}
.custom-select .selected {
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 12px;
}
.custom-select img {
	width: 18px;
}
.custom-select .options {
	display: none;
	position: absolute;
	top: calc(100% - 6px);
	left: 0;
	right: 0;
	border: 1px solid #333;
	border-top: none;
	background: white;
	z-index: 10;
	max-height: 250px;
	overflow-y: auto;
	padding: 0;
	width: 200px;
}
.custom-select .options li {
	list-style: none;
	padding: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
}
.custom-select .options li:hover {
	background: #eee;
}      
.custom-select.open .options {
	display: block;
}
input[name="phone"] {
	padding-left: 70px;
}