html {
	background-color:#f1f1f1;
	height:100%;
}
body {
	font-family:"Manrope", sans-serif;
	font-optical-sizing:auto;
	font-weight:normal;
	font-style:normal;
	color:#1e2129;
	outline:none;
	margin:0;
	padding:0;
	height:100%;
	overflow-x:hidden;
	overscroll-behavior-y:none;
}
a:link {
	color:#1e2129;
	text-decoration:none;
	outline:none;
	transition:color 0.2s ease-in-out;
}
a:visited {
	color:#1e2129;
	text-decoration:none;
	outline:none;
}
a:hover {
	color:#1e2129;
	text-decoration:none;
	outline:none;
}
* {
	box-sizing:border-box;
}
p {
	font-size:18pt;
	line-height:36px;
	margin:0;
	padding:0;
}
a img {
	border:0;
}
img {
	max-width:100%;
	width:auto;
	height:auto;
}
.page-content {
	width:100%;
	background:#f1f1f1;
	padding:20px 0 80px 0;
	float:left;
}
.content {
	max-width:1342px;
	width:92%;
	min-height:100%;
	display:table;
	margin:0 auto;
}
a.logo {
	background:url(img/logo_1907.png) no-repeat center;
	background-size:178px 40px;
	width:178px;
	height:40px;
	position:absolute;
	top:40px;
	left:0;
    transition:opacity 0.2s ease-in-out;
}
a.logo:hover {
	opacity:0.5;
}
.lang {
	background:#e1e1e1;
	position:absolute;
	top:41px;
	right:0;
	border-radius:20px;
	overflow:hidden;
	width:40px;
	height:40px;
	display:flex;
	flex-direction:column;
	transition:height 0.2s ease-in-out;
}
.lang a {
	font-weight:700;
	color:#1e2129;
	font-size:11pt;
	line-height:20px;
	width:100%;
	display:block;
	margin-top:10px;
	order:1;
	text-align:center;
    transition:opacity 0.2s ease-in-out;
}
.lang a:hover {
	opacity:0.5;
}
.lang a.current {
	opacity:1;
	order:0;
}
.lang:hover {
	height:70px;
}
.menu-container {
	width:92%;
	height:100px;
	max-width:1342px;
	margin:0 auto;
}
.menu-content {
	height:100px;
	width:100%;
	position:relative;
	margin:0 auto;
}
.menu {
	position:absolute;
	top:0;
	left:0;
	right:0;
}
h1 {
	text-transform:uppercase;
	font-size:28px;
	line-height:100%;
	font-weight:700;
	padding:55px 0 58px 0;
	margin:0;
}
.form {
	width:100%;
	max-width:994px;
	margin:0 auto;
	padding-top:16px;
	padding-bottom:120px;
	display:table;
}
.form h1:first-child {
	padding:55px 0 23px 0;
}
.form p {
	font-weight:700;
	font-size:16px;
	line-height:24px;
	text-transform:uppercase;
	padding:8px 0 15px 0;
	display:block;
}
.form span {
	font-weight:700;
	font-size:16px;
	line-height:23px;
	padding:14px 0;
	display:block;
}
.form h1 span {
	font-weight:inherit;
	font-size:inherit;
	line-height:inherit;
	padding:0;
	display:inline;
}
.form button {
	font-family:"Manrope", sans-serif;
	background:#1e2129;
	border-radius:30px;
	font-weight:700;
	font-size:16px;
	line-height:30px;
	color:#fff;
	padding:15px 50px;
	margin:19px 0 0 0;
	cursor:pointer;
	border:0;
	text-transform:uppercase;
	float:right;
	transition:opacity 0.2s ease-in-out;
}
button.pdf-bttn {
	margin-right:25px;
	background:#f1f1f1;
	border:2px solid #1e2129;
	color:#1e2129;
	padding:11px 46px;
}
.form button:hover {
	opacity:0.75;
}
.form button:active {
	padding:16px 49px 14px 51px;
}
.form button.pdf-bttn:active {
	padding:12px 45px 10px 47px;
}
input[type=text], textarea {
	font-family:"Manrope", sans-serif;
	width:100%;
	height:60px;
	background:#fff;
	border-radius:30px;
	padding:20px;
	font-weight:700;
	font-size:16px;
	line-height:23px;
	border:0;
	outline:none;
}
textarea {
	height:auto;
	min-height:160px;
	resize:vertical;
}
input[type=text]::placeholder, textarea::placeholder {
	color:#bbb;
	font-weight:400;
}
.select {
	width:100%;
	position:relative;
	user-select:none;
	outline:none;
}
.trigger {
	height:60px;
	background:#e1e1e1;
	border-radius:30px;
	padding:20px 30px;
	font-weight:700;
	font-size:16px;
	line-height:23px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	cursor:pointer;
}
.field-grid .trigger {
	background:#fff;
}
.field-grid .trigger span {
	color:#bbb;
	font-weight:400;
}
.bold {
	color:#1e2129 !important;
	font-weight:700 !important;
}
.trigger::after {
	content:"";
	position:absolute;
	top:26px;
	right:27px;
	background:url(img/select.png) no-repeat center;
	background-size:18px 10px;
	width:18px;
	height:10px;
	transform:rotate(0);
	transition:transform 0.2s ease-in-out;
}
.select.open .trigger::after {
	transform:rotate(180deg);
	top:25px;
}
.select.open .trigger {
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
}
.options {
	position:absolute;
	top:100%;
	left:0;
	right:0;
	border-bottom:1px solid #e4e4e4;
	border-left:1px solid #e4e4e4;
	border-right:1px solid #e4e4e4;
	border-bottom-left-radius:30px;
	border-bottom-right-radius:30px;
	background:#f1f1f1;
	overflow:auto;
	max-height:334px;
	display:none;
	z-index:10;
	scrollbar-width:thin;
	scrollbar-color:#1e2129 transparent;
}
.options::-webkit-scrollbar {
	width:6px;
}
.options::-webkit-scrollbar-thumb {
	background:#1e2129;
}
.select.open .options {
	display:block;
}
.option {
	padding:18px 20px;
	font-weight:400;
	font-size:16px;
	line-height:23px;
	border-bottom:1px solid #e4e4e4;
	cursor:pointer;
	display:block;
	transition:background 0.15s ease-in-out;
}
.option:last-child {
	border:0;
}
.option input {
	display:none;
}
.option.selected, .option:hover {
	background:#f9f9f9;
}
.checkbox {
	margin:21px 0 8px 0;
	font-size:16px;
	line-height:23px;
	cursor:pointer;
	position:relative;
	padding-left:42px;
	display:inline-block;
	user-select:none;
}
.checkbox input {
	display:none;
}
.checkbox .checkmark {
	position:absolute;
	top:-1px;
	left:0;
	background-color:#f1f1f1;
	width:25px;
	height:25px;
	border-radius:5px;
	border:1px solid #b1b1b1;
	padding:0;
	margin:0;
	transition:background-color 0.15s ease-in-out, border 0.15s ease-in-out;
}
.checkbox input:checked + .checkmark {
	background-color:#1e2129;
	background-image:url(img/check.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:15px 14px;
	border:1px solid #1e2129;
}
.radio {
	margin:21px 0 8px 0;
	font-size:16px;
	line-height:23px;
	cursor:pointer;
	position:relative;
	padding-left:42px;
	display:inline-block;
	user-select:none;
}
.radio input {
	display:none;
}
.radio .radiomark {
	position:absolute;
	top:-1px;
	left:0;
	background-color:#f1f1f1;
	width:25px;
	height:25px;
	border-radius:100%;
	border:1px solid #b1b1b1;
	padding:0;
	margin:0;
	transition:background-color 0.15s ease-in-out, border 0.15s ease-in-out;
}
.radio input:checked + .radiomark {
	background-color:#1e2129;
	border:1px solid #1e2129;
}
.radio .radiomark::after {
	content:"";
	background:#fff;
	width:13px;
	height:13px;
	position:absolute;
	top:5px;
	left:5px;
	border-radius:100%;
	opacity:0;
	transition:opacity 0.15s ease-in-out;
}
.radio input:checked + .radiomark::after {
	opacity:1;
}
.field-grid {
	display:flex;
	flex-wrap:wrap;
	gap:0 34px;
}
.field-group {
	width:100%;
	display:block;
	margin-bottom:21px;
}
.field-grid .field-group {
	display:flex;
	flex-direction:column;
}
.field-grid-2 .field-group {
	width:calc(50% - 17px);
}
.field-grid-3 {
	gap:0 48px;
}
.field-grid-3 .field-group {
	width:calc(33.33333333% - 32px);
}
.checkbox-1 {
	margin:-1px 0 14px 0;
}
.checkbox-2 {
	margin:0 0 54px 0;
}
.radio-1 {
	margin-bottom:14px;
}
.consent {
	padding:0 0 0 40px;
	position:relative;
}
.consent .checkbox {
	position:absolute;
	top:0;
	left:0;
	margin:0;
}
.error-message {
	font-size:14px;
	line-height:24px;
	color:#ed4949;
	margin-top:12px;
	display:none;
}
.buyer, .supplier {
	display:none;
}
body.modal-open {
    overflow:hidden;
}
.modal-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
	height:100%;
	padding:40px 0;
    z-index:6000;
    display:none;
    overflow:auto;
	backdrop-filter:blur(8px);
}
.modal-wrapper a:hover {
	color:#5ab9be;
}
.modal-overlay.modal-top .modal-wrapper {
	top:0;
}
.x-bttn {
	position:absolute;
	top:5px;
	right:5px;
	width:42px;
	height:42px;
	cursor:pointer;
}
.x-bttn::before {
	content:"";
	position:absolute;
	top:20px;
	left:7px;
	width:28px;
	height:2px;
	background:#1e2129;
	transform:rotate(-45deg);
	transition:opacity 0.2s ease-in-out;
}
.x-bttn::after {
	content:"";
	position:absolute;
	top:20px;
	left:7px;
	width:28px;
	height:2px;
	background:#1e2129;
	transform:rotate(45deg);
	transition:opacity 0.2s ease-in-out;
}
.x-bttn:hover::after, .x-bttn:hover::before {
	opacity:0.75;
}
.response {
	width:100%;
	background:#fff;
	max-width:480px;
	height:200px;
	font-size:16pt;
	line-height:28px;
	line-height:auto;
	text-align:center;
	color:green;
	position:fixed;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:20px;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	box-shadow:0 6px 24px rgba(0,0,0,0.3);
}
.warn {
	color:orange;
}
.error {
	color:red;
}
.disabled {
	opacity:0.65;
	pointer-events:none;
}
.footer {
	padding:0 0 80px 0;
	position:relative;
	display:none;
}
.footer .content {
	border-radius:26px;
	background:#1e2129;
	color:#fff;
	position:relative;
	padding:40px 70px;
}