.woocommerce-account .bouquet-edit-preferences-form {
	max-width: 1000px;
	margin: 0 auto;
}

.woocommerce-account .wizardStepContent3 h2 {
	margin-bottom: 25px;
	font-family: Roboto;
	font-weight: 400;
	font-size: 24px;
	text-align: center;
}

.woocommerce-account .wizardStepContent3 .wizard-field {
	margin: 50px 0;
}

.woocommerce-account .wizardStepContent3 .wizard-field h3 {
	font-family: Roboto;
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	margin-bottom: 14px;
}

.woocommerce-account .wizardStepContent3 select {
	width: 100%;
	border: 1px solid #828282;
	padding: 7.5px 16px;
	font-family: Roboto;
	font-size: 16px;
	border-radius: 4px;
	background: transparent;
}

.woocommerce-account .selected-personality {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.woocommerce-account .selected-personality .tag {
	padding: 8px 12px;
	border-radius: 20px;
	border: 1px dashed #828282;
	font-family: Roboto;
	font-size: 14px;
}

.woocommerce-account .flower-grid.preference-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.woocommerce-account .flower-card input {
	display: none;
}

.woocommerce-account .flower-label {
	cursor: pointer;
	border: 1px solid #828282;
	padding: 12px;
	border-radius: 4px;
	text-align: center;
}

.woocommerce-account .flower-card input:checked + .flower-label {
	border: 2px solid #828282;
}

.woocommerce-account .flower-label img {
	width: 100%;
	border-radius: 4px;
}

.woocommerce-account .flower-label p {
	margin-top: 12px;
	font-family: Roboto;
	font-size: 16px;
}

.woocommerce-account .favourite-colour-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	max-width: 800px;
	margin: 0 auto;
}

.woocommerce-account .colorcodeInner {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.woocommerce-account .other-selections-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 45px;
}

.woocommerce-account .other-selections {
	width: 47%;
	position: relative;
}

.woocommerce-account .other-selections:first-child {
	width: 100%;
}

.woocommerce-account .other-selections h3 {
	font-family: Roboto;
	font-size: 20px;
	margin-bottom: 14px;
}

.woocommerce-account .wizardStepContent3 input[type="text"] {
	width: 100%;
	border: none;
	border-bottom: 1px solid #dcdcdc;
	padding: 6px 0 16px;
	font-family: Roboto;
	font-size: 16px;
}

.woocommerce-account .bouquet-edit-preferences-form .button {
	padding: 10px 28px;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: 18px;
}

.woocommerce-account .bouquet-edit-preferences-form .button-primary {
	margin-right: 12px;
}

.selected-personality .tag span {
	margin-left: 12px;
	cursor: pointer;
	font-weight: 300;
	font-size: 20px;
}

.wizardStepContent3 .other-selections::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 16px;
	width: 24px;
	height: 24px;
	background-image: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/enter.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* =============================
   Card Message Section
============================= */

.step-card-message {
	margin-top: 50px;
	text-align: center;
}

.step-card-message h3 {
	font-family: Roboto;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.1px;
	color: #000;
	margin-bottom: 20px;
}

/* -----------------------------
   Radio Options Wrapper
----------------------------- */
.card-options {
	width: 100%;
	max-width: 552px;
	margin: 0 auto 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #828282;
	text-align: left;
}

/* hide native radio */
.card-options input[type="radio"] {
	appearance: none;
	position: absolute;
	opacity: 0;
}

/* custom radio row */
.card-options .custom-radio {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	cursor: pointer;
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	color: #000;
}

/* italic helper text */
.card-options .custom-radio em {
	font-style: italic;
	font-family: Playfair Display;
	font-weight: 400;
}

/* radio image */
.card-options .radio-img {
	width: 18px;
	height: 18px;
	background: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/radion-unchecked.svg")
		no-repeat center / contain;
	flex-shrink: 0;
}

/* checked state */
.card-options input[type="radio"]:checked + .custom-radio .radio-img {
	background-image: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/radio-checked.svg");
}

/* -----------------------------
   Message Textarea
----------------------------- */
.message-box {
	max-width: 552px;
	margin: 20px auto 0;
	position: relative;
}

.message-box textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #828282;
	padding: 10px 30px 10px 0;
	font-family: Roboto;
	font-weight: 300;
	font-size: 16px;
	line-height: 27px;
	color: #000;
	resize: vertical;
	background: transparent;
	outline: none;
}

/* enter icon */
.message-box::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 16px;
	width: 24px;
	height: 24px;
	background-image: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/enter.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* =========================
   FULL SCREEN OVERLAY
========================= */
.page-loader {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	/* grey overlay */
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

p.error {
	color: red;
	margin: 0;
}

/* =========================
   SPINNER (YOUR CODE)
========================= */
.loader {
	width: 50px;
	aspect-ratio: 1;
	display: grid;
	border-radius: 50%;
	background:
		linear-gradient(
				0deg,
				rgb(0 0 0 / 50%) 30%,
				#0000 0 70%,
				rgb(0 0 0 / 100%) 0
			)
			50% / 8% 100%,
		linear-gradient(
				90deg,
				rgb(0 0 0 / 25%) 30%,
				#0000 0 70%,
				rgb(0 0 0 / 75%) 0
			)
			50% / 100% 8%;
	background-repeat: no-repeat;
	animation: l23 1s infinite steps(12);
}

.loader::before,
.loader::after {
	content: "";
	grid-area: 1 / 1;
	border-radius: 50%;
	background: inherit;
	opacity: 0.915;
	transform: rotate(30deg);
}

.loader::after {
	opacity: 0.83;
	transform: rotate(60deg);
}

@keyframes l23 {
	100% {
		transform: rotate(1turn);
	}
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* my-account */

body footer#colophon {
	display: none;
}

.qodef-page-title {
	display: none;
}

#qodef-page-inner {
	padding: 0;
	width: 100%;
}

.my-account-section {
	height: 100vh;
	background: linear-gradient(
		to right,
		#eeeeee 21%,
		#eeeeee 0%,
		#ffffff 16%,
		#ffffff 26%
	);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	padding-right: 0;
	padding-left: 40px;
	width: 21%;
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 79%;
	padding-left: 24px;
	padding-right: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	padding: 20px 20px 20px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0 0 12px;
	padding: 10px 12px 10px 44px;
	font-family: Roboto, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;
	position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 12px;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--dashboard::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/dashboard.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--orders::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/order.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--subscriptions::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/subscription.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--downloads::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/download.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--edit-address::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/address.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--payment-methods::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/payment.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--edit-account::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/acoount.svg");
}

.woocommerce-account
	.woocommerce-MyAccount-navigation
	ul
	li.woocommerce-MyAccount-navigation-link--customer-logout::before {
	background-image: url("/wp-content/themes/emeline-child/modules/my-account/images/logout.svg");
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
	border: 1px solid #00000099;
	background: #ffffff;
	border-radius: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	font-family: Roboto, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 24px;
	letter-spacing: 0.02em;
	font-size: 16px;
}

/*  */

.delivery-wrapper {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	margin: auto;
	border: 1px solid #828282;
	box-shadow: 0px 5px 20px 0px #0000001a;
}

.delivery-tabs {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.delivery-tab-btn {
	background: none;
	border: none;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 0px 0 16px;
	cursor: pointer;
	color: #777;
	position: relative;
}

.delivery-tab-btn.active {
	color: #000;
}

.delivery-tab-btn.active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background: #000;
}

/* Table */
.table-box {
	overflow: hidden;
	padding: 12px 12px 0;
	border: 1px solid #8282824d;
	border-radius: 7px;
}

table.delivery-table {
	width: 100%;
	border-collapse: collapse;
}

table.delivery-table thead {
	background: #f2f2f2;
}

table.delivery-table thead th {
	padding: 10px 15px;
	text-align: left;
	background: #b2b2b236;
	border-bottom: 1px solid #d9dbe5;
	font-size: 16px;
	line-height: 20px;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-weight: 500;
}

.delivery-wrapper .delivery-table td,
.delivery-wrapper .delivery-table th{
	text-transform: capitalize;
}

table.delivery-table tbody td {
	padding: 12px 15px;
	border: none;
	border-bottom: 1px solid #d9dbe5;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #000000b2;
}

table.delivery-table tbody th {
	padding: 12px 24px;
	border: none;
	border-bottom: 1px solid #d9dbe5;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	color: #161616;
}

table.delivery-table tbody td a {
	font-size: 16px;
	line-height: 20px;
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-weight: 500;
	/* text-decoration: none; */
}

table.delivery-table tbody tr {
	border: none;
}

table.delivery-table tbody tr:last-child {
	border-bottom: none;
}

.status {
	color: #555;
}

td a {
	color: #000;
	text-decoration: underline;
	font-weight: 500;
}

/* Tab content */
.delivery-tab-content {
	display: none;
}

.delivery-tab-content.active {
	display: block;
}

.bouquet-cart-message .review-card-title,
.bouquet-subscription-address .review-card-title {
	justify-content: space-between;
}

.review-card-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 18px;
	position: relative;
}

.review-card-title-block {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}

.review-card-title-wrapper h3 {
	margin: 0;
	font-family: "Playfair", serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0px;
	font-style: normal;
	color: #1e2939;
}

.review-card-title-wrapper p {
	margin: 0;
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: -0.1px;
	vertical-align: middle;
	color: #646464;
}

section.bouquet-subscription-preferences {
	position: relative;
}

a.button.bouquet-edit-preferences {
	position: absolute;
	top: 25px;
	right: 25px;
	font-size: 0;
}

.view-subsription-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.order-details-wrapper,
.subscription-details-wrapper,
.bouquet-subscription-address,
.bouquet-subscription-preferences {
	border: 1px solid #8282824d;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.view-subsription-row table.shop_table.order_details thead {
	display: none;
}

.view-subsription-row table tr {
	border: none;
}

.view-subsription-row table td {
	border: none;
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0px;
	color: #000000b2;
	padding: 8px 0 !important;
}

.view-subsription-row table th,
body.woocommerce-page div.woocommerce .shop_table th,
.view-subsription-row table td a {
	border: none;
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0px;
	color: #161616;
	padding: 8px 0 !important;
	font-style: normal;
	text-decoration: none;
}

.view-subsription-row .bouquet-deliveries-wrapper,
.view-subsription-row table#woocommerce-subscriptions-related-orders-table,
.view-subsription-row header,
.view-subsription-row .woocommerce-customer-details {
	display: none;
}

.view-subsription-col.view-subsription-col-1 {
	display: flex;
	flex-direction: column;
	width: 40%;
}

.view-subsription-col.view-subsription-col-1 h2,
.view-subsription-container h2 {
	display: none;
}

.view-subsription-col.view-subsription-col-2 {
	width: 58%;
}

/* .subscription-details-wrapper {
	order: 5;
}

.order-details-wrapper {
	order: 4;
} */

section.bouquet-subscription-preferences {
	/* order: 3; */
	display: none;
}

/* .bouquet-cart-message {
	order: 2;
}

.bouquet-subscription-address {
	order: 1;
} */

section.bouquet-subscription-preferences h3 {
	margin: 0 0 15px;
	font-family: "Playfair", serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0px;
	font-style: normal;
	color: #1e2939;
}

.address-block {
	padding: 16px;
	background: #efefef66;
	border-radius: 8px;
}

.delivery-time-block {
	padding: 16px;
	background: #efefef66;
	border-radius: 8px;
	margin-top: 16px;
}

.delivery-time-block h3 {
	font-family: Roboto;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.1px;
	color: #000;
	margin: 0;
	font-style: normal;
}

.delivery-time-block p {
	font-family: Roboto;
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.32px;
	margin: 4px 0 0;
}

table.shop_table.subscription_details tbody td a {
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0px;
	color: #000000b2;
	font-style: normal;
}

.order-title {
	font-family: Playfair Display;
	font-weight: 500;
	font-style: Italic;
	font-size: 24px;
	line-height: 28.8px;
	vertical-align: middle;
	margin: 0 0 24px;
}

.bouquet-cart-message {
	border: 1px solid #8282824d;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.cart-message-wrapper {
	padding: 16px;
	background: #efefef66;
	border-radius: 8px;
	margin-top: 16px;
}

.cart-message-wrapper p.cart-message-content {
	margin: 0;
	font-style: italic;
}

a.button.bouquet-edit-message,
a.button.bouquet-edit-address {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 0;
}

.view-subsription-col.view-subsription-col-2
	.wizardStepContent.wizardStepContent3 {
	border: 1px solid #8282824d;
	padding: 24px;
	border-radius: 12px;
}

body.woocommerce-account .wizardStepContent3 .wizard-field:first-of-type {
	margin-top: 0;
}

body.woocommerce-account .wizardStepContent3 .wizard-field h3 {
	margin-top: 0;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	.favourite-colour-grid
	.colorcodeInner {
	width: 100%;
	/* max-width: 105px; */
	height: 75px;
	border-radius: 6px;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	.flower-grid.preference-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	.other-selections {
	width: 100%;
	position: relative;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	.other-selections-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	button.button.button-primary.save-btn {
	font-family: Playfair Display;
	font-weight: 600;
	font-style: Italic;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0.9px;
	text-align: center;
	vertical-align: middle;
	background: #000;
	color: #fff;
	padding: 7px 26px !important;
	border-radius: 6px;
	margin: 0 auto;
	display: block;
}

body.woocommerce-account
	.view-subsription-col.view-subsription-col-2
	button.button.button-primary.save-btn[type="submit"]:after {
	display: none;
}

.address-block p:first-of-type {
	margin-top: 0;
}

.address-block p:last-of-type {
	margin-bottom: 0;
}

.cart-message-popup {
	max-width: 610px;
	margin: 20px auto;
	background: #fff;
	padding: 25px;
	border-radius: 10px;
	max-height: 90vh;
	/* Screen ke 90% tak hi */
	overflow-y: auto;
	/* Andar vertical scroll */
	overflow-x: hidden;
}

.address-popup {
	max-width: 840px;
	margin: 20px auto;
	background: #fff;
	padding: 25px;
	border-radius: 10px;
	max-height: 90vh;
	/* Screen ke 90% tak hi */
	overflow-y: auto;
	/* Andar vertical scroll */
	overflow-x: hidden;
}

/* .cart-message-popup,
.address-popup {
    position: relative;
}

.mfp-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 24px;
    background: #fff;
    color: #222;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 1;
    transition: transform .2s ease, box-shadow .2s ease;
} */

/* ====== GENERAL ====== */
.step-title {
	font-size: 24px;
	font-style: italic;
	margin-bottom: 20px;
	margin-top: 0;
}

.delivery-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px 40px;
}

.delivery-field label {
	font-size: 14px;
	color: #555;
}

.delivery-field input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #bbb;
	padding: 8px 0;
	outline: none;
}

.delivery-field.full {
	grid-column: 1 / -1;
	position: relative;
}

.delivery-field.full::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 16px;
	width: 24px;
	height: 24px;
	background-image: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/enter.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* ====== DELIVERY TIME ====== */
.delivery-time {
	margin: 30px 0;
}

.delivery-time h3 {
	font-family: Roboto;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.1px;
	font-style: normal;
}

.delivery-time h3 span {
	font-style: italic;
	font-family: Playfair Display;
}

.time-options {
	display: flex;
	justify-content: flex-start;
	gap: 16px;
	margin-top: 25px;
}

/* hide radio */
.time-options input {
	display: none;
}

.time-options label {
	padding: 6px 30px;
	cursor: pointer;
	transition: 0.3s;
	border: 1px solid #8282824d;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: Roboto;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.32px;
	text-align: center;
	vertical-align: middle;
}

select#delivery_relationship {
	width: 100%;
	border: none;
	border-bottom: 1px solid #bbb;
	padding: 8px 0;
	outline: none;
	background: transparent;
}

/* active */
.time-options input:checked + label {
	background: #ececec;
	border: 1px solid #828282;
}

/* ====== SURPRISE RADIO ====== */
.surprise-section {
	text-align: left;
}

.surprise-section h3 {
	font-family: Roboto;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.1px;
	font-style: normal;
}

.surprise-section .custom-radio {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	cursor: pointer;
	width: 100%;
	max-width: 316px;
	margin: 0 0 15px;
	font-family: Roboto;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: -0.32px;
	vertical-align: middle;
	color: #000;
}

.surprise-section .custom-radio:last-of-type {
	margin-bottom: 0;
}

.surprise-section .custom-radio input {
	appearance: none;
	position: absolute;
	border: none;
	padding: 0;
}

.surprise-section .radio-img {
	width: 20px;
	height: 20px;
	background: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/radion-unchecked.svg")
		no-repeat center / contain;
}

.surprise-section .custom-radio input:checked + .radio-img {
	background-image: url("/wp-content/themes/emeline-child/modules/bouquet-wizard/images/radio-checked.svg");
}

.cart-message-popup .wizard-step.step-card-message {
	margin-top: 0;
	text-align: left;
}

.popup-btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.cancle-btn {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0.9px;
	color: #00000099;
}

.save-btn {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-style: Italic;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0.9px;
	text-align: center;
	vertical-align: middle;
	background: #000;
	color: #fff;
	padding: 7px 26px !important;
	border-radius: 6px;
}

span.review-recipient-name {
	text-transform: capitalize;
}

.woocommerce-account .flower-label {
	height: 100%;
    max-height: -webkit-fill-available;
}

.bouquet-edit-wrapper {
	position: relative;
	width: 24px;
	height: 40px;
}

.locked-message {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: #303030;
	padding: 12px;
	border-radius: 4px;
	z-index: 9;
	width: 211px;
	border: 1px dashed #828282;
	box-shadow: 0 14px 14px rgba(0, 0, 0, 0.1);
}

.locked-message p {
	font-family: Roboto;
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	line-height: 17px;
	color: #ffffff;
	letter-spacing: 0;
	margin: 0;
}

.locked-message p span {
	font-weight: 600;
}

.bouquet-edit-locked:hover + .locked-message {
	display: block;
}

.wizardStepContent3.is-locked {
	position: relative;
	pointer-events: none;
}

.wizardStepContent3.is-locked h3 {
	opacity: 1;
}

.wizardStepContent3.is-locked input,
.wizardStepContent3.is-locked select,
.wizardStepContent3.is-locked textarea,
.wizardStepContent3.is-locked button,
.wizardStepContent3.is-locked .flower-card,
.wizardStepContent3.is-locked .other-selections-wrapper,
.wizardStepContent3.is-locked .selected-personality {
	opacity: 0.5;
}


