/*Общие стили для мобильной/десктопной форм: */

.form-title {
	text-align: center;
	margin-bottom: 25px;
	margin-top: 25px;
	font-size: 24px;
	color: #333;
	font-family: 'PFBeauSansPro';
    font-weight: 700;
}

.form-group {
	margin-bottom: 10px;
}

.form-group label {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	color: #555;
	font-family: 'PFBeauSansPro';
    font-weight: 400;
}

.form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	box-sizing: border-box;
}

.checkbox-group {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 0.25px solid #444;
	border-radius: 3px;
	margin-right: 10px;
	cursor: pointer;
	position: relative;
	outline: none;
}

.checkbox-group input[type="checkbox"]:checked {
	background-color: #A02026;
	/* бордовый */
	border-color: #A02026;
}

.checkbox-group input[type="checkbox"]:checked::after {
	content: "✓";
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
}

.checkbox-group label {
	font-size: 13px;
	color: #555;
	cursor: pointer;
	font-family: 'PFBeauSansPro';
    font-weight: 400;
}

.submit-btn {
	width: 50%;
	padding: 12px;
	background-color: #C1272D;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'PFBeauSansPro';
    font-weight: 400;
	cursor: pointer;
	margin-top: 20px;
	transition: background-color 0.3s;
	margin-left: auto;
}

.submit-container {
	text-align: center;
	margin-top: 0px;
}

.submit-btn:hover {
	background-color: #A02026;
}

/*Общие стили для мобильной/десктопной форм(КОНЕЦ) */


/* Стили для мобильного модального окна:*/
.mobile-call-btn {
	display: none;
	background-color: #C1272D;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	margin: 20px auto;
	width: 100%;
	max-width: 200px;
}

.mobile-modal-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	overflow-y: auto;
}

.mobile-modal-container {
	position: relative;
	background-color: #fff;

	width: 90%;
	padding: 20px 20px 20px;
	box-sizing: border-box;
	margin: auto;
	margin-top: 25px;
}

.mobile-modal-close-btn {
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 28px;
	color: #333;
	cursor: pointer;
	z-index: 1001;
}

/* Стили для формы внутри модалки */
.mobile-feedback-form {
	max-width: 100%;
	padding: 0;
}

.mobile-form-title {
	text-align: center;
	margin-bottom: 25px;
	font-size: 24px;
	color: #333;
	font-family: 'PFBeauSansPro';
    font-weight: 700;
}

.mobile-modal {
	display: none;
}