.post_cont {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}

.post_group_title {
	width: 100%;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 10px;
}

.post_separator {
	width: 100%;
	border-top: 1px solid var(--vvlight-color);
	margin-top: 10px;
	padding-bottom: 5px;
}

.post_mandatory {
	color: red;
}

.post_input {
	display: inline-block;
	width: 49%;
	padding-top: 5px;
	padding-bottom: 5px;
}

@media (max-width: 600px) {
	.post_input {
		display: block;
		width: 100%;
	}
}

.post_checkbox {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
}

.post_cropper {
	display: block;
	width: 100%;
	text-align: center;
}

.post_cropper button {
	padding: 10px;
	box-sizing: border-box;
	font-family: var(--font-family);
	line-height: var(--line-height);
	color: var(--main-color);
	background-color: var(--vvvlight-color);
	border: 1px solid var(--vvlight-color);
	border-radius: 5px;
	cursor: pointer;
}

.post_input_label {
	width: 100%;
	margin-bottom: 5px;
}

.post_input_field {
	width: 95%;
}
@media (max-width: 600px) {
	.post_input_field {
		width: 100%;
	}
}

.post_input_field > input:not([type="color"]) {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	font-family: var(--font-family);
	line-height: var(--line-height);
	color: var(--main-color);
	background-color: var(--vvvlight-color);
	border: 1px solid var(--vvlight-color);
	border-radius: 5px;
	outline: none;
	outline-width: 0;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.post_input_field > select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	font-family: var(--font-family);
	line-height: var(--line-height);
	color: var(--main-color);
	background-color: var(--vvvlight-color);
	border: 1px solid var(--vvlight-color);
	border-radius: 5px;
	outline: none;
	outline-width: 0;
	-webkit-tap-highlight-color: transparent;
}

/* BEG: Color field */
.post_color_input {
	display: inline-block;
	width: 32%;
	padding-top: 10px;
	padding-bottom: 10px;
}

@media (max-width: 600px) {
	.post_color_input {
		display: block;
		width: 100%;
	}
}

.post_color_field {
	display: flex;
	align-items: center;
	gap: 10px;
}

.post_color_field > input[type="color"] {
	width: 50px;
	height: 42px;
	padding: 3px;
	box-sizing: border-box;
	border: 1px solid var(--vvlight-color);
	border-radius: 6px;
	background-color: var(--vvvlight-color);
	cursor: pointer;
}

.post_color_field > input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}

.post_color_field > input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 4px;
}

.post_color_field > input[type="color"]::-moz-color-swatch {
	border: none;
	border-radius: 4px;
}

.post_color_field > span {
	font-family: var(--font-family);
	color: var(--main-color);
	direction: ltr;
}
/* END Color field */

.post_delete_cont {
	display: grid;
	grid-template-columns: 75px 1fr;
	gap: 5px;
	width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding-top: 20px;
	border-top: 1px solid var(--vvlight-color);
	font-size: 0.8em;
}

.post_delete_btn {
	padding: 5px;
	background-color: red;
	color: #FFFFFF;
	border-radius: 5px;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
}

.post_delete_warning {
	padding: 5px;
}

.post_footer {
	width: 100%;
	border-top: 1px solid var(--vvlight-color);
	margin-top: 20px;
	padding: 20px;
	box-sizing: border-box;
	font-size: 0.8em;
	text-align: center;
}