.simple-form-prop-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 20px 80px;
	grid-template-areas: 
	"a e" 
	"b e" 
	"f e" 
	"c k" 
	"d l";
	width: 100%;
}

.simple-form__copyright{
	margin: 10px 0 0 0;
}

.simple-form {
	max-width: 1000px;
	margin: auto;
}
[data-grid="1"] {
	grid-area: a;
}

[data-grid="2"] {
	grid-area: b;
}

[data-grid="3"] {
	grid-area: c;
}

[data-grid="4"] {
	grid-area: d;
}

[data-grid="5"] {
	grid-area: e;
}

[data-grid="6"] {
	grid-area: f;
}

[data-grid="7"] {
	grid-area: g;
}

[data-grid="8"] {
	grid-area: h;
}

[data-grid="9"] {
	grid-area: k;
}

[data-grid="10"] {
	grid-area: l;
}
[data-grid="11"] {
	grid-area: f;
}


.simple-form-prop__title {
	font-size: 16px;
	margin-bottom: 5px;
}

.simple-form-prop__input input {
	border-radius: 5px;
	height: 38px;
	border: 1px solid #3c3b39;
	padding: 0 10px;
	width: 100%;
}

.simple-form-prop__file label {
	width: 100%;
	display: flex;
	align-items: center;
	border-radius: 5px;
	height: 38px;
	border: 1px solid #ff7518;
	padding: 0 10px;
	width: 100%;
	margin-top: 5px;
	cursor: pointer;
	display: none;
}

.simple-form-prop__file input {
	/* position: absolute; */
	margin-top: 10px;
	max-width: 100%;
	width: 100%;
}

.checkbox-description__title {
	color: #000;
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 600;
}

.checkbox-description__text {
	color: #757575;
}

.checkbox-description__text+.checkbox-description__text {
	margin-top: 10px;
	margin-bottom: 10px;
}

.simple-form-prop__checkbox label {
	width: 49%;
	margin: 5px 0;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.simple-form-prop__checkbox input {
	width: 18px;
	height: 18px;
	margin-right: 5px;
	cursor: pointer;
}

.simple-form-prop__submit input {
    background: #ff7518;
    margin: 10px 0 30px 0;
    height: 38px;
    width: 100%;
    max-width: 250px;
    color: #fff;
    border: 0;
    border-radius: 5px;
}

.simple-form-prop__input input[name="form_text_44"] {
	background: #fbdcbf;
	border-color: #f57906;
}

@media (max-width: 767px){
	.simple-form-prop-grid {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas: 
		"a" 
		"b" 
		"f"
		"c"
		"d"
		"e"
		"e"
		"e" 
		"k"
		"l" 
		;
	}
	
}