/*
Theme Name: Breakdance Zero Theme
Theme URI: https://breakdance.com/zero-theme // todo
Author: Breakdance Builder
Author URI: https://breakdance.com/
Description: Entirely disables the WordPress theme system and lets you design every part of your site with Breakdance, while keeping other theme functionality like templates overrides and functions.php.
Version: 1.0.0
Tested up to: 5.9
Requires PHP: 7
License: GNU General Public License v2 or later // todo no idea about this
License URI: LICENSE
Text Domain: breakdance-zero

Requires Breakdance to be installed.
/*--------------------------------------------------------------*/
.single-product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
}

.single-product form.cart .single_add_to_cart_button,
.single-product .login-to-price-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: left;
	height: 44px;
	padding: 0 20px;
	background: #B3D13F;
	border: 0;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	box-shadow: none;
	position: relative;
	gap: 10px;
	color: var(--WHITE, #FFF);
	font-family: "Swis721 BT";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 22.5px */
}

.single-product form.cart .single_add_to_cart_button:hover,
.single-product .login-to-price-btn:hover {
	background-color: #B3D13F;
	opacity: 0.92;
	color: #fff;
	text-decoration: none;
}

.single-product .stock,
.single-product .quantity {
	display: none !important;
}

.single-product form.cart .single_add_to_cart_button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #F3B047;
	z-index: -1;
	transition: width 0.35s ease;
}

.single-product form.cart .single_add_to_cart_button:hover {
	color: #FFF;
}

.single-product form.cart .single_add_to_cart_button:hover::after {
	width: 100%;
}

.breakdance-woocommerce div.product form.cart.variations_form {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: stretch;
}

.breakdance-woocommerce .variation-item label {
	display: none;
}

.breakdance-woocommerce .variations-wrapper {
	width: calc(50% - 5px);
	flex-shrink: 0;
}

.breakdance-woocommerce .single_variation_wrap {
	width: calc(50% - 5px);
}
.single_variation_wrap .woocommerce-variation.single_variation{
	display: none!important;
}
.breakdance-woocommerce .variations-wrapper select {
	border-radius: 5px;
	border: 1px solid var(--RD-DARK-100, #CDD4DC);
	background: var(--WHITE, #FFF);
	padding: 10px 16px;
	color: var(--RD-DARK-800, #343D4A);
	font-family: "Swis721 BT";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 10.9999L12 13.9999L9 10.9999' stroke='%23788598' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right 16px;

}

.breakdance-woocommerce .variations-wrapper select:focus{
	border-color: #B3D13F;
}