.content-snippet {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-form__block {
    flex: 1;
    min-width: 200px;
}

.custom-form__block--full {
    flex: 100%;
    margin-bottom: 15px;
}

.custom-form__block--full input[type='checkbox']{
    cursor: pointer;
}

.custom-input {
    display: flex;
    margin-bottom: 15px;
}

.custom-input__input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.custom-select select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.custom-form__block .btn {
    background-color: #00486c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.custom-form__block .btn:hover {
    background-color: #002639;
}

/* Стили для кастомного чекбокса */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    font-weight: bold;
    margin-bottom: 0;
}

/* Скрываем стандартный чекбокс */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Создаем кастомный чекбокс */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #ccc;
}

/* При наведении меняем цвет фона */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #eee;
}

/* Когда чекбокс активен, меняем цвет фона */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #00486c;
    border-color: #00486c;
}

/* Создаем галочку (скрытую по умолчанию) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Показываем галочку, когда чекбокс активен */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Стили для галочки */
.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.error {
	border: 1px solid red !important;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 500px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
}