:root {
	--white			:	#fff;
	--grey			:	#dadaeb;
	--light			:	#F7F7FF;
	
	--mainColor		:	#b6ffdd;
	--secondColor	:	#011277;
	
	--headline		:	#1d1d1d;
	--textColor		:	#4e5048;
	--linkColor		:	#ff0043;
	--linkColorH	:	#33736e;
	
	--error			:	#ff0043;
	--errorLight	:	#ffebed;
	--success		:	#2ea753;
	--successLight	:	#ebfff0;
	--warning		:	#ffc107;
	--warningLight	:	#fff9e7;
	--info			:	#214c8d;
	--infoLight	:		#e3eeff;
	
	--boxShadow		:	0px 24px 40px rgba(25, 34, 64, 0.15);
	--borderRadius	:	4px;
	--gradient		:	linear-gradient(45deg, #c61c71  0%, #f98d21 100%);
	--transition	:	all 0.2s ease-in-out;
	
	--maxWidth		:	1448px;
}
/*----------*/
/* !SECTION */
/*----------*/
section.single div.content {
	max-width: calc( var(--maxWidth) / 1.3 ) !important;
}
/*----------*/
/* !REQUEST */
/*----------*/
#requestForm *.box {
	border: 1px solid var(--grey);
	margin-bottom: 24px;
	padding: 24px 24px 12px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#requestForm *.box div.line {
	display: block;
}
#requestForm *.box div.line.hr {
	padding-bottom: 0;
}
#requestForm *.box p.desc {
	margin: 0;
	padding: 0 0 8px 0;
}
#requestForm *.box sup {
	color: var(--error);
}
#requestForm *.box h2 {
	max-width: inherit;
	margin: -24px -24px 0 -24px;
	border-bottom: 1px solid var(--grey);
	padding: 12px 24px;
	font-size: 24px;
	line-height: 32px;
}
#requestForm *.box h2::before,
#requestForm *.box h2::after {
	display: none;
}
#requestForm *.box span.inputField {
	max-width: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#requestForm *.box *.price span.inputField {
	width: auto;
}
#requestForm *.box *.full {
	width: 100%;
	max-width: 400px;
}
#requestForm *.box span.inputField *.messeHintText {
	width: 100%;
	font-size: 14px;
	color: var(--info);
}
#requestForm *.box span.inputField *.messeHintText ul {
	padding: 0 0 0 16px;
}
#requestForm *.box textarea.full {
	max-width: 100%;
}
#requestForm *.box *.price.small {
	width: 100%;
	max-width: 96px;
}
#requestForm *.box hr {
	margin: 0 0 12px 0 !important;
	background-color: var(--grey) !important;
	height: 1px !important;
	width: 100% !important;
}
#requestForm *.box *.contentBox {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
}
#requestForm *.box *.text *.contentBox,
#requestForm *.box *.date *.contentBox {
	flex-wrap: nowrap;
}
#requestForm *.box *.contentBox *.beforeElement {
	display: inline-block;
	max-width: 40%;
}
#requestForm *.box *.contentBox.radio *.beforeElement,
#requestForm *.box *.contentBox.checkbox *.beforeElement {
	padding-left: 8px;
	width: 100% !important;
}
#requestForm *.box *.contentBox *.afterElement {
	padding-left: 8px;
}
#requestForm *.box *.contentBox *.files {
	padding: 12px 24px;
	border: 2px dashed var(--grey);
	width: 100%;
}
#requestForm *.box *.contentBox.radio,
#requestForm *.box *.contentBox.checkbox {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
#requestForm *.box *.contentBox.radio *.beforeElement,
#requestForm *.box *.contentBox.checkbox *.beforeElement {
	max-width: 100%;
}
#requestForm *.box *.contentBox.radio label,
#requestForm *.box *.contentBox.checkbox label {
	margin: 4px 8px;
}
/*-------*/
/* !FORM */
/*-------*/
#requestForm *.box *.contentBox label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
}
#requestForm *.box *.contentBox input:not([type="checkbox"]),
#requestForm *.box *.contentBox select {
	height: 32px;
	line-height: 32px;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 14px;
}
#requestForm *.box *.contentBox input[type="number"] {
	padding-right: 0;
}
/*----------*/
/* !BUTTONS */
/*----------*/
#requestForm *.btn.btn-link {
	background: none;
	padding: 0;
	color: var(--textColor);
	transition: var(--transition);
	text-transform: none;
}
#requestForm *.btn.btn-link:hover {
	padding-left: 24px;
}
/*--------*/
/* ALERTS */
/*--------*/
div.alert-request {
	width: 100%;
	border-radius: var(--borderRadius);
	padding: 8px 56px 8px 16px;
	color: var(--white);
	border: 1px solid var(--grey);
	margin-bottom: 24px;
}
div.alert-request.alert-success {
	color: var(--success);
	border-color: var(--success);
	background: var(--successLight);
}
div.alert-request.alert-success p {
	color: var(--success);
}
div.alert-request.alert-error {
	color: var(--error);
	border-color: var(--error);
	background: var(--errorLight);
}
div.alert-request.alert-error p {
	color: var(--error);
}
div.alert-request.alert-info {
	color: var(--info);
	border-color: var(--info);
	background: var(--infoLight);
}
div.alert-request.alert-info p {
	color: var(--info);
}
div.alert-request h3 {
	padding: 0 0 0 0;
	font-size: 16px;
	line-height: 24px;
}
div.alert-request.alert-success h3 {
	color: var(--success);
}
div.alert-request.alert-error h3 {
	color: var(--error);
}
div.alert-request p,
div.alert-request ul {
	padding: 0 0 0 0;
}
div.alert-request p+p {
	padding: 8px 0 0 0;
}
/*----------*/
/* !ACTIONS */
/*----------*/
div.contentBox div.actions {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	z-index: 9;
}
div.contentBox div.actions div {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 4px;
	background: var(--headline);
	color: var(--white);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
div.contentBox div.actions div:hover {
	box-shadow: 0 0 0 4px rgba(0,0,0,.2);
}
div.contentBox div.actions div.deleteElement,
div.contentBox div.actions div.deletePostbox,
div.contentBox div.actions div.deleteRepeaterElement {
	background: var(--error);
}
div.contentBox div.actions div img {
	width: 12px;
	height: 12px;
	filter: brightness(0) invert(1);
}
/*-----------*/
/* !REPEATER */
/*-----------*/
#requestForm *.box *.contentBox.repeater {
	flex-direction: column;
	gap: 8px;
	justify-content: stretch;
	align-items: flex-start;
}
div.repeaterFields {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
div.repeaterFields div.repeater {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 0 -8px;
	position: relative;
}
div.repeaterFields div.repeater  div.flexbox {
	display: flex;
	flex-direction: column;
	flex-basis: 0;
	flex-grow: 1;
	padding: 0 8px;
}
div.repeaterFields div.repeater div.deleteRepeaterElement {
	position: absolute;
	right: -24px;
	bottom: 8px;
	z-index: 9;
	display: none;
}
div.repeaterFields div.repeater:hover div.deleteRepeaterElement {
	display: flex;
}
div.repeaterFields div.repeater.repeater_clone:hover div.deleteRepeaterElement {
	display: none;
}
/*----------*/
/* !UPLOADS */
/*----------*/
#requestForm *.box div.uploads {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	padding: 12px;
	gap: 12px;
}
#requestForm *.box div.uploads *.upload {
	display: flex
;
	flex-direction: column;
	width: calc(20% - 8px);
	min-width: calc(20% - 8px);
	max-width: calc(20% - 8px);
	gap: 8px;
	background: var(--light);
	border-radius: var(--borderRadius);
	padding: 8px;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	position: relative;
	overflow-wrap: break-word;
}
#requestForm *.box div.uploads *.upload div.file {
	display: flex
;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#requestForm *.box div.uploads *.upload img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--borderRadius);
	display: block;
}
#requestForm *.box div.uploads *.upload div.delete {
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(50%) translateY(-50%);
	border-radius: 50%;
	background: var(--blueDark);
	color: var(--white);
	box-shadow: var(--boxShadow);
	width: 24px;
	height: 24px;
	display: none;
	justify-content: center;
	align-content: center;
	align-items: center;
	cursor: pointer;
}

#requestForm *.box div.uploads *.upload:hover div.delete {
	display: flex
;
}