html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
	box-sizing:border-box;
}
:root {
	--dark_blue: #001E50;
	--darker_blue: #000E26;
	--light_blue: #0040C5;
	--vw-blue:#00B0F0;
	--light_gray: #F2F5F8;
	--disable_gray: #6A767D;
	--text_gray: #96A3A8;
	--error_color: #E4002C;
	--icon_font: 'icomoon';
	--main_font: 'VWText';
	--secondary_font: 'VWHead';
}

@font-face {
	font-family: 'VWHead';
	src: url('../fonts/VWHead-Light.otf');
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'VWHead';
	src: url('../fonts/VWHead-Regular.otf');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'VWHead';
	src: url('../fonts/VWHead-Bold.otf');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'VWText';
	src: url('../fonts/vwtext-regular.woff') format('woff');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'VWText';
	src: url('../fonts/VWText-Light.otf');
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'VWText';
	src: url('../fonts/VWText-Bold.otf');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'icomoon';
	src:  url('../fonts/icomoon.eot?7z48ie');
	src:  url('../fonts/icomoon.eot?7z48ie#iefix') format('embedded-opentype'),
	  url('../fonts/icomoon.ttf?7z48ie') format('truetype'),
	  url('../fonts/icomoon.woff?7z48ie') format('woff'),
	  url('../fonts/icomoon.svg?7z48ie#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
.icomoon-icon {
	font-family: var(--icon_font);
	line-height: 1;
	display: block;
}
.content-center{
    max-width:1280px;
    margin:0 auto;
}
body{
	font-family: var(--main_font);
    color:var(--darker_blue);
    font-size:16px;
    line-height:1.5;
}
h1, h2, h3, h4, h5, h6, .accordeon-title, .dynamic-question, .experience-header-wraper p {
	font-family: var(--secondary_font);
}
.transition-element, .accordeon-box .accordeon-arrow:before{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out; 
}
.gm-form-tabs {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	column-gap: 60px;
}
.gm-navigation-wrapper {
	border-bottom: 1px solid #DFE4E8;
}
.gm-form-tabs li {
	padding: 20px 0 8px;
	font-size: 14px;
	line-height: 1.4;
	position: relative;
    color:var(--text_gray);
}
.gm-form-tabs li.disabled-tab {
	font-weight: 300;
}
.gm-form-tabs li.current-tab, .gm-form-tabs li.completed-tab {
	color: var(--darker_blue);
	cursor: pointer;
	font-weight: 600;
}
.current-tab::before {
	content: "";
	width: 100%;
	position: absolute;
	bottom: -1px;
	height: 2px;
	background: var(--dark_blue);
	left: 0;
}
.gm-form-step {
	padding: 40px 0 35px;
}
.registration-form-wrapper h2 {
	font-size: 48px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 24px;
}
strong {
	font-weight: 700;
}
.small-wrapper {
	max-width: 810px;
}
.small-wrapper:not(:has(p)) h4, .small-wrapper:not(:has(p)) h3, .small-wrapper:not(:has(p)) h2, .small-wrapper:not(:has(p)) h1{
	margin-bottom: 0;
}
.form-intro-text {
	border-bottom: 1px solid #DFE4E8;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.registration-form-wrapper h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 25px;
}
.button {
	background: var(--dark_blue);
	color: #fff;
	font-size: 14px;
	padding: 13px 20px;
	min-width: 192px;
	border-radius: 24px;
	border: 1px solid var(--dark_blue);
	-webkit-appearance: none;
	box-shadow: none;
	cursor: pointer;
	font-family: var(--main_font);
	text-decoration: navajowhite;
	display: inline-flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}
.button.btn-disabled {
	pointer-events: none;
	color: rgba(106, 118, 125, 1);
	background: rgba(223, 228, 232, 1);
	border-color: rgba(223, 228, 232, 1);
}
.button.secondary-button{
	background:#fff;
    color:var(--dark_blue);
}
.button:hover{	
    background:var(--light_blue);
    border:1px solid var(--light_blue);
}
.button.secondary-button:hover{	
    background:var(--light_blue);
	color:#fff;
    border:1px solid var(--light_blue);
}
.gm-button-wrap {
	display: flex;
	column-gap: 15px;
	padding-top: 20px;
	align-items: center;
}
input[type="radio"], input[type="checkbox"] {
	opacity: 0 !important;
	width: 0;
	height: 0;
	margin: 0;
	position: absolute;
	text-indent: -9999999px;
}
input[type="radio"] + label, input[type="checkbox"] + label {
	padding-left: 40px;
	position: relative;
    cursor:pointer;
	margin-left:0 !important;
	display: inline-block;
}
input[type="radio"] + label::before {
	content: "";
	width: 22px;
	height: 22px;
	position: absolute;
	left: 0;
	top: 50%;
	border: 1px solid var(--dark_blue);
	transform: translateY(-50%);
	border-radius: 50%;
    cursor:pointer;
}
input[type="radio"] + label::after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	left: 7px;
	top: 50%;
	background: var(--dark_blue);
	transform: translateY(-50%);
	border-radius: 50%;
    opacity:0;
    cursor:pointer;
}
input[type="checkbox"] + label::before {
	content: "";
	width: 22px;
	height: 22px;
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid var(--dark_blue);
	border-radius: 0;
	cursor: pointer;
}

/* AVA-936 - Adjust VW CI */
input[type="checkbox"] + label::after {
	content: "";
	width: 6px;
	height: 14px;
	position: absolute;
	left: 8px;
	top: 2px;
	border-bottom: 1px solid var(--dark_blue);
	border-right: 1px solid var(--dark_blue);
	transform: rotate(34deg);
	border-radius: 0;
	opacity: 0;
	cursor: pointer;
}
input[type="radio"]:checked + label::after, input[type="checkbox"]:checked + label::after{
    opacity:1;
}
.personal-data-field-wrap .dynamic-field-inner, .dynamic-field.text-field .dynamic-field-inner, .dynamic-field.time-field .dynamic-field-inner,
.dynamic-field.calendar-date-field .dynamic-field-inner, .dynamic-field.textarea-field .dynamic-field-inner, 
.dynamic-field.dataset-field-wrap.dataset-field-type-text .dynamic-field-inner, 
.dynamic-field.dataset-field-wrap.dataset-field-type-dropdown .dynamic-field-inner,
.dynamic-field.select-field .dynamic-field-inner, .dynamic-field.dataset-field-wrap.dataset-field-type-dates_field .dynamic-field-inner{
	max-width: 545px;
	box-shadow: rgb(194, 202, 207) 0px 0px 0px 1px;
	border-radius: 8px;
	padding: 2px 16px;
	display: block;
	transition: box-shadow 300ms;
	position: relative;
	font-size: 16px !important;
}
.personal-data-field-wrap .dynamic-field-inner:focus-within, .dynamic-field.text-field .dynamic-field-inner:focus-within, 
.dynamic-field.time-field .dynamic-field-inner:focus-within,
.dynamic-field.calendar-date-field .dynamic-field-inner:focus-within,
.dynamic-field.textarea-field .dynamic-field-inner:focus-within,
.dynamic-field.dataset-field-wrap.dataset-field-type-text .dynamic-field-inner:focus-within,
.dynamic-field.dataset-field-wrap.dataset-field-type-dropdown .dynamic-field-inner:focus-within,
.dynamic-field.select-field .dynamic-field-inner:focus-within,
.dynamic-field.dataset-field-wrap.dataset-field-type-dates_field .dynamic-field-inner:focus-within {
	box-shadow: rgb(0, 176, 240) 0px 0px 0px 3px !important;
}
.dynamic-field.with-error:not(.checkbox-field):not(.radio-field):not(.yesno-field) .dynamic-field-inner{
	box-shadow: rgb(228, 0, 44) 0px 0px 0px 2px;
}
.personal-data-field-readonly .small-question-label, .dataset-field-readonly .small-question-label {
	color: var(--disable_gray);
}
.attending-checkboxes label{
	display:block;
}
.radio-option {
	margin-bottom: 25px;
}
.with-error h3, .checkbox-option.with-error .accordeon-title {
	color: var(--error_color);
}
.gm-error {
	margin-top: 20px;
	color: var(--error_color);
}
.gm-status-message {
	color: var(--error_color);
	margin-bottom: 20px;
}
.registration-form-wrapper p{
    margin-bottom:20px;
}
.registration-form-wrapper p:last-child{
	margin-bottom:0;
}
.registration-form-wrapper h6 {
	font-weight: 700;
	margin-bottom: 5px;
}
.checkbox-copy a {
	color: var(--darker_blue);
}
.checkbox-option {
	margin-bottom: 10px;
	border-bottom: 1px solid #DFE4E8;
	padding-bottom: 28px;
}
.checkbox-option:last-child{
	border-bottom:0;
}
ol {
	list-style: decimal;
	list-style-position: inside;
	margin-bottom: 20px;
}
ol li {
	margin-bottom: 20px;
}
ol li:last-child{
	margin-bottom:0;
}
.form-message-holder {
	padding-top: 40px;
	padding-bottom: 70px;
}
.checkbox-copy {
	margin-bottom: 20px;
}
.form-intro-text a {
	color: var(--vw-blue);
}
h4 {
	font-size: 24px;
	margin-bottom: 32px;
	font-weight: 700;
}
.no-margin-header h4 {
	margin-bottom: 5px;
}
.no-margin-header {
	margin-bottom: 32px;
}
.no-margin-header p{
	font-size:14px;
}
.text-field {
	margin-bottom: 35px;
}
/* AVA-738 calendar */
/* AVA-738 time */
.calendar-date-field input[type="text"], .time-field .gm-time-input {
	max-width: 310px;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
	background: var(--darker_blue) !important;
	border-color: var(--darker_blue) !important;
}
/* AVA-936 - Adjust VW CI */
.text-field input, .calendar-date-field input[type="text"], .time-field .gm-time-input, .personal-data-field-wrap input,
.dataset-field-wrap.dataset-field-type-text input, .dataset-field-wrap.dataset-field-type-dates_field input{
	border: 0;
	width: 100%;
	font-size: 16px;
	color: var(--dark_blue);
	line-height: 1.5;
	padding: 0px 30px 4px 0;
	outline: 0;
	box-shadow: none;
	font-family: var(--main_font);
}
.gm-form-wrapper .text-field input{
	border-bottom: 1px solid #DFE4E8;
	padding:4px 30px 4px 0;
}
.dynamic-field.personal-data-field-wrap {
	margin-bottom: 25px;
}
.small-question-label {
	font-size: 12px;
}
.personal-data-fields, .small-content {
	max-width: 500px;
}
.text-field.read-only-field {
	pointer-events: none;
	position: relative;
}
.text-field input[readonly], .read-only-field label {
	color: var(--disable_gray); 
}
/*
.text-field input[readonly]{
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2218%22%20height%3D%2224%22%20viewBox%3D%220%200%2018%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.6609%206.35688C14.5467%203.32889%2012.0559%200.90918%208.99996%200.90918C5.87127%200.90918%203.33496%203.44549%203.33496%206.57418L3.33396%209.33418L0.334961%209.33501V21L0.340204%2021.1685C0.427155%2022.5619%201.58473%2023.665%202.99996%2023.665H15L15.1685%2023.6598C16.5618%2023.5728%2017.665%2022.4152%2017.665%2021V9.33501L14.664%209.33418L14.665%206.57418L14.6609%206.35688ZM1.66496%2021V10.665H16.335V21L16.3288%2021.1286C16.2642%2021.8056%2015.6939%2022.335%2015%2022.335H2.99996L2.87139%2022.3289L2.73808%2022.3093C2.12617%2022.1876%201.66496%2021.6477%201.66496%2021ZM9.0014%2013.832C9.41851%2013.835%209.8125%2014.0241%2010.0757%2014.3477C10.3389%2014.6713%2010.4438%2015.0956%2010.3618%2015.5045L9.6117%2018.025C9.54717%2018.271%209.34126%2018.4501%209.09531%2018.4848L9.0014%2018.4909C8.71523%2018.4938%208.46369%2018.3018%208.39109%2018.025L7.64102%2015.5185C7.55419%2015.1075%207.65687%2014.6791%207.92064%2014.3521C8.1551%2014.0615%208.49473%2013.8783%208.86237%2013.8396L9.0014%2013.832ZM4.66996%206.36414C4.77952%204.06754%206.67622%202.23918%208.99996%202.23918C11.3941%202.23918%2013.335%204.18003%2013.335%206.57418L13.334%209.33418H4.66396L4.66496%206.57418L4.66996%206.36414Z%22%20fill%3D%22%23001E50%22/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 6px top 2px;
	background-size: 18px 24px;
}
*/
/*
.text-field.with-error input, input.with-error {
	border-bottom: 1px solid var(--error_color);
}
.text-field.with-error label,.dynamic-field.with-error .dynamic-question{
	color:var(--error_color);	
}
*/
.dynamic-question {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	display: block;
}
.dynamic-field .options {
	display: flex; 
	column-gap: 40px;
	column-count: 2;
	/*max-width: 515px;*/
}
.yesno-option {
	margin-bottom: 25px;
}
.yesno-option:last-child {
	margin-bottom: 0;
}
.dynamic-description {
	margin-bottom: 25px;
	display: block;
}
.dynamic-field {
	margin-bottom: 45px;
}
textarea {
	border-radius: 10px;
	border: 1px solid var(--dark_blue);
	width: 100%;
	max-width: 500px;
	min-height: 118px;
	resize: none;
	outline: 0;
	box-shadow: none;
	padding: 10px 10px;
	font-size: 14px;
}
.not-main-question .dynamic-question {
	font-size: 12px;
	margin-bottom: 0;
	font-weight: 300;
}
.summary-box {
	border: 1px solid #DFE4E8;
	max-width: 490px;
	margin-bottom: 32px;
	padding: 20px 24px;
	position:relative;
}
.edit-step {
	position: absolute;
	top: 25px;
	right: 18px;
	text-decoration: none;
	color: var(--dark_blue);
	font-weight: 300;
	font-size: 24px;
	line-height: 1;
}
.dynamic-field:not(.not-main-question) {
	min-width: 100%;
}
.dynamic-fields {
	display: flex;
	column-gap: 24px;
	flex-wrap: wrap;
}
.gm-edit-icon:before{
	content: "\e90d";  
}
.gm-location-icon:before{
	content: "\e919";
}
.gm-info-icon:before{
	content: "\e918";
}
.gm-download-icon:before{
	content: "\e917";
}
.gm-back-icon:before{
	content: "\e91a";
}
.gm-phone-icon:before{
	content: "\e91c";
}
.gm-mail-icon:before{
	content: "\e91b";
}
.gm-rating-icon:before{
	content: "\e91d";
}
.gm-arrow-btn-icon:before{
	content: "\e910";
}
.gm-arrow-star1-icon:before{
	content: "\e91f";
}
.gm-arrow-star-icon:before{
	content: "\e91e";
}
.gm-arrow-hostess-icon:before{
	content: "\e924";
}
.gm-arrow-car-icon:before{
	content: "\e925";
}
.gm-arrow-cancel-icon:before{
	content: "\e926";
}
.gm-arrow-check-successfully-icon:before{
	content: "\e927";
}
.summary-box p {
	margin-bottom: 10px;
	display: flex;
}
.summary-box p strong {
	min-width: 165px;
	display: inline-block;
	padding-right:20px;
}
.dynamic-answer { 
	word-break: break-all;
}
.checkbox-option a {
	color: var(--darker_blue);
}
.experience-header-wraper {
	min-height: 390px;
	display: flex;
	background-size: cover;
	background-position: left center !important;
	background-image: var(--header-bg-desktop, none);
	position: relative;
	padding-top: 80px;
}
.experience-header-wraper::before {
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) -22.03%, rgba(0, 0, 0, 0.05) 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.inner-experience-header {
	width: 100%;
	margin-top: auto;
	margin-bottom: 45px;
	padding-top: 30px;
	position: relative;
	z-index: 2;
}
.experience-header-wraper h1 {
	font-size: 63px;
	color: #fff;
	line-height: 1.4;
	font-weight: 700;
	margin-bottom: 10px;
}
/* AVA-798: sticky header */
.masthead.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	background: linear-gradient(rgba(0, 0, 0, 0.8) 45%, rgba(0, 0, 0, 0));
	transition: transform 0.4s ease;
}
.full-header {
	overflow: hidden;
	transition: transform 0.4s ease;
	transition-delay: 0.1s;
	transform: translateY(-20px);
	padding-bottom:10px;
}
body:not(.admin-bar) .full-header {
	/*transform: translateY(0);*/
}
.header-scrolled .full-header, body:not(.admin-bar) .header-scrolled .full-header {
	transform: translateY(-108px);
}
.site-header.header-past-hero .first-bar, .site-header.header-past-hero .full-header {
	background: #fff;
}
.site-header.header-past-hero{
	background: transparent;
} 
.header-past-hero .header-elements-wrapper i, .header-past-hero .header-lang-switcher .wpml-toggle-wrapper .wpml-lang, 
.header-past-hero .header-elements-wrapper > .header-lang-switcher .wpml-toggle-wrapper .wpml-lang {
	color: var(--dark_blue);
}
.header-past-hero .header-elements-wrapper > .header-lang-switcher .wpml-toggle-wrapper .wpml-lang{
	border-color: var(--dark_blue);
}

.header-past-hero .hyvent-logo-inner::before, .header-past-hero .hyvent-logo-inner::after,
.header-past-hero .header-logo::before, .header-past-hero .header-logo::after {
	background: var(--dark_blue);
}
.header-past-hero .hyvent-logo-inner svg path{
	fill: var(--dark_blue);
}
.admin-bar .masthead.site-header {
	top: 32px;
}
.header-logo {
	margin-top: 0;
	position: relative;
	top: 0;
}
/* AVA-798 */
.header-logo::before, .header-logo::after {
	/*content: "";*/
	position: absolute;
	height: 2px;
	background: #fff;
	width: 1000px;
	left: -1000px;
	top: 50%;
	transform: translateY(-50%);
}
.header-logo::after {
	left: auto;
	right: -1000px;
}
/* AVA-798 */
.hyvent-logo-inner {
	position: relative;
	text-align: left;
	height: auto;
	display: grid;
	-moz-box-align: center;
	align-items: center;
	column-gap: 14px;
	grid-template-columns: calc(min(66.66vw,1706.66px) - 14px) max-content auto;
}
.hyvent-logo-inner::before, .hyvent-logo-inner::after {
	content: "";
	background: #fff;
	height: 2px;
	/*width: calc(70% - 20px);
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	*/
}
/*
.hyvent-logo-inner::after {
	left: auto;
	right: 0;
	width:calc(30% - 68px);
}*/
.hyvent-logo-inner a {
	display: inline-block;
	height: auto;
	line-height: 0;
	/* 
	margin-left: 70%;
	margin-right: auto; 
	*/
}
.hyvent-logo-inner svg {
	width: 56px;
	height: 56px;
}
.experience-header-wraper .inner-experience-header:not(.dashboard-header) strong {
	display: block;
	color: #F08208;
	font-weight: 800;
	font-size: 80px;
}
.experience-header-wraper p {
	font-size: 40px;
	margin-bottom: 0;
	color: #fff;
	font-weight: 300;
	line-height: 1.1;
}
.attendance-options {
	margin-bottom: 50px;
}
.accordeon-title {
	font-size: 20px;
	font-weight: 700;
	padding-top: 12px;
	padding-bottom: 15px;
}
.accordeon-box .accordeon-title {
	cursor: pointer;
	position: relative;
	padding-right: 35px;
}
.accordeon-box .accordeon-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 300ms ease;
}
.accordeon-box .accordeon-wrapper {
	overflow: hidden;
}
.accordeon-box.opened .accordeon-body {
	grid-template-rows: 1fr;
}
.accordeon-box .accordeon-arrow {
	width: 24px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 24px;
}
/* AVA-936 - Adjust VW CI */
.accordeon-box .accordeon-arrow::before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-top: 1px solid var(--dark_blue);
	border-left: 1px solid var(--dark_blue);
	transform: rotate(225deg);
	transform-origin: center;
	left: 3px;
	top: 0px;
}
.accordeon-box.opened .accordeon-arrow::before {
	transform: rotate(45deg);
	top: 9px;
}
.attending-checkboxes .accordeon-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 19px;
}
.attending-checkboxes .accordeon-arrow {
	position: relative;
	transform: none;
	top: 0;
}

.label-on-input {
	position: relative;
	padding-top: 18px;
}
.label-on-input input:focus ~ label, .label-on-input input:not(:placeholder-shown) ~ label {
	top:0;
	font-size:12px;
}
.label-on-input label {
	position: absolute;
	/*pointer-events: none;*/
	left: 0px;
	top: 22px;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: 400;
	cursor:pointer;
}
.wrap-fields {
	display: flex;
	column-gap: 20px;
}
.wrap-fields > div {
	width: 100%;
}
#field_postal_code_wrapper {
	max-width: 160px;
}
.label-on-select label {
	top: 0;
	font-size: 12px;
}
.text-field select,
/* AVA-892: dropdown question uses the same underlined text-select style. */
.dynamic-field.select-field select,
.dataset-field-wrap .dataset-field-input-wrap select {
	width: 100%;
	margin-top: 10px;
	border-radius: 0;
	box-shadow: none !important;
	background: transparent;
	border: 0;
	color: var(--dark_blue);
	padding: 5px 10px 5px 0;
	font-family: var(--main_font);
	font-size: 16px;
	border-bottom: 1px solid #DFE4E8;
	outline:0 !important;
}
/* AVA-936 */
.dynamic-field.select-field select {
	margin-top: 0;
	border-bottom: 0;
	padding-top: 4px;
	padding-bottom: 4px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
/* AVA-892 */
.dynamic-field.select-field {
	margin-bottom: 25px;
}
.dynamic-field.select-field.with-error select {
	border-bottom-color: var(--error_color);
}
.loader {
	width: 22px;
	height:22px;
  	padding:3px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--dark_blue);
	--_m: 
	  conic-gradient(#0000 10%,#000),
	  linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
			mask: var(--_m);
	-webkit-mask-composite: source-out;
			mask-composite: subtract;
	animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
.active-loader .loader {
	display: block !important;
}
.gm-form-step.active-loader {
	pointer-events: none;
	opacity: 0.7;
}
.registration-form-wrapper.gm-cancel-template {
	min-height: 350px;
}
.text-field.label-on-select {
	padding-top: 25px;
}
/*Select 2*/
body .select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid #DFE4E8;
}
/* AVA-936 - Adjust VW CI */
body .registration-form-wrapper .select2-container--default .select2-selection--single {
	border:0;
}
.registration-form-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow{
	top:-4px;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 16px;
	padding-left:0;
	color: var(--dark_blue);
}
body .select2-container{
	width:100% !important;
}

body .select2-selection {
    padding: 0px 20px 1px 0;
    height: 33px;
}
body .select2-search.select2-search--dropdown {
    padding: 0;
}
body .select2-container--default .select2-search--dropdown .select2-search__field {
    border-left: 0;
    border-right: 0;
    height: 32px;
    padding: 5px 10px;
    outline: none;
    color: var(--dark_blue);
    font-size: 14px;
    font-family: var(--main_font);
    border-top: 0;
    border-right: 0;
    border-left: 0;
}
body .select2-results__option.select2-results__message {
    font-size: 14px;
}
body .select2-container--open .select2-dropdown{
    font-family: var(--main_font);
    border-radius: 0 !important;
}
body .select2-container--open .select2-dropdown--below {
    border-top: 1px solid #aaa;
}
body .select2-container--open .select2-dropdown--above{
    border-bottom: 1px solid #aaa;
}
body .select2-container {
    max-width: 100%;
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--dark_blue);
    color: white;
}
.select2-container .select2-selection--single {
	height: 28px !important;
}

/* END - Select 2*/
.form-intro-text.no-line {
	border-bottom: 0;
}
.page-template-default .inner-content p {
	margin-bottom: 20px;
}
.page-template-default .inner-content a {
	color: var(--darker_blue);
}
.page-template-default table, .page-template-default td {
	border: 1px solid #000;
	padding: 6px;
}
.table-container {
	overflow: auto;
}
.inner-experience-header img {
	max-width: 408px;
}
h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.12;
	margin-bottom: 16px;
}
.locked-icon:before{
	content:"\e911";
}
.locked-icon-wrapper {
	position: absolute;
	right: 4px;
	font-size: 21px;
	line-height: 1;
	bottom: 7px;
}
.active-loader button {
	pointer-events: none;
	background: #DFE4E8 !important;
	border-color: #DFE4E8 !important;
	color: #6A767D !important;
}


/* Login Area */
.main-content {
	padding: 32px 0;
}
.text-field.no-margin {
	margin-bottom: 8px;
}
.gm-form-wrapper .text-field {
	margin-bottom: 25px;
}
.form-headline {
	margin-bottom: 25px;
}
.to-forgot-password {
	text-align: right;
	margin-bottom: 40px;
}
#gm-show-forgot-form {
	font-size: 12px;
	color: var(--darker_blue);
	font-weight: 400;
}
.back-to-login {
	margin-top: 28px;
}
.back-to-login a{
	color: var(--darker_blue);
	font-size: 16px;
	text-decoration:none;
}
.back-to-login a span{
	text-decoration:underline;
}
.back-to-login a::before {
	content: "\e910";
	font-family: var(--icon_font);
	margin-right: 12px;
	display: inline-block;
	font-size: 14px;
}
.eye-icon::before {
	font-family: var(--icon_font);
	content: "\e90f";
	font-size: 22px;
	display:block;
}
.toggle-password {
	position: absolute;
	right: 3px;
	bottom: 5px;
	cursor: pointer;
	display: block;
	line-height: 1;
}
.eye-icon::after {
	content: "";
	opacity: 0;
	width: 22px;
	height: 1px;
	background: var(--darker_blue);
	position: absolute;
	transform: rotate(-45deg);
	top: 11px;
	left: 0px;
}
.eye-icon.eye-visible:after{
	opacity:1;
}
.success-msg{
	color:#029640; 
}
#gm-show-forgot-form-secondary {
	text-decoration: underline;
	cursor: pointer;
}
#gm-login-app .gm-button-wrap{
	padding-top:15px;
}
/* End Login Area */

/* AVA-798 */
.profile-icon:before{
	/*content: "\e914";*/
	content: "\e936";
}
.qrcode-icon:before{
	content: "\e915";
}
.menu-icon:before{
	content:"\e916";
}
.globe-icon:before{
	content:"\e913";
}
.logout-icon:before{
	content:"\e912";
}
.close-icon:before{
	content: "\e907";
}
h1.main-headline{
	font-weight: 700;
}
.form-headline p {
	max-width: 700px;
}
.gm-modal.active-modal {
	display: block !important;
}

/* AVA-456 */
/*
.dynamic-field.checkbox-field .options {
	flex-direction: column;
}
*/
.dynamic-field .checkbox-option {
	border-bottom: 0;
	/* width: 100%; */
	padding-bottom: 5px;
}
/* AVA-456 */

/* read qr-code popup */
#qr-code-popup.active {
	display: block !important;
}
#qr-code-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	background: rgba(0,0,0,0.5);
	font-size: 14px;
}
.inner-qr-code {
	position: fixed;
	height: 90%;
	width: 90%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: flex;
	align-content: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.close-popup {
	background-color: #000;
	border: 3px solid #000;
	position: absolute;
	cursor: pointer;
	top: 12px;
	right: 12px;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	z-index: 999;
	outline: 0;
}
.close-popup span {
	background-image: url("../images/close.svg");
	width: 24px;
	height: 24px;
	position: absolute;
	background-size: contain;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#loadingMessage {
	max-width: 90%;
	color: #000;
}
#canvas {
	max-width: 90%;
}
#output > div b {
	display: none;
}
.gm-warning-box{
	color:var(--error_color);
}

body .guest-contacts .guest-box-label {
	min-width: 110px;
}
body .badge-check-inner{
	margin-bottom:0;
}
.badge-check-inner span{
	margin-left:auto;
}
.badge-check-inner .status{
	text-transform:uppercase;
}
body .guest-contacts-heading{
	margin-bottom:0;
}
body .guest-contacts-heading + .guest-contacts-table{
	margin-top:12px;
}
body .badge-check-box{
	margin-top:0;
	margin-bottom:12px;
}
.assign-guest-buttons{
	margin-top:20px;
}
.dynamic-field.text-field.not-main-question {
	max-width: 140px;
	width:100%;
}
.dynamic-field.text-field.not-main-question + .dynamic-field.text-field.not-main-question{
	max-width:380px;
}

/* AVA-936: forțează break după 2 text-field.not-main-question consecutive */
.dynamic-fields .clear-row {
	flex-basis: 100%;
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
}
.dynamic-field.dynamic-field-headline {
	margin-bottom: 0;
}
.gplc-disabled + label {
	opacity: 0.6;
}
.marginright10{
	margin-right:10px !important;
}
.gm-form-step .step-content {
	display: block;
}
[data-gm-required="1"] label.dynamic-question::after, [data-gm-required="1"] .small-question-label::after {
	content: "*";
}

/* AVA-738 calendar */
/* AVA-738 time */
.calendar-date-field label.dynamic-question, .time-field label.dynamic-question  {
	display: inline-block;
}

/* AVA-798 */
.first-bar .content-center {
	max-width: 100%;
	padding-left: 4.16667%;
	padding-right: 4.16667%;
}
.full-header .content-center {
	max-width: 100%;
}
.header-elements-wrapper i{
	font-size: 24px;
}

/* AVA-858 */
.experience-header-wraper .dashboard-header h1 {
	font-weight: 300;
}
.hero-heading .user-name h1 {
	font-weight: 300 !important;
	font-family: VWHead;
}
.page-template-dashboard-template .hero-heading .user-name br {
	display: none;
}
.page-template-dashboard-template .hero-text-wrapper {
	border-bottom: 1px solid #DFE4E8;
	padding-bottom: 40px;
	padding-top:10px;
}

/* AVA-871 */
#signup-content {
	padding-top: 160px;
	margin-bottom: 40px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.wp-activate-container{
	width: 100%;
}
/* End AVA-871 */

/* fix header z-index */
body .feedback-notice{
	z-index: 999999;
}
#registration-form .select2-selection__arrow::before, .select-arrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 1px solid var(--darker_blue);
	border-right: 1px solid var(--darker_blue);
	position: absolute;
	transform: rotate(135deg);
}
.select-arrow {
	position: absolute;
	right: 38px;
	top: 20px;
} 
#registration-form .select2-container--open .select2-selection__arrow::before, .dynamic-field.select-field select:open + .select-arrow:before {
	transform: rotate(-45deg);
	top: 8px;
}

/* AVA-882 dataset field: read-only display mimics .text-field input but locked */
.dataset-field-wrap {
	margin-bottom: 25px;
}
.dataset-field-wrap.dataset-field-readonly .dataset-field-value-wrap, .personal-data-field-wrap.personal-data-field-readonly .dataset-field-value-wrap{
	position: relative;
}
/* AVA-936 - Adjust VW CI */
.dataset-field-wrap.dataset-field-readonly .dataset-field-readonly-value, .personal-data-field-wrap.personal-data-field-readonly .dataset-field-readonly-value {
	display: block;
	width: 100%;
	color: var(--disable_gray);
	padding: 0px 30px 4px 0;
	min-height: 28px;
	box-sizing: border-box;
}
.dataset-field-wrap.dataset-field-readonly .dynamic-field-inner::after, .personal-data-field-wrap.personal-data-field-readonly .dynamic-field-inner::after {
	content: "\e937";
	font-family: var(--icon_font);
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--dark_blue);
	font-size: 22px;
	line-height: 1;
	pointer-events: none;
	font-weight: 300;
}
.dynamic-field + .form-intro-text {
	margin-top: 40px;
	width: 100%;
	border: 0;
	padding-bottom: 0;
}
.dynamic-field.text-field, .dynamic-field.calendar-date-field, .dynamic-field.time-field {
	margin-bottom: 25px;
}
.small-question-label-before-textarea {
	margin-bottom: 8px;
}
/* AVA-936: small label above textarea + character counter */
.dynamic-field.textarea-field .textarea-small-label {
    display: block;
    margin: 4px 0;
    color: #6b7280;
    font-size: 0.875rem;
}
.dynamic-field.textarea-field .textarea-wrapper {
    position: relative;
}
.dynamic-field.textarea-field .textarea-counter {
    display: block;
    margin-top: 4px;
    text-align: right;
    color: #9ca3af;
    font-size: 0.875rem;
}
.dynamic-field textarea {
	border: 0;
	padding: 0;
	margin-top: 5px;
	font-family: var(--main_font);
	font-size: 16px;
	color: var(--dark_blue);
	min-height: 100px;
}
.dynamic-field .char-limit {
	position: absolute;
	bottom: -35px;
	right: -15px;
}
.dynamic-field.checkbox-field.with-error .dynamic-question, .dynamic-field.radio-field.with-error .dynamic-question {
	color: var(--error_color);
}
.dynamic-field .gm-error {
	margin-top: 5px;
	font-size: 12px;
}

/* responsive */
@media (min-width:1700px){
	.experience-header-wraper {	min-height: 23vw;	background-position: center top;	}
	.page-template-agenda-template .experience-header-wraper {background-position: center center;	}
}
/* AVA-798 */
@media (max-width:1920px){
	.hyvent-logo-inner svg {	width: 48px;		height: 48px;	}
}
@media (max-width:1400px){
    .content-center {       max-width: 90%; }
	.experience-header-wraper {	background-position: left top;	}
}
@media (max-width:1279px){
    .gm-form-tabs {     column-gap: 40px;   }
 
}
@media (max-width:1023px){
    .experience-header-wraper .inner-experience-header:not(.dashboard-header) strong {      font-size: 70px;    }
    .inner-experience-header {      padding-top: 0; }
    .registration-form-wrapper h2 {     font-size: 40px;    }
    .registration-form-wrapper h3 {     font-size: 20px;    }
    .attendance-options {       margin-bottom: 40px;    }
    .dynamic-question {     font-size: 22px;    } 
}

/* AVA-798 */
@media(max-width:960px){
	.hyvent-logo-inner {grid-template-columns: auto max-content auto; column-gap: 10px;}
	.hyvent-logo-inner svg {	width: 40px;		height: 40px;	}
}
@media (max-width:767px){
    .experience-header-wraper {
        background-image: var(--header-bg-mobile, var(--header-bg-desktop, none));
		background-size: cover;
		background-position: left bottom !important;
		background-repeat: no-repeat;
		min-height:unset !important;
		aspect-ratio: 2;
    }
    .experience-header-wraper .inner-experience-header:not(.dashboard-header) strong{        font-size: 60px;    }
	.experience-header-wraper h1 {	font-size: 47px;	}
	.experience-header-wraper p{font-size:34px;}
	.inner-experience-header img {	max-width: 334px;	}
    .registration-form-wrapper h2 {     font-size: 35px;    }
    .form-message-holder {      padding-top: 40px;      padding-bottom: 40px;   }
	.gm-form-tabs {
		column-gap: 40px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		flex-wrap: nowrap;
		padding-bottom: 25px;
	}
	.gm-form-tabs-wrapper {
		overflow: hidden;
		height: 55px;
	}
	.gm-navigation-wrapper{
		position:relative;
		border-bottom:0;
	}
	.gm-navigation-wrapper::after {
		content: "";
		width: 100%;
		height: 1px;
		background: #DFE4E8;
		position: absolute;
		top: 48px;
		z-index: -1;
	}	
	.gm-form-tabs li {flex: 0 0 auto;		white-space: normal;	}
	.mobile-full{width:100%;}

	.dynamic-field.text-field.not-main-question {width: 100%;}
}
@media (max-width:639px){
    .masthead.site-header .content-center {     max-width: 94%; }   
	/* AVA-798 */
	.masthead.site-header .first-bar .content-center, .masthead.site-header .full-header .content-center{max-width: 100%;} 
    .personal-data-fields {     max-width: 100%;    }
    .personal-data-fields.business-data-fields {        margin-top: 10px;   }
    .summary-box {      padding: 20px;  }
    .summary-box h4 {       font-size: 20px;    }   
	.inner-experience-header img{max-width:90%;}
	.gform_confirmation_message .button{line-height:1.2 !important;}

	.full-header {transform: translateY(-16px);	}

	.dynamic-field.text-field.not-main-question + .dynamic-field.text-field.not-main-question, .dynamic-field.text-field.not-main-question{	max-width:100%;	}
}
@media (max-width:479px){
    .experience-header-wraper h1 {      font-size: 40px;    }
    .experience-header-wraper .inner-experience-header:not(.dashboard-header) strong {      font-size: 50px;    }
    .experience-header-wraper p {       font-size: 30px;    }
    .registration-form-wrapper h2 {     font-size: 30px;    }
    body {      font-size: 14px;    }
    .accordeon-title {      font-size: 15px;    }
    .registration-form-wrapper h2 {     font-size: 25px;    }
    .gm-form-step {     padding: 30px 0 20px;   }
    .form-intro-text {      padding-bottom: 40px;       margin-bottom: 20px;    }
    h4 {        font-size: 22px;    }
    .text-field input[readonly] {       background-size: 16px 22px; }
    .wrap-fields {      display: flex;      flex-flow: column;  }
    #field_postal_code_wrapper {        max-width: 100%;    }
    .dynamic-field .options {       flex-flow: column;  }
    .summary-box h4 {       font-size: 18px;    }
    .summary-box {      padding: 15px;  }
    .summary-box p strong {     min-width: 120px;       max-width: 200px;   }
    .step-content {     font-size: 13px;    }
    .experience-header-wraper {     min-height: 300px;  }
	.checkbox-option{padding-bottom:10px;}

	input[type="radio"] + label, input[type="checkbox"] + label{padding-top:3px;}

	/* AVA-798 */
	.masthead.site-header .first-bar .content-center, .masthead.site-header .full-header .content-center{max-width: 100% !important;}
}
