<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

:root {
	--gunmetal: #616763;
	--deep-aqua: #077f7a;
	--pale: #f2ede4;
	--white: #ffffff;
	--light-navy-blue: #285282;
	--dark-blue-grey: #172f4a;
	--ice-blue: #eef8f9;
	--sepia: #b04f2e;
	--pale-grey: #e7ecf1;
}


.smp-text {
	/* FOR VERSION C TEST font-family: Poppins; */
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
}
.smp-text_large {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--dark-blue-grey);
	/* FOR VERSION C TEST font-family: Poppins; */
}


.smp-text_regular {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.71;
	color: var(--gunmetal);
}



.smp-text_small {
	font-size: 12px;
	font-weight: normal;
	line-height: 2;
	color: var(--gunmetal);
}


.smp-text_pricing {
	font-weight: 600;
	color: var(--dark-blue-grey);
}

/* START CARD */


.smp-card_label {
	border-radius: 3px;
	background-color: var(--deep-aqua);
	color:var(--white);
	font-size:11px;
	padding:4px 10px;
	left: 6px;
	top: 6px;
	position: relative;
}

.smp-card_label + .smp-card_photo {
	margin-top: -21px;
}

.smp-card_photo {
	padding:0px 24px;
	background-color: var(--white);
}

.smp-card_photo img {
	width:100%;
}

.smp-card_content {
	padding:10px 24px 24px 24px;
	background-color:var(--white);
	border-radius: 0px 0px 6px 6px;
}

.smp-card_category {
	line-height: 1;
}

.smp-card_product {
	margin: 4px 0px;
}

.smp-card_pricing {
	margin:12px 0px 24px 0px;
}

.smp-card_action {

}

.smp-list-flower_mobile {
	margin:10px 0px;
}

.smp-modal-filter_action {
	margin:0px 0px 30px 0px;
}



/* END CARD */




/* START FORM */

[type="checkbox"].filled-in:checked+span:not(.lever):after, [type="checkbox"].filled-in+span:not(.lever):after {
	top: 0;
	width: 20px;
	height: 20px;
	border: 2px solid var(--light-navy-blue);
	background-color: var(--light-navy-blue);
	z-index: 0;
	border-radius: 4px;
}

[type="checkbox"].filled-in:checked+span.smp-list-category_item {
	color: var(--light-navy-blue);
}

[type="checkbox"].filled-in:not(:checked)+span:not(.lever):after {
	border-radius: 4px;
	border: solid 1px #979797;
}

[type="checkbox"].filled-in:not(:checked)+span:not(.lever):after, [type="checkbox"].filled-in:checked+span:not(.lever):before, [type="checkbox"].filled-in:checked+span:not(.lever):after, [type="checkbox"].filled-in+span:not(.lever):after {
	top: 3px;
}

.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle {
	border: 1px solid var(--dark-blue-grey);
	background-color: var(--white);
}

.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle:hover {
	cursor:pointer;
}

.noUi-connect {
	background-color: var(--dark-blue-grey);

}
/* END FORM */


/* START COLOR */

.smp-light-navy-blue_text {
	color:var(--light-navy-blue);
}

.smp-white_text {
	color: var(--white);
}

.smp-dark-blue-grey {
	background-color: var(--dark-blue-grey);
}

.smp-dark-blue-grey_text {
	color:var(--dark-blue-grey);
}

.smp-deep-aqua {
	background-color: var(--deep-aqua);
}

.smp-deep-aqua_text {
	color: var(--deep-aqua);
}


/* END COLOR */



@media only screen and (max-width: 992px) {
	.modal {
		width: 90%;
		max-height:80%;
	}

	.modal.modal-fixed-footer {
		padding: 0;
		height: 90%;
		max-height: 90%;
	}

}



/* START HELPER */
.smp-width_100 {
	display: block;
	width:100%;
}

.smp-weight_500 {
	font-weight:500;
}

.smp-opacity_1 {
	opacity:1;
}

.smp-margin_0 {
	margin:0;
}

.smp-align_right {
	text-align:right;
}

.smp-float_right {
	float:right;
}

.smp-float_left {
	float:left;
}
.smp-margin-bot_20 {
	margin-bottom:20px;
}


.smp-card-shop_rassurance, .smp-card-shop_filter-desktop {
	padding:24px;
	margin:20px 0px;
}



#secondFlowers {
	display: flex;
	flex-wrap: wrap;
}

.list-flowers {
	display: flex;
	flex-direction: column;
}


/* DIRTY FIX */
@media only screen and (min-width: 993px) {
	.container {
		width: 85%;
	}
}

html, body, .block {
	height: 100%;
}

/* ALL LOADERS */

.loader{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	position: relative;
	margin: 0 auto;
}

/* LOADER 1 */

#loader-1:before, #loader-1:after{
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 5px solid transparent;
	border-top-color: #3498db;
}

#loader-1:before{
	z-index: 50;
	animation: spin 1s infinite;
}

#loader-1:after{
	border: 5px solid #ccc;
}

@keyframes spin{
	0%{
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%{
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#secondFlowers &gt; div {
	margin-left: 0;
}


#moreProduct {
	cursor: pointer;
}

.filter-card {
	filter: opacity(0.7);
	position: relative;
}

.card-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
</pre></body></html>