.webform-submission-form {
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
	display: flex;
}
.form-text, select.form-select {
	height: 55px;
	max-width: 100%;
	background-color: var(--white);
	color: var(--royal-blue);
	border: 0 solid #000;
	border-radius: 80px;
	margin-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	font-family: Chillax, sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.2em;
	display: inline-block;
}
textarea.form-text {
  width: 100%;
	height: auto;
	min-height: 200px;
	min-width: 100%;
	border-radius: 20px;
}
.form-item > label:not(.option) {
	text-transform: uppercase;
	margin-top: 10px;
	font-family: Chillax, sans-serif;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.2em;
}
label.option {
	cursor: pointer;
	margin-bottom: 0;
	font-weight: normal;
	display: inline-block;
}
#edit-name--wrapper {
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 0 0px;
	width: 100%;
}
#edit-name--wrapper > div{
  width: 50%;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}
.webform-button--submit{
  border: 0;
}
.js-form-type-processed-text a{
  color: #fff;
}

@media screen and (max-width: 479px){
  #edit-name--wrapper > div {
    width: 100%;
  }
}