/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');*/
@font-face {
    font-family: dinroundpro;
    src: url("/content/dinroundpro.otf") format("opentype");
}

@font-face {
    font-family: dinroundpro_bold;
    font-weight: bold;
    src: url("/content/dinroundpro_bold.otf") format("opentype");
}

* {
	box-sizing: border-box;	
	font-family: "dinroundpro", sans-serif;
	/*font-family: "Open Sans", sans-serif;*/
}

html {
	font-size: 18px;
}

body {
	margin: 0;
	padding: 0;
}

#header img {
	width: 100%;
}

#content {
	padding: 40px 0 200px 0;	
}

.inner-content {
	padding-left: 6%;
	padding-right: 6%;
}

.full-wbg {
	background: #FBEFFF;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 40px;
	margin-bottom: 40px;
}

h1 {
	color: #000;
	font-weight: bold;
	font-size: 2.5rem;
	font-family: "dinroundpro_bold", sans-serif;
}

h2 {
	color: #000;
	text-transform: uppercase;
	font-size: 2rem;
}

h3 {
	font-size: 1.7rem;
	color: #000
}

p {
	text-align: justify;
	line-height: 1.5;
}

form {
	margin-top: 20px;	
}

table {
	border-collapse: collapse;
	width: 100%;
}
th, td {
	border: solid 1px #333;
	padding: 10px;
	font-size: 0.8rem;
}
th {
	background: #ffd98f;	
}
tr.even td {
	background: #f1fff0;
}
tr.odd td {
	background: #d5ffd2;
}
tr:hover td {
	background: #f1fff0;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}
ul.no-gap {
	gap: 0px;	
}
	ul li {
		width: calc(50% - 40px);
		display: flex;
		flex-direction: column;
		justify-content: end;
	}
	ul li.full {
		width: 100%;
	}
	ul li.dir-row {
		flex-direction: row;
		justify-content: flex-start;
		gap: 10px;
	}

label {
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
label.wd {
	margin-bottom: 0;	
}

input[type="text"],
input[type="email"],
input[type="submit"],
input[type="password"]{
	width: 100%;
	padding: 10px 20px;
	border: solid 1px #797979;
	border-radius: 10px;
	outline: 0;
	font-size: 1.5rem;
}
input[type="checkbox"],
input[type="radio"] {
	cursor: pointer;
	width: 15px;
	height: 15px;
}
input[type="checkbox"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
input[type="submit"] {
	background: #A50E2F;
	color: #FFF;
	font-weight: bold;
	border: solid 1px #A50E2F;
	cursor: pointer;
	margin-top: 20px;
	width: auto;
	border-radius: 36px;
	width: 30%;
	font-family: "dinroundpro_bold", sans-serif;
}

.workshops-list {
	justify-content: flex-start;	
}
.workshops-list li {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: flex-start;
}
	.workshops-list label {
		color: #674ea7;
	}
	.workshops-list span {
		font-weight: bold;
		font-family: "dinroundpro_bold", sans-serif;
	}
	.workshops-list li > div {
		padding-left: 10px;
	}

.message {
	width: 100%;
	padding: 20px;
	text-align: center;
	border: solid 2px #000;
	color: #333;
}
	.message.message-success {
		border: solid 2px #3ebd61;
		background-color: rgba(62, 189, 97,0.2);
	}
	.message.message-error {
	  	background-color: rgba(236, 77, 43, 0.2);
	  	border:2px solid #EC4D2B;
	}
	.message.message-info {
	  	background-color: #EFF;
	  	border:2px solid #DEE;
	}
.field-error {
	display: block;	
	color: #EC4D2B;
	text-align: center;
	width: 100%;
	font-weight: bold;
	font-family: "dinroundpro_bold", sans-serif;
}

.form-submit {
	display: flex;
	justify-content: start;
	gap: 10px;
	width: 100%;
}

.logos {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
	.logos img {
		max-width: 100%;	
	}
.label-description {
	font-size: 0.6rem;
	color: #133CE8;
	margin-bottom: 10px;
	margin-left: 10px;
}
.tc {
	text-align: center;
}

.vbadge {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	text-align: center;
	padding: 0 20px 20px 20px;
	font-size: 1.3rem;
}
	.vbadge h2 {
		font-size: 1.5rem;	
	}
	.vbadge-profile-name {
		font-size: 1.5rem;
		margin-top: 20px;
		color: #133CE8;
		font-weight: bold;
		font-family: "dinroundpro_bold", sans-serif;
	}
	.vbadge-workshop {
		text-align: left;
		border-left: solid 3px #133CE8;
		margin-bottom: 20px;
		padding-left: 10px;
	}
	.vbadge-workshop-title {
		font-weight: bold;
		font-family: "dinroundpro_bold", sans-serif;
	}
	.vbadge-workshop-speaker {
		font-size: 1rem;	
	}

.count-select > div {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 10px 0;
}
.count-select > div span.count-select-counter  {
	margin: 0 10px;
	font-size: 1rem;
	color: #000;
}

.count-select-toggle {
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	cursor: pointer;
	font-size: 1rem;
	background: #A50E2F;
	width: 24px;
	height: 24px;
	display: flex;
	border-radius: 8px;
	justify-content: center;
	align-items: center;
	font-family: "dinroundpro_bold", sans-serif;
}
.count-select-toggle.gray {
	background: #DCDCDC;
}

.count-select-label {
	margin-left: 25px;	
}

#onsite-additional {
	display: none;
	flex-direction: column;
}

.columns {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
	align-items: flex-start;
}
	.column2 {
		width: calc(50% - 20px);	
	}

.label {
	font-weight: bold;
	color: #000;
	margin: 0 0 10px 0;
	display: block;
	font-family: "dinroundpro_bold", sans-serif;
}

.seperator-top {
	border-top: solid 1px #C5C5C5;
	padding-top: 20px;
}

@media only screen and (max-width: 1280px) {
	html {
		font-size: 16px;
	}
	ul {
		gap: 20px;	
	}
	ul li {
		width: calc(50% - 20px);	
	}
	h1 {
		font-size: 1.5rem;	
	}
	h2 {
		font-size: 1.1rem;	
	}
	h3 {
		font-size: 1rem;	
	}
	label {
		font-size: 1rem;	
	}
	input[type="text"], input[type="email"], input[type="submit"] {
		font-size: 1rem;	
	}
	#content {
		padding-top: 20px;	
	}
}

@media only screen and (max-width: 980px) {
	html {
		font-size: 14px;
	}
}

@media only screen and (max-width: 720px) {
	html {
		font-size: 12px;
	}
	ul {
		gap: 10px;	
	}
	ul li {
		width: 100%;
	}
	h1 {
		font-size: 1.5rem;	
	}
	h2 {
		font-size: 1.1rem;	
	}
	label {
		font-size: 1rem;	
	}
	input[type="text"], input[type="email"], input[type="submit"] {
		font-size: 1rem;	
	}
	#content {
		padding-top: 20px;	
	}
	.columns {
		flex-direction: column;
		gap: 0;
	}
	.column2 {
		width: 100%;	
	}
}