/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
@keyframes slideInLeft {
	0% {
		transform: translateX(-100px);
		opacity: 0
	}
	to {
		transform: translateX(0);
		opacity: 1
	}
}

@keyframes slideInRight {
	0% {
		transform: translateX(100px);
		opacity: 0
	}
	to {
		transform: translateX(0);
		opacity: 1
	}
}

@keyframes fadeInBottom {
	0% {
		transform: translateY(50px);
		opacity: 0
	}
	to {
		transform: translateY(0);
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes slideTop {
	0% {
		transform: translateY(100px)
	}
	to {
		transform: translateY(0)
	}
}

@keyframes fadeText {
	0% {
		opacity: 0;
		transform: scale(.9)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes kenBurns {
	0% {
		transform: scale(1.2)
	}
	to {
		transform: scale(1)
	}
}

@keyframes flipX {
	0% {
		opacity: 0;
		transform: rotateX(90deg)
	}
	50%,
	to {
		opacity: 1;
		transform: rotateX(720deg)
	}
}

@keyframes openclose {
	0% {
		width: 0
	}
	to {
		width: 100%
	}
}

@keyframes unblur {
	0% {
		filter: blur(20px);
		-webkit-filter: blur(20px)
	}
	to {
		filter: blur(0);
		-webkit-filter: blur(0)
	}
}

@keyframes neon {
	0%,
	to {
		text-shadow: 0 0 10px #ef00e3a8, 0 0 20px #ef00e3a8, 0 0 20px #ef00e3a8, 0 0 20px #ef00e3a8, 0 0 2px #fed128, 2px 2px 2px #806914;
		color: #f5efcb
	}
	50% {
		text-shadow: 0 0 2px #800e0b, 0 0 5px #800e0b, 0 0 5px #800e0b, 0 0 5px #800e0b, 0 0 2px #800e0b, 4px 4px 2px #40340a;
		color: #eda0d3
	}
}

@keyframes blinker {
	50% {
		opacity: 0
	}
}

@keyframes shaker {
	50% {
		rotate: 5deg
	}
}

@keyframes shaker2 {
	0%,
	to {
		rotate: -10deg
	}
	50% {
		rotate: 10deg
	}
}

@keyframes heartbeat {
	0%,
	40%,
	80%,
	to {
		transform: scale(.75)
	}
	20%,
	60% {
		transform: scale(1)
	}
}

@keyframes heartbeatSmall {
	0%,
	40%,
	80%,
	to {
		transform: scale(.9)
	}
	20%,
	60% {
		transform: scale(1)
	}
}

@keyframes heartbeatSmallest {
	0%,
	40%,
	80%,
	to {
		transform: scale(.98)
	}
	20%,
	60% {
		transform: scale(1)
	}
}

:root {
	color-scheme: only light;
	--anim_speed: 0.5s
}

html.animating body.sm-scroll_speed-2 {
	--anim_speed: .2s
}

html.animating body.sm-scroll_speed-3 {
	--anim_speed: .8s
}

* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

input,
label {
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	-o-tap-highlight-color: transparent;
	tap-highlight-color: transparent
}

@media (min-width:391px) {
	html.animating [data-jsscroll] {
		opacity: 0;
		transition: opacity var(--anim_speed)
	}
	[data-jsscroll].jsScroll__disabled,
	html.animating [data-jsscroll].jsScroll__scrolled {
		opacity: 1
	}
	html.animating [data-jsscroll-fade-in].jsScroll__scrolled {
		animation: fadeIn var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-left].jsScroll__scrolled {
		animation: slideInLeft var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-right].jsScroll__scrolled {
		animation: slideInRight var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-top].jsScroll__scrolled {
		animation: slideTop var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
	html.animating [data-jsscroll-slide-bottom].jsScroll__scrolled {
		animation: fadeInBottom var(--anim_speed) ease-in-out both
	}
	html.animating body.sm-scroll_type-2 [data-jsscroll-slide-top].jsScroll__scrolled {
		animation: slideInLeft var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
	html.animating body.sm-scroll_type-3 [data-jsscroll-slide-top].jsScroll__scrolled {
		animation: slideInRight var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
}

@media (max-width:450px) {
	html.animating [data-jsscroll]:not([data-jsscroll_nomob]) {
		opacity: 0;
		transition: opacity var(--anim_speed)
	}
	[data-jsscroll].jsScroll__disabled,
	html.animating [data-jsscroll].jsScroll__scrolled {
		opacity: 1
	}
	html.animating [data-jsscroll-fade-in].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: fadeIn var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-left].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: slideInLeft var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-right].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: slideInRight var(--anim_speed) ease-in-out both
	}
	html.animating [data-jsscroll-slide-top].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: slideTop var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
	html.animating [data-jsscroll-slide-bottom].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: fadeInBottom var(--anim_speed) ease-in-out both
	}
	html.animating body.sm-scroll_type-2 [data-jsscroll-slide-top].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: slideInLeft var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
	html.animating body.sm-scroll_type-3 [data-jsscroll-slide-top].jsScroll__scrolled:not([data-jsscroll_nomob]) {
		animation: slideInRight var(--anim_speed) cubic-bezier(.25, .46, .45, .94) both
	}
}

.sm-madewithlove {
	padding: 30px;
	text-align: center;
	font-size: 16px;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
	color: #000;
	font-family: system-ui;
	line-height: 16px;
	display: inline-flex;
	align-items: start;
	justify-content: center;
	gap: 5px
}

.sm-madewithlove img {
	width: 120px;
	vertical-align: middle;
	margin-left: 5px
}

.lock .sm-madewithlove {
	display: none
}

@media (max-width:450px) {
	.sm-madewithlove {
		padding: 30px 30px 80px;
		font-size: 12px;
		line-height: 12px
	}
	.sm-madewithlove.sm-shortmade {
		padding-bottom: 30px
	}
	.sm-madewithlove img {
		width: 80px;
		margin-left: 2px
	}
}

.ct-alcotpl {
	display: none !important
}

.sm-loader,
.sm-loader:before {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

.sm-loader {
	overflow: hidden
}

.sm-loader:before {
	content: "";
	background: #fff;
	z-index: 500
}

.sm-loader:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	right: 50%;
	bottom: 50%;
	background: url(/sitemaker/images/365.gif)50% 50%no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	display: block;
	transform: translate(-50%, -50%);
	z-index: 500
}

.sm-hidden {
	display: none !important
}

i[data-sm-alcoitem],
i[data-sm-text] {
	font-style: inherit
}

[data-sm-src] {
	object-fit: cover;
	-o-object-fit: cover;
	object-position: center
}

.sm-sound {
	opacity: 0;
	pointer-events: none
}

[data-sm-text=BRIDE_TEL],
[data-sm-text=GROOM_TEL] {
	white-space: nowrap
}

.sm-grayscale {
	filter: grayscale(100);
	-webkit-filter: grayscale(100)
}

::-webkit-scrollbar {
	-webkit-appearance: none
}

::-webkit-scrollbar:horizontal {
	height: 0
}

::-webkit-scrollbar:vertical {
	width: 0
}

::-webkit-scrollbar-thumb {
	background-color: var(--ct-pink-color);
	border-radius: 2px;
	border: 0
}

::-webkit-scrollbar-track {
	border-radius: 2px;
	background-color: transparent
}

.fancybox__caption {
	display: none !important
}

.modal-open .sm-form__input,
.sm-questionnaire-form .sm-form__input,
a[data-sm-tel] {
	color: inherit !important
}

img[src=""] {
	display: none
}

.ct-photo_editor-wrapper {
	position: relative
}

.ct-photo_editor-wrapper:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	width: 60px;
	height: 60px;
	content: "";
	z-index: 200;
	border-radius: 100%;
	overflow: hidden;
	background: url(/sitemaker/images/constr/ct-image-plus.svg)50% 50%no-repeat;
	background-size: 60%;
	background-color: rgba(0, 0, 0, .4)
}

:after,
:before {
	pointer-events: none !important
}

i[data-sm-fyear],
i[data-sm-tmonth] {
	font-style: normal
}

.modal-open .sm-form__input::-webkit-input-placeholder,
.sm-modal .sm-form__input::placeholder {
	border: 0 !important
}

.modal-open .sm-form_checkbox_box,
.sm-questionnaire-form .sm-form_checkbox_box {
	margin-left: 0 !important;
	pointer-events: none
}

.modal-open .sm-form_checkbox,
.sm-questionnaire-form .sm-form_checkbox {
	padding: 0 !important
}

.modal-open .sm-form_checkbox [data-sm-alcoitem],
.sm-questionnaire-form .sm-form_checkbox [data-sm-alcoitem] {
	padding-left: 50px !important
}

.sm-editor_preview .sm-modal .sm-modal-close {
	justify-content: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start
}

.sm-editor_preview .sm-modal .sm-modal__cross {
	right: initial;
	left: 16px;
	z-index: 2
}

.sm-editor_preview .is-compact .fancybox__content>.f-button.is-close-btn {
	right: initial;
	left: 5px
}

.sm-editor_preview .sm-close-popup,
.sm-editor_preview .sm-quest-modal-close {
	right: initial;
	left: 16px
}

.sm-editor_preview .sm-popup .sm-first-label {
	margin-top: 60px
}

.sm-mob-btn {
	height: 50px !important
}

.sm-mob-btn .sm-button {
	font-size: 17px;
	min-height: 50px
}

/* ========== ИСПРАВЛЕННЫЕ СТИЛИ ДЛЯ РАДИО-КНОПОК И ЧЕКБОКСОВ ========== */

/* Стили для радио-кнопок */
.sm-form .radio-input {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.sm-form__item {
	display: flex;
	gap: 30px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.sm-form__item-radio {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	user-select: none;
}

.sm-form__item-radio .radio-input + span {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.4;
}

.sm-form__item-radio .radio-input + span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #c0a080;
	border-radius: 50%;
	background: #fff;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.sm-form__item-radio .radio-input + span:after {
	content: '';
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #c0a080;
	opacity: 0;
	transition: all 0.3s ease;
}

.sm-form__item-radio .radio-input:checked + span:after {
	opacity: 1;
}

.sm-form__item-radio .radio-input:checked + span:before {
	border-color: #c0a080;
	background: #fff;
}

.sm-form__item-radio:hover .radio-input + span:before {
	border-color: #d4b48c;
	box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.2);
}

/* Стили для чекбоксов */
.sm-form_checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	cursor: pointer;
	position: relative;
	user-select: none;
	min-height: 30px;
}

.sm-form_checkbox_input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.sm-form_checkbox_box {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #c0a080;
	border-radius: 4px;
	background: #fff;
	margin-right: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.sm-form_checkbox_input:checked + .sm-form_checkbox_box {
	background: #c0a080;
	border-color: #c0a080;
}

.sm-form_checkbox_input:checked + .sm-form_checkbox_box:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.sm-form_checkbox_input:focus + .sm-form_checkbox_box {
	box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.2);
}

.sm-form_checkbox:hover .sm-form_checkbox_box {
	border-color: #d4b48c;
	box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.1);
}

.sm-form_checkbox label {
	cursor: pointer;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 16px;
	color: #333;
	line-height: 1.4;
}

/* Стили для блока с напитками */
.sm-form__drinks {
	margin-top: 15px;
}

.sm-form__drinks-check {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}

@media (min-width: 768px) {
	.sm-form__drinks-check {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Стили для полей ввода */
.sm-form__input,
.sm-modal .sm-form__input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	font-family: inherit;
	font-size: 16px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.sm-form__input:focus,
.sm-modal .sm-form__input:focus {
	outline: none;
	border-color: #c0a080;
	box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.1);
}

.sm-form__input::placeholder {
	color: #999;
}

/* Стили для кнопки */
.sm-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #c0a080;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
}

.sm-btn:hover {
	background: #a88868;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sm-btn:active {
	transform: translateY(0);
}

/* Стили для модального окна */
.sm-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: center;
}

.sm-modal .sm-container {
	max-width: 600px;
	width: 90%;
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	margin: 0 auto;
}

.sm-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f5f5f5;
	transition: all 0.3s ease;
}

.sm-modal-close:hover {
	background: #e0e0e0;
	transform: rotate(90deg);
}

.sm-modal-close_img {
	width: 16px;
	height: 16px;
}

.sm-modal-titel {
	text-align: center;
	margin-bottom: 25px;
	font-size: 20px;
	color: #333;
}


/* Анимация для модальных окон */
@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sm-modal,

/* Стили для ошибок и успеха */
.sm-form__input.error {
	border-color: #e74c3c;
	background: #fff5f5;
}

.sm-form__input.success {
	border-color: #27ae60;
	background: #f0fff4;
}

.error-message {
	color: #e74c3c;
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

/* Disabled состояния */
.sm-form_checkbox_input:disabled + .sm-form_checkbox_box {
	opacity: 0.5;
	cursor: not-allowed;
}

.sm-form__item-radio .radio-input:disabled + span {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Адаптивность для мобильных форм */
@media (max-width: 768px) {
	.sm-form__item {
		flex-direction: column;
		gap: 15px;
	}
	
	.sm-form__drinks-check {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.sm-modal .sm-container {
		padding: 20px;
		width: 95%;
	}
	
	.sm-form_checkbox {
		margin-bottom: 10px;
	}
	
	.sm-form_checkbox label {
		font-size: 14px;
	}
	
	.sm-btn {
		width: 100%;
		padding: 12px 20px;
	}
}

.sm-project-5570cf147421313793b1e2588c0456e7 .sm-countdown-text {
	font-size: 63px
}

@media (max-width:500px) {
	.sm-project-5570cf147421313793b1e2588c0456e7 .sm-countdown-text {
		font-size: 20px
	}

	.sm-form_checkbox {
		min-height: 32px;
		display: flex;
		align-items: center
	}

	.sm-project-1723df975e3c7ea951422345d2c4f8fe .sm-date__calendar-bottom .sm-cormorantLight-30-20px {
		font-size: 16px
	}

	.sm-project-a68c0f988a9f124b82cc608ba17cf4f0 .sm-main__content-titel .sm-cormorantRegular-100-50 {
		font-size: 72px;
		line-height: 55px
	}

	.sm-project-a68c0f988a9f124b82cc608ba17cf4f0 .sm-date__calendar-bottom .sm-cormorantLight-30-20px {
		font-size: 27px
	}

	.sm-project-01291c9392613c11455bd94a9f575a9f .sm-wishes h1 i {
		transform: translateX(30px);
		display: block
	}

	.sm-project-01291c9392613c11455bd94a9f575a9f .sm-wishes h1::after {
		transform: none
	}

	.sm-project-01291c9392613c11455bd94a9f575a9f .sm-wishes h1 span {
		transform: translate(-155px, 25px)
	}

	.sm-project-a68c0f988a9f124b82cc608ba17cf4f0 .sm-location .sm-cormorantLight-40-30 {
		font-size: 33px
	}

	.sm-project-71ee4675590123a2be6a6fba5f115816 [data-sm-href=LOCATION_PHOTO_ITEMS_1] {
		display: none
	}

	.sm-project-a97871889e70232fb0d531e060446a01 .sm-cormorantLight-30-20px,
	.sm-project-d80a624942e3ad193c6477017a61c03e .sm-cormorantLight-30-20px,
	.sm-project-e7efe598d1d8d183ff67929ba56059de .sm-cormorantLight-30-20px {
		text-transform: initial;
		font-size: 18px
	}

	.sm-project-161fc1941e8916e3adb8b10ce0e014e6 .sm-cormorantLight-30-20px,
	.sm-project-639d06e97eb1c448a6b5841225a13b93 .sm-cormorantLight-30-20px,
	.sm-project-919bbb1238887bfc1501741d3f42e3db .sm-cormorantLight-30-20px,
	.sm-project-f106bdc22aed128672a47cfc762fa275 .sm-cormorantLight-30-20px {
		text-transform: initial
	}

	.sm-project-f9235681b70576b01b6e0b3fdda04d79 .sm-cormorantRegular-70-30 {
		font-size: 60px;
		line-height: 42px
	}

	.sm-project-f9235681b70576b01b6e0b3fdda04d79 .sm-contact .sm-cormorantRegular-70-30 {
		font-size: 56px;
		line-height: 42px
	}

	.sm-project-0ea2850f2220bf01adc682acde1c2af1 .sm-cormorantRegular-70-30 {
		font-size: 48px
	}

	.sm-project-30b556e441895c509e8d951deb32a7c6 .sm-cormorantRegular-70-30,
	.sm-project-bcf054a014697329662200396fc61bc1 .sm-cormorantRegular-70-30 {
		font-size: 60px
	}

	.sm-project-0993dc3cbe37c2317538c6c024393397 .sm-contact .sm-cormorantRegular-70-30,
	.sm-project-0993dc3cbe37c2317538c6c024393397 .sm-cormorantRegular-70-30,
	.sm-project-0993dc3cbe37c2317538c6c024393397 .sm-cormorantRegular-70-40,
	.sm-project-ea46d7708f5ed77b9dfbddf59523f4c9 .sm-contact .sm-cormorantRegular-70-30,
	.sm-project-ea46d7708f5ed77b9dfbddf59523f4c9 .sm-cormorantRegular-70-30,
	.sm-project-ea46d7708f5ed77b9dfbddf59523f4c9 .sm-cormorantRegular-70-40 {
		font-size: 50px;
		line-height: 40px;
		padding: 0 20px
	}

	.sm-project-f94cabc1d4e6efdffa33c6ad19cef347 .sm-contact .sm-cormorantRegular-70-30,
	.sm-project-f94cabc1d4e6efdffa33c6ad19cef347 .sm-cormorantRegular-70-30,
	.sm-project-f94cabc1d4e6efdffa33c6ad19cef347 .sm-cormorantRegular-70-40 {
		font-size: 44px;
		line-height: 40px
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e .sm-cormorantLight-30-20px {
		font-size: 30px
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e p.sm-cormorantRegular-100-30 {
		font-size: 65px !important
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e div.sm-cormorantRegular-100-30 {
		font-size: 44px !important
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e .sm-cormorantRegular-100-50 {
		font-size: 80px;
		line-height: 55px
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e .sm-cormorantRegular-70-40 {
		font-size: 70px
	}

	.sm-project-ad8a2928e187149147dc30ef45de5e9e .sm-footer p.sm-cormorantRegular-100-30 {
		line-height: 70px
	}

	.sm-project-a14fb8a6a7c84f9afdf0b02b935777e2 .sm-contacts__inner h2 span {
		position: initial
	}

	.sm-project-bd057ba4aa8ea233d00d2343dc1136c8 .sm-cormorantRegular-70-30 {
		font-size: 46px;
		line-height: 44px
	}

	.sm-project-1b6a35df8c6e3032d99926c4a966c78e .sm-date__calendar-full {
		font-size: 28px
	}

	.sm-project-1b6a35df8c6e3032d99926c4a966c78e .sm-cormorantLight-30-20px {
		font-size: 18px
	}

	.sm-project-b65dc6d4eb095b18df2e65e7b3bb8b2e .sm-text-80px {
		font-size: 60px
	}

	.sm-project-0e25d07dd298ece2f1c890d37b06f758 .sm-contact .sm-cormorantRegular-70-30,
	.sm-project-0e25d07dd298ece2f1c890d37b06f758 .sm-cormorantRegular-70-30,
	.sm-project-0e25d07dd298ece2f1c890d37b06f758 .sm-timer__container-titel {
		font-size: 55px;
		line-height: 50px
	}

	.sm-project-8a300865e5f341dd6ad841df1e5bc961 .sm-contact .sm-cormorantRegular-70-30,
	.sm-project-8a300865e5f341dd6ad841df1e5bc961 .sm-cormorantRegular-70-30,
	.sm-project-8a300865e5f341dd6ad841df1e5bc961 .sm-timer__container-titel {
		font-size: 60px;
		line-height: 40px
	}

	.sm-project-0e25d07dd298ece2f1c890d37b06f758 .sm-cormorantRegular-100-50,
	.sm-project-0e25d07dd298ece2f1c890d37b06f758 .sm-footer__shell-love_text {
		font-size: 90px
	}

	.sm-project-0ada64bfcd9248567889b901ed347db6 .sm-cormorantRegular-70-30 {
		font-size: 70px;
		line-height: 45px
	}

	.sm-project-9da4c972a1f3411769765bec68bf8eda .sm-countdown-text {
		font-size: 32px
	}
}

.sm-project-d7215d291526d9fb1fb64788797d47af .sm-timing .sm-container {
	display: flex;
	flex-direction: column
}

.sm-project-d7215d291526d9fb1fb64788797d47af .sm-timing .sm-container .sm-timing__item:nth-child(3) {
	order: 0
}

.sm-project-d7215d291526d9fb1fb64788797d47af .sm-timing .sm-container .sm-timing__item:nth-child(2) {
	order: 1
}

.sm-project-d7215d291526d9fb1fb64788797d47af .sm-timing .sm-container .sm-timing__item:nth-child(4) {
	order: 2
}

.sm-project-d7215d291526d9fb1fb64788797d47af .sm-timing .sm-container .sm-timing__item:nth-child(5) {
	order: 3
}

.sm-project-003171861179a53f3af0619b528b079f .sm-contacts__inner h2 span {
	left: -77px
}

.sm-form__input::placeholder {
	border-bottom: initial !important
}

.sm-form .radio-input {
	-webkit-appearance: none;
	appearance: none;
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
	background: #fff no-repeat center center
}

.sm-form .radio-input:checked {
    background-color: #4CAF50;
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border: 2px solid #4CAF50;
}

.sm-form__drinks[data-sm-anketa-toggle],
.sm-form_right[data-sm-anketa-toggle],
.sm-survey__body .sm-form__row[data-sm-anketa-toggle] {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.sm-form__drinks .sm-form__drinks-check,
.sm-form__drinks .sm-form__drinks-text {
	margin-top: 20px
}

.sm-survey__body .sm-form__row[data-sm-anketa-toggle] .sm-checkbox+label {
	text-align: left
}

.sm-form__in~.sm-form__row-title,
[data-sm-anketa]~.sm-form-label {
	margin-top: 40px;
	margin-bottom: 20px
}

.sm-chekbox__wrapp~label,
.sm-form_preferences-check_inner~p,
.sm-form_preferences-check~p,
.sm-form_preferences~p {
	margin-top: 20px;
	margin-bottom: 10px
}

.sm-chekbox__wrapp~label {
	display: block
}

.modal-open .sm-form_checkbox [data-sm-alcoitem],
.sm-questionnaire-form .sm-form_checkbox [data-sm-alcoitem] {
	display: block
}

.sm-form__block .sm-form_checkbox {
	height: initial;
	min-height: 30px
}

[data-sm-alcoitem] {
	white-space: initial !important;
	text-align: left
}

.form label,
.modal-open .sm-form_checkbox,
.sm-form__item,
.sm-questionnaire-form .sm-form_checkbox {
	align-items: start
}

.sm-form__row input[type=checkbox]+label:before {
	margin-top: 3px
}

@media (min-width:500px) {
	.sm-form__left {
		min-width: 50%
	}

	.sm-form__wrapper {
		gap: 30px
	}
}

.sm-about__img-in,
.sm-banner__img,
.sm-contact__img-wrapp,
.sm-date__img-wrapp,
.sm-fotos__main,
.sm-fotos__slider-item,
.sm-img-wrapp,
.sm-location__content-picture,
.sm-location__foto-item,
.sm-location__foto-main-im,
.sm-location__img,
.sm-location__img-wrapp,
.sm-location__wrap-right,
.sm-main__content__img,
.sm-moment__wrapper-photo,
.sm-moments__fotos-item,
.sm-template4 .sm-main__content-img,
.sm-template6 .sm-dress-code__img-wrapp a,
.sm-template6 .sm-location__body,
.sm-template7 .mask-img img,
.sm-wishes__img,
.sm-wishes__img-wrapp {
	overflow: hidden
}

.sm-edit.jsScroll__scrolled .sm-about__img-in img,
.sm-edit.jsScroll__scrolled .sm-all__img-in img,
.sm-edit.jsScroll__scrolled .sm-banner__img img,
.sm-edit.jsScroll__scrolled .sm-contact__img-wrapp img,
.sm-edit.jsScroll__scrolled .sm-date__img-wrapp img,
.sm-edit.jsScroll__scrolled .sm-form__img img,
.sm-edit.jsScroll__scrolled .sm-fotos__main img,
.sm-edit.jsScroll__scrolled .sm-fotos__slider-item img,
.sm-edit.jsScroll__scrolled .sm-img-wrapp img,
.sm-edit.jsScroll__scrolled .sm-location__content-picture_img,
.sm-edit.jsScroll__scrolled .sm-location__foto-item img,
.sm-edit.jsScroll__scrolled .sm-location__foto-main-im img,
.sm-edit.jsScroll__scrolled .sm-location__img img,
.sm-edit.jsScroll__scrolled .sm-location__img-wrapp img,
.sm-edit.jsScroll__scrolled .sm-location__wrap-right img,
.sm-edit.jsScroll__scrolled .sm-main__content__img img,
.sm-edit.jsScroll__scrolled .sm-main__img img,
.sm-edit.jsScroll__scrolled .sm-moment__wrapper-photo img,
.sm-edit.jsScroll__scrolled .sm-moments__fotos-item img,
.sm-edit.jsScroll__scrolled .sm-wishes__img img,
.sm-edit.jsScroll__scrolled .sm-wishes__img-wrapp img,
.sm-template4 .sm-edit.jsScroll__scrolled .sm-main__content-img img,
.sm-template6 .sm-edit.jsScroll__scrolled .sm-dress-code__img-wrapp img,
.sm-template6 .sm-edit.jsScroll__scrolled .sm-location__body img,
.sm-template60 .sm-main.sm-edit.jsScroll__scrolled .sm-main_video,
.sm-template7 .sm-edit.jsScroll__scrolled .mask-img img,
.sm-template9 .sm-edit.jsScroll__scrolled .sm-main__wrap-img img {
	animation-delay: 2s;
	animation: kenBurns 5s ease-in-out both
}

.sm-template13 .sm-location__foto-item img,
.sm-template13 .sm-moments__fotos-item img,
.sm-template44 .sm-main__img img,
.sm-template53 .sm-main__img__wrapper>img {
	animation: none !important
}

.sm-painted .sm-background-photo:not([class*=__bg]),
.sm-painted>picture:not(.sm-painted-show),
.sm-project-da5ff694fe5d75fcfe38845f9d4eccb6 .sm-footer__shell-love_text>span:not([data-sm-text=GROOM]),
.sm-project-da5ff694fe5d75fcfe38845f9d4eccb6 .sm-main__content-titel>span:not([data-sm-text=GROOM]) {
	display: none
}

.sm-edit.jsScroll__scrolled [data-sm-text]:not(h2) {
	animation-delay: 3s;
	animation: fadeText 1s ease-in-out both;
	transform-origin: 50% 50%
}

.sm-edit.jsScroll__scrolled h2,
.sm-template37 .sm-main.sm-edit.jsScroll__scrolled h1.sm-main__content-titel {
	animation-delay: 2s;
	animation: fadeText 1s ease-in-out both;
	transform-origin: 50% 50%
}

.sm-template47 [data-sm-text]:not(h2) {
	padding: 30px 0;
	margin: -30px 0
}

.sm-template47 .sm-footer__shell-love [data-sm-text]:not(h2),
.sm-template47 .sm-main__content-titel [data-sm-text]:not(h2) {
	padding: 30px 0 0 60px;
	margin: -30px 0 0-60px
}

.sm-template14 .sm-edit.jsScroll__scrolled [data-sm-text]:not(h2),
.sm-template14 .sm-edit.jsScroll__scrolled h2 {
	padding: 30px 10px;
	margin: -30px 10px
}

.sm-template37 .sm-main.sm-edit.jsScroll__scrolled [data-sm-text]:not(h2) {
	animation: none
}

.sm-project-96f8116b865155529195300a6c34b723 h1 {
	font-size: 0
}

.sm-project-96f8116b865155529195300a6c34b723 h1:before {
	content: "the engagement day";
	text-transform: uppercase;
	font-size: 70px;
	display: block;
	text-align: center
}

.sm-project-b39edefc75b90c2f92b3eaed6d7660fd .sm-footer {
	position: initial
}

@media (max-width:450px) {
	.sm-project-96f8116b865155529195300a6c34b723 h1:before {
		font-size: 20px
	}
}

.sm-own_wrapper {
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center
}

[data-sm-text=NEW_OWN_TEXT],
[data-sm-text=OWN_TEXT] {
	font-family: "SMTextsFont", sans-serif;
	text-align: center;
	margin-top: 10px;
	font-size: 20px;
	line-height: 20px;
	grid-area: own-text
}

.sm-own_wrapper-img {
	width: 700px;
	height: 700px;
	grid-area: own-image
}

.sm-own_wrapper-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center
}

[data-sm-text=NEW_OWN_TITLE],
[data-sm-text=OWN_TITLE] {
	font-size: 80px;
	line-height: 88px;
	font-family: "SMHeadersFont", sans-serif;
	font-weight: 400;
	text-align: center;
	grid-area: own-title
}

.sm-own[data-position="1"] [data-sm-text=NEW_OWN_TITLE],
.sm-own[data-position="1"] [data-sm-text=OWN_TITLE] {
	order: 0
}

.sm-own[data-position="1"] .sm-own_wrapper-img {
	order: 1;
	margin-bottom: 20px
}

.sm-own[data-position="1"] [data-sm-text=NEW_OWN_TEXT],
.sm-own[data-position="1"] [data-sm-text=OWN_TEXT] {
	order: 2
}

.sm-own [data-sm-href=NEW_OWN_BUTTON_LINK],
.sm-own [data-sm-href=OWN_BUTTON_LINK] {
	order: 5
}

@media (min-width:500px) {
	.sm-own[data-position="2"] .sm-own_wrapper {
		display: grid;
		grid-template-areas: "own-image own-title""own-image own-text";
		grid-template-columns: 50% 50%
	}

	.sm-own[data-position="2"] [data-sm-text=OWN_TITLE] {
		text-align: left;
		align-self: end
	}

	.sm-own[data-position="2"] .sm-own_wrapper-img,
	.sm-own[data-position="3"] .sm-own_wrapper-img {
		width: 100%;
		height: 100%;
		align-self: center
	}

	.sm-own[data-position="2"] [data-sm-text=OWN_TEXT] {
		text-align: left;
		align-self: start
	}

	.sm-own[data-position="3"] .sm-own_wrapper {
		display: grid;
		grid-template-areas: "own-title own-image""own-text own-image";
		grid-template-columns: 50% 50%
	}

	.sm-own[data-position="3"] [data-sm-text=OWN_TITLE] {
		text-align: right;
		align-self: end
	}

	.sm-own[data-position="3"] [data-sm-text=OWN_TEXT] {
		text-align: right;
		align-self: start
	}
}

.sm-own .slick-dots {
	margin-left: 0;
	margin-top: 0;
	position: absolute;
	bottom: -25px;
	display: flex;
	gap: 10px;
	width: fit-content;
	left: 50%;
	transform: translateX(-50%)
}

.sm-own .slick-dots li {
	list-style: none
}

.sm-own .slick-dots button {
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background-color: #999;
	opacity: .5;
	color: transparent;
	font-size: 0
}

.sm-own .slick-dots li.slick-active button {
	opacity: 1
}

.sm-own .slick-arrow {
	position: absolute;
	bottom: -50px;
	font-size: 0;
	width: 50px;
	height: 34px;
	background-image: url(/sitemaker/templates/template21/assets/img/arrow-left.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 3
}

.sm-own .slick-arrow.sm-prev {
	left: 50%;
	transform: translateX(-65px)
}

.sm-own .slick-arrow.sm-next {
	-moz-transform: translateX(15px) scale(-1, 1);
	-o-transform: translateX(15px) scale(-1, 1);
	-webkit-transform: translateX(15px) scale(-1, 1);
	transform: translateX(15px) scale(-1, 1);
	left: 50%
}

.sm-own {
	background: #fff
}

.sm-own_wrapper-img:not(.slick-initialized) {
	overflow: hidden;
	white-space: nowrap
}

.sm-own_wrapper-img:not(.slick-initialized) img {
	min-height: 100%
}

@media (max-width:500px) {
	.sm-own_wrapper {
		padding: 60px 0
	}

	[data-sm-text=NEW_OWN_TITLE],
	[data-sm-text=OWN_TITLE] {
		font-size: 30px;
		line-height: 40px;
		order: 0
	}

	[data-sm-text=NEW_OWN_TEXT],
	[data-sm-text=OWN_TEXT] {
		font-size: 18px;
		line-height: 22px;
		order: 2
	}

	.sm-own_wrapper-img {
		width: 320px;
		height: 320px;
		order: 1
	}
}

.sm-project-ef8a812b1c251e229644ab2c9a5b372f .sm-own [data-sm-href=OWN_BUTTON_LINK] {
	background-color: #171511 !important
}

.sm-project-da5ff694fe5d75fcfe38845f9d4eccb6 .sm-main_save {
	font-size: 0
}

.sm-project-da5ff694fe5d75fcfe38845f9d4eccb6 .sm-main_save:after {
	font-size: 32px;
	content: "The Birthday"
}

@media (max-width:500px) {
	.sm-project-da5ff694fe5d75fcfe38845f9d4eccb6 .sm-main_save:after {
		font-size: 24px
	}

	.sm-project-3962d14852712f7795301901861921a3 .sm-countdown-time {
		font-size: 46px
	}

	.sm-project-1328185622893b5b0c4152a224d392c8 .sm-manropeMedium-50px-20,
	.sm-project-1328185622893b5b0c4152a224d392c8 .sm-manropeRegular-20-18,
	.sm-project-3962d14852712f7795301901861921a3 .sm-countdown-text {
		font-size: 16px
	}

	.sm-project-3962d14852712f7795301901861921a3 #sm-married>.sm-container>.sm-flex {
		overflow: hidden;
		padding-bottom: 20px
	}

	.sm-project-3962d14852712f7795301901861921a3 #sm-married .sm-flex-item.sm-img-border {
		padding-right: 10px
	}

	.sm-project-e9e213f794c3a1d197aa7ebb8ccb3675 .sm-date__calendar-full:after,
	.sm-project-e9e213f794c3a1d197aa7ebb8ccb3675 .sm-date__calendar-full:before {
		width: 30px
	}

	.sm-project-69349dffe4be7b636a4b6cdd02babbe8 .sm-timer-time {
		gap: 14px
	}
}

.sm-demo_view {
	pointer-events: none
}

.nstyle.sm-text_align-left,
.nstyle.sm-text_align-left *,
.sm-text_align-left,
.sm-text_align-left * {
	display: block;
	text-align: left !important
}

.nstyle.sm-text_align-center,
.nstyle.sm-text_align-center *,
.sm-text_align-center,
.sm-text_align-center * {
	display: block;
	text-align: center !important
}

.nstyle.sm-text_align-right,
.nstyle.sm-text_align-right *,
.sm-text_align-right,
.sm-text_align-right * {
	display: block;
	text-align: right !important
}

[data-sm-text] a {
	color: inherit;
	word-wrap: break-word;
	text-decoration: underline
}

@media (max-width:500px) {
	.sm-project-8d6bf5bb673c3c3ce67e67f6c3df68e9 .sm-moments__inner {
		margin-top: 208px;
		padding-top: 20px
	}

	.sm-project-8d6bf5bb673c3c3ce67e67f6c3df68e9 .sm-moments__title {
		position: absolute;
		top: -208px;
		right: 20px
	}

	.sm-project-8d6bf5bb673c3c3ce67e67f6c3df68e9 .sm-moments__title:after {
		top: initial;
		bottom: initial
	}

	.sm-project-8d6bf5bb673c3c3ce67e67f6c3df68e9 .sm-moments__fotos-item-w2 {
		width: 160px;
		height: 165px;
		left: inherit;
		top: inherit;
		bottom: 50px;
		right: 15px;
		z-index: 6
	}

	.sm-project-8d6bf5bb673c3c3ce67e67f6c3df68e9 .sm-moments__tx-t {
		min-height: 65px
	}

	.sm-template53 [data-sm-text=OWN_TITLE] {
		font-size: 48px;
		line-height: 100%
	}
}

[data-sm-href=OWN_BUTTON_LINK]:after {
	display: none !important
}

.sm-mob-btn {
	transition: .5s
}

.sm-mob-btn.sm-hidden_slow {
	bottom: -100px
}

.sm-project-17feef82bd1bbeea69a3f788c93ed7a5 .sm-title span:nth-child(3) {
	display: none
}

.sm-project-87bbb5b5ade68a91717ca81dde3ff26c [data-sm-text=OWN_TITLE] {
	font-size: 48px
}

.sm-project-87bbb5b5ade68a91717ca81dde3ff26c [data-sm-text=OWN_TEXT] {
	font-size: 28px
}

@media (max-width:500px) {
	.sm-project-87bbb5b5ade68a91717ca81dde3ff26c [data-sm-text=OWN_TITLE] {
		font-size: 20px
	}

	.sm-project-87bbb5b5ade68a91717ca81dde3ff26c [data-sm-text=OWN_TEXT] {
		font-size: 17px
	}

	.sm-project-87bbb5b5ade68a91717ca81dde3ff26c .sm-own_wrapper {
		gap: 0
	}
}

.sm-project-50caf03856f0dc8a7f383e508ccfb19f .sm-questionnaire__head .dop-text,
.sm-project-f80329df9c8e10fcde0c781d8059da58 .sm-dress-code__box-gallery {
	display: none
}

.sm-project-459e0a9baedb30d1baf356849c19745b [data-sm-text=OWN_TEXT] {
	font-weight: 200;
	line-height: 120%
}

.sm-project-57949e3e32ad6add41f427a27c9a44d4 .sm-madewithlove,
.sm-project-bb8e470260382b19ee657f6b76eb7654 .sm-madewithlove {
	display: none !important
}

[data-project-id="91044"] [data-sm-href=OWN_BUTTON_LINK] {
	color: #fff;
	border: 1px solid #fff
}

.sm-own_wrapper-img[data-asp="1"] {
	height: 1000px;
	width: initial;
	aspect-ratio: 3/4
}

.sm-own_wrapper-img[data-asp="2"] {
	width: 1000px;
	height: 1000px
}

.sm-own_wrapper-img[data-asp="3"] {
	width: 1000px;
	height: initial;
	aspect-ratio: 4/3
}

@media (max-width:500px) {

	.sm-own_wrapper-img[data-asp="1"],
	.sm-own_wrapper-img[data-asp="2"],
	.sm-own_wrapper-img[data-asp="3"] {
		width: calc(100% + 32px);
		height: initial
	}
}

.sm-own_video {
	width: 100%;
	max-width: 720px;
	max-height: 720px
}

.sm-video_wrapper {
	position: relative;
	display: table;
	margin: auto;
	overflow: hidden
}

.sm-video_wrapper:after,
.sm-video_wrapper:before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 1
}

.sm-video_wrapper:after {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .6);
	z-index: 2
}

.sm-video_wrapper:before {
	width: 60px;
	height: 60px;
	background: #fff;
	clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
	z-index: 3;
	transition: opacity .2s ease
}

.sm-video_wrapper:not(.paused):after,
.sm-video_wrapper:not(.paused):before {
	opacity: 0
}

.sm-own_wrapper-img[data-asp="4"] {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	height: initial;
	gap: 80px
}

.sm-own_wrapper-img[data-asp="7"] {
	display: grid;
	width: 100%;
	height: 1500px;
	gap: 50px;
	grid-template-rows: 1fr 1fr 1fr
}

.sm-own_wrapper-img[data-asp="7"] img {
	max-height: 400px
}

@media (max-width:500px) {
	.sm-own {
		overflow: hidden
	}

	.sm-own_wrapper-img[data-asp="4"] {
		gap: 10px;
		width: calc(100% + 32px);
		height: 300px
	}

	.sm-own_wrapper-img[data-asp="7"] {
		height: 395px;
		gap: 10px
	}

	.sm-video_wrapper:before {
		width: 40px;
		height: 40px
	}

	.sm-video_wrapper:after {
		width: 80px;
		height: 80px
	}

	.sm-own_video {
		max-height: 500px
	}
}

.sm-template107 .sm-decor-line .sm-decor_blink,
.sm-template107 .sm-decor-line .sm-decor_blink:after {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #fdf6a5;
	position: absolute;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	transform: skew(50deg)
}

.sm-template107 .sm-decor-line .sm-decor_blink:after {
	width: 110%;
	height: 110%;
	content: "";
	filter: blur(20px);
	-webkit-filter: blur(20px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:before {
	position: absolute;
	content: "";
	left: 2px;
	top: 2px;
	right: 2px;
	border-radius: 100%;
	bottom: 2px;
	background: #ffea00;
	filter: blur(10px);
	-webkit-filter: blur(10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(1) {
	left: 50%;
	top: 50%;
	transform: translate(-16px, 4px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(2) {
	left: 12%;
	top: 50%
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(3) {
	left: 70%;
	top: 60%;
	transform: translate(4px, 10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(4) {
	left: 61%;
	top: 57%;
	transform: translate(4px, 10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(5) {
	left: 50%;
	top: 55%;
	transform: translate(4px, 10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(6) {
	left: 21%;
	top: 45%;
	transform: translate(4px, 10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(7) {
	left: 20%;
	top: 35%;
	transform: translate(4px, 10px)
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(3),
.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(5),
.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(8) {
	animation: blinker 2.4s linear infinite
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(1),
.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(2),
.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(4) {
	animation: blinker 2s linear infinite
}

.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(6),
.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(7) {
	animation: blinker 1.8s linear infinite
}

@media (min-width:500px) {
	.sm-template107 .sm-decor-line .sm-decor_blink {
		width: 15px;
		height: 15px;
		border-radius: 100%;
		background: #fdf6a5;
		position: absolute;
		filter: blur(5px);
		-webkit-filter: blur(5px);
		transform: skew(50deg);
		margin-top: -4px;
		margin-left: -5px
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(1) {
		left: 50%;
		top: 50%;
		transform: translate(-26px, 14px)
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(2) {
		left: 12%;
		top: 48%
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(3) {
		left: 70%;
		top: 60%;
		transform: translate(4px, 20px)
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(4) {
		left: 61%;
		top: 57%;
		transform: translate(4px, 20px)
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(5) {
		left: 50%;
		top: 55%;
		transform: translate(4px, 24px)
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(6) {
		left: 21%;
		top: 45%;
		transform: translate(13px, 20px)
	}

	.sm-template107 .sm-decor-line .sm-decor_blink:nth-child(7) {
		left: 20%;
		top: 35%;
		transform: translate(13px, 20px)
	}
}

.sm-template107 .sm-decor03 {
	animation: shaker 3s ease-in-out infinite
}

.sm-template107 .sm-decor02 {
	animation: shaker 2.8s ease-in-out infinite
}

.sm-template107 .sm-decor01 {
	animation: shaker 3.1s ease-in-out infinite
}

.sm-template107 .sm-decor-flower02 {
	animation: shaker 2.9s ease-in-out infinite
}

.sm-template109 .sm-decor01,
.sm-template109 .sm-decor02,
.sm-template109 .sm-decor03,
.sm-template109 .sm-decor04 {
	animation: shaker2 2.9s ease-in-out infinite
}

.sm-template111 .sm-decor-title-left {
	animation: shaker2 3.1s ease-in-out infinite
}

.sm-template111 .sm-decor-title-right {
	animation: shaker2 2.8s ease-in-out infinite
}

.sm-template111 .sm_colors:nth-child(1) {
	animation: shaker 2.5s ease-in-out infinite
}

.sm-template111 .sm_colors:nth-child(2) {
	animation: shaker 2.3s ease-in-out infinite
}

.sm-template111 .sm_colors:nth-child(3) {
	animation: shaker 2.7s ease-in-out infinite
}

.sm-template111 .sm_colors:nth-child(4) {
	animation: shaker 2.4s ease-in-out infinite
}

.sm-template111 .sm_colors:nth-child(5) {
	animation: shaker 2.6s ease-in-out infinite
}

.sm-template111 .sm-frame-health {
	animation: heartbeatSmallest 1s infinite
}

.sm-template92 .sm-new-own,
.sm-template92 .sm-own {
	padding: 100px 0
}

.sm-template92 [data-sm-text=NEW_OWN_TEXT],
.sm-template92 [data-sm-text=OWN_TEXT] {
	font-weight: 300;
	font-size: 24px;
	line-height: 29.26px;
	text-align: center
}

@media (max-width:500px) {

	.sm-template92 .sm-new-own,
	.sm-template92 .sm-own {
		padding: 0 24px 30px
	}

	.sm-template92 [data-sm-text=NEW_OWN_TEXT],
	.sm-template92 [data-sm-text=OWN_TEXT] {
		font-weight: 400;
		font-size: 22px
	}
}

.sm-template106 .sm-form .sm-form_checkbox .sm-form_checkbox_box,
.sm-template107 .sm-form .sm-form_checkbox .sm-form_checkbox_box,
.sm-template108 .sm-form .sm-form_checkbox .sm-form_checkbox_box,
.sm-template109 .sm-form .sm-form_checkbox .sm-form_checkbox_box {
	pointer-events: all
}

.sm-template108 .modal-open .sm-form_checkbox [data-sm-alcoitem],
.sm-template108 .sm-questionnaire-form .sm-form_checkbox [data-sm-alcoitem],
.sm-template109 .modal-open .sm-form_checkbox [data-sm-alcoitem],
.sm-template109 .sm-questionnaire-form .sm-form_checkbox [data-sm-alcoitem] {
	padding-left: 0 !important
}

.sm-template109 .sm-decor-health {
	animation: heartbeat 1s infinite
}

.sm-template106 .sm-wishes__content-slider .slick-track,
.sm-template107 .sm-wishes__content-slider .slick-track,
.sm-template108 .sm-wishes__content-slider .slick-track,
.sm-template109 .sm-wishes__content-slider .slick-track {
	align-items: center;
	display: flex
}

@media (max-width:500px) {
	.sm-template96[data-project-id="94819"] .sm-dress-code {
		background-size: 110%auto
	}

	.sm-project-b630e250ec9428a7c89fd42a85d2186d .sm-countdown__wrapp {
		gap: 33px
	}

	.sm-project-b630e250ec9428a7c89fd42a85d2186d .sm-countdown__item+.sm-countdown__item::before {
		left: -15px
	}

	.sm-project-b630e250ec9428a7c89fd42a85d2186d .sm-form__row:nth-child(2) .sm-form__input-wrapp:nth-child(2) {
		position: initial
	}
}

.sm-template110 .sm-helper-button svg.sm-painted_icon path {
	fill: transparent !important
}

.sm-project-7a7f4ad24bee489dc7e8f1b2d0e944ae .sm-helper-button svg.sm-painted_icon path {
	stroke: #fff
}

.sm-policy_agree {
	border-top: 1px solid rgba(0, 0, 0, .43);
	padding-top: 10px;
	font-size: 12px
}

.sm-policy_agree a {
	color: inherit;
	text-decoration: underline;
	margin-left: 10px
}

@media (max-width:500px) {
	.sm-form__block.sm-policy_agree .sm-form_checkbox {
		display: flex;
		font-size: 12px
	}

	.sm-form__block.sm-policy_agree a {
		margin-left: 5px
	}
}


/* Модальное окно — новая стилизация */
.sm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 73, 58, 0.9); /* полупрозрачный фон в тон основной палитры */
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sm-modal.active {
    display: flex;
    opacity: 1;
}

.sm-modal .sm-container {
    max-width: 600px;
    width: 90%;
    background: #fffaf1; /* тёплый светлый фон, как у карточек */
    border-radius: 32px;
    padding: 40px 30px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.sm-modal.active .sm-container {
    transform: scale(1);
}

/* Декоративная линия сверху (имитация ленты) */
.sm-modal .sm-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c0a080;
    border-radius: 2px;
}

/* Кнопка закрытия — изящный кружок */
.sm-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0ebe2;
    transition: all 0.2s ease;
    z-index: 10;
}

.sm-modal-close:hover {
    background: #e0d6c8;
    transform: rotate(90deg);
}

.sm-modal-close_img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.sm-modal-titel {
    font-family: "SMHeadersFont", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #45493a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.sm-modal-titel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #c0a080;
}

/* Добавим дату в модальное окно (если вы добавите блок с датой) */
.modal-date {
    text-align: center;
    font-family: "SMHeadersFont", sans-serif;
    font-size: 24px;
    color: #6b6d61;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Стили полей формы внутри модалки */
.sm-modal .sm-form__input {
    background: #fff;
    border: 1px solid #e0d6c8;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 16px;
    transition: 0.2s;
}

.sm-modal .sm-form__input:focus {
    border-color: #c0a080;
    box-shadow: 0 0 0 3px rgba(192, 160, 128, 0.2);
    outline: none;
}

.sm-modal .sm-form__block {
    margin-bottom: 25px;
}

/* Радио-кнопки и чекбоксы — более изящно */
.sm-modal .sm-form__item-radio .radio-input + span {
    font-size: 16px;
    color: #45493a;
}

.sm-modal .sm-form_checkbox_box {
    border-color: #c0a080;
    border-radius: 6px;
}

.sm-modal .sm-form_checkbox_input:checked + .sm-form_checkbox_box {
    background-color: #c0a080;
    border-color: #c0a080;
}

/* Кнопка отправки */
.sm-modal .sm-btn {
    display: block;
    width: 100%;
    background: #c0a080;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 14px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 20px;
}

.sm-modal .sm-btn:hover {
    background: #a88868;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .sm-modal .sm-container {
        padding: 30px 20px;
        width: 95%;
    }
    .sm-modal-titel {
        font-size: 24px;
    }
    .modal-date {
        font-size: 20px;
    }
    .sm-modal .sm-btn {
        font-size: 16px;
        padding: 12px;
    }
}

