@font-face {
	font-family: AvertaCY;
	src: url("/css/fonts/AvertaCY_Regular.otf") format("opentype");
}
@font-face {
	font-family: AvertaCY;
	font-weight: bold;
	src: url("/css/fonts/AvertaCY_Bold.otf") format("opentype");
}
@font-face {
	font-family: AvertaCY;
	font-weight: 600;
	src: url("/css/fonts/AvertaCY_Semibold.otf") format("opentype");
}
@font-face {
	font-family: AvertaCY;
	font-style: italic;
	src: url("/css/fonts/AvertaCY_RegularItalic.otf") format("opentype");
}
/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700,900&display=swap'); */

* {
	box-sizing: border-box;
	font-family:'AvertaCY', sans-serif !important;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
	font-family: "Font Awesome 6 Free" !important;
}

h3 {
	font-size: 1.3rem;
	line-height: 1.5;
}

.acenter {
	text-align: center;
}

.aright {
	text-align: right;
}
.t-bold {
	font-weight: 600;
}
.t-mbold {
	font-weight: 500;
}
.t-italic {
	font-style: italic;
}
.cred {
	color: #E53012;
}
.cwhite {
	color: #FFF;
}
.bg-gray {
	background: #6C7D8A;
}
.bg-lgray {
	background: #D5D6DF;
}
.bg-dgray {
	background: #21313E;
}
.mt-40 {
	margin-top: 40px;
}
.mb-20 {
	margin-bottom: 20px;
}
.message {
	border-bottom: solid 1px #FFF;
	border-radius: 10px;
	padding: 20px;
}
	.message-error {
		background-color: rgba(236, 77, 43, 0.2);
		border:2px solid #EF9400;
	}
	.message-success {
		background-color: rgba(62, 189, 97,0.2);
		border:2px solid #3ebd61;
	}
	.message-info {
		background-color: rgba(0, 108, 227,0.2);
		border:2px solid #006CE3;
	}
	.message-warning {
		background-color: rgba(239, 148, 0, 0.2);
		border:2px solid #EF9400;
	}
	.message p {
		line-height: 1.5;
	}

.page {
	padding: 40px;
}
.text {
	font-size: 1rem;
	color: #333;
	line-height: 1.7;	
}
.text h1,
.text h2,
.text h3,
.text h4 {
	margin: 30px 0 15px;
	font-weight: 600;
	line-height: 1.1;
	color: #4a4a4a;	
}
.text h1 {
	font-size: 3.231rem;
	text-align: center;
}
.text h3 {
	font-size: 1.846rem;
}
.text p {
	margin-bottom: 28px;
}
.rstul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-inline-start: 0;
}
.dinput-list {
	width: 100%;
}
	.dinput-list li {
		margin-bottom: 10px;
	}
	.dinput-list li label {
		display: block;
		margin: 5px 0;
	}
.dinput[type="text"],
.dinput[type="email"],
textarea.dinput {
	background: #EEEEF1;
	padding: 20px;
	border: solid 1px #EEEEF1;
	outline: none;
	width: 100%;
	border-radius: 8px;
}
.dinput[type="radio"] {
	background: #EBEDF0;
	border: solid 1px #EBEDF0;
}
.arrow-btn {
	margin-top: auto;
	text-decoration: none;
	font-size: 1.4rem;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 15px 20px;
	border-radius: 10px;
}
	.arrow-btn-red {
		background: #E53012;
		color: #FFF;
	}
	.arrow-btn-red:hover {
		background: #E53012;
	}
	.arrow-btn span:last-child {
		width: 20px;
		height: 20px;
		display: block;
		background: url('/images/arrowtr.png') no-repeat;
		background-size: 100%;
	}
.desktop-only {
	display: none;
}

#wrapper {
	width: 100%;
	min-height: 100vh;
}

.content-padding {
	padding: 10px 5%;
}

#main-header {
	width: 100%;
	position: sticky;
	top: -1px;
	z-index: 9;
}
	#main-header.stuck {
		background: #21313E;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		z-index: 9;
	}
	.main-header-top {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
	}
	#main-logo {
		margin-right: auto;
	}
		#main-logo a {
			background-image: url('/images/logo_light.png');
			background-size: 100%;
			background-position-y: center;
			background-repeat: no-repeat;
			width: 105px;
			display: block;
			height: 40px;
		}
		.pt-event #main-logo a {
			background-image: url('/images/logo_compact.png');
			background-size: 30%;
		}
	#main-menu {
		display: none;
		position: fixed;
		right: 0;
		top: 0;
		height: 100vh;
		background: #21313E;
	}
		#main-menu.open {
			display: block;
			width: 100%;
			z-index: 9;
			border-top-left-radius: 20px;
			border-top-right-radius: 20px;
		}
			#main-menu.open li {
				text-align: center;
			}
			#main-menu li {
				width: 100%;
				padding: 10px 20px 10px 20px;
			}
			#main-menu li:last-child {
				border-bottom: none;
			}
			#main-menu a {
				color: #FFF;
				text-decoration: none;
				font-size: 0.9rem;
				text-transform: uppercase;
				font-weight: 500;
				border-bottom: solid 2px rgba(255,255,255,0.1);
				width: 100%;
				display: block;
				padding: 15px 0;
				text-align: center;
			}
			#main-menu #main-menu-close {
				text-align: right;
				border-bottom: none;
				margin-bottom: 40px;
			}
			#main-menu #main-menu-close img {
				width: 30px;
			}
			#main-menu a#main-menu-basket-btn {
				color: #FFF;
				background: #E53012;
				border-radius: 10px;
				display: inline-flex;
				align-items: center;
				justify-content: flex-start;
				padding: 10px 20px;
				width: 70%;
				gap: 10px;
				position: relative;
			}
				#main-menu-basket-btn span:last-child {
					margin-left: auto;
				}
			#main-menu-basket-btn img {
				height: 20px;
			}

	#menu-actions {
		display: inline-flex;
		align-items: center;
		gap: 20px;
	}
		#main-menu-opener {
			text-decoration: none;
			width: 30px;
			height: 20px;
		}
			#main-menu-opener img {
				width: 100%;
			}
			#main-menu-opener i:last-child {
				display: none;
			}
			#main-menu-opener.open i:first-child {
				display: none;
			}
			#main-menu-opener.open i:last-child {
				display: inline-block;
			}
			#main-header-basket-btn {
				color: #FFF;
				text-decoration: none;
				display: flex;
				justify-content: center;
				align-items: center;
				position: relative;
				width: 27px;
				height: 27px;
			}
				#main-header-basket-btn span#basket-icon-count {
					position: absolute;
					top: -5px;
					right: -6px;
					font-size: 0.7rem;
					color: #FFF;
					background: #E53012;
					border-radius: 20px;
					text-align: center;
					width: 17px;
					height: 17px;
					display: none;
					justify-content: center;
					align-items: center;
				}
				#main-header-basket-btn.active span#basket-icon-count {
					display: flex;
				}
				#main-header-basket-btn img {
					width: 100%;
				}
				#main-header-basket-btn.active {
					display: initial;
				}
				#main-header-basket-btn span#basket-icon-message {
					position: absolute;
					background: #FFF;
					color: #21313E;
					border-radius: 7px;
					box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
					top: 50px;
					right: -15px;
					padding: 10px 5px;
					width: 200px;
					font-size: 0.9rem;
					height: auto;
					display: none;
				}
				#main-header-basket-btn span#basket-icon-message.active {
					display: block;
				}
				#main-header-basket-btn span#basket-icon-message::after {
					content: '';
					position: absolute;
					width: 0;
					height: 0;
					bottom: 100%;
					right: 1.5em; 
					border: .55rem solid transparent;
					border-top: none;
					border-bottom-color: #fff;
					filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
				}
				

#welcome-section {
	display: none;
}
#welcome-section-m {
	width: 100%;
	background: url('/images/welcome_bg_m.webp') no-repeat;
	background-size: cover;
	background-position: center;
	padding: 140px 0;
	margin-top: -60px;
	margin-bottom: 60px;
}
	#welcome-section-m .welcome-description {
		border-left: solid 6px #E53012;
		padding-left: 20px;
		color: #FFF;
		font-size: 1.3rem;
		line-height: 1.5;
	}
	#welcome-section-m .welcome-btns {
		width: 100%;
		margin-top: 40px;
	}
		#welcome-section-m .welcome-btns li {
			margin: 15px 0;
			display: flex;
			justify-content: center;
		}
			#welcome-section-m .welcome-btns li a {
				color: #FFF;
				text-transform: uppercase;
				text-decoration: none;
				border: solid 1px #FFF;
				border-radius: 48px;
				padding: 15px 30px;
				width: 200px;
				display: block;
				text-align: center;
			}

.content-row {
	width: 100%;
	display: flex;
	gap: 20px;
	flex-direction: column;
}
	.content-column {
		width: 100%;
		border-radius: 20px;
	}
	.content-column-box {
		padding: 20px;
		position: relative;
		height: 100%;
	}
	.content-column-title {
		font-size: 1.3rem;
		margin-left: 10px;
		line-height: 1.5;
		font-weight: 400;
		margin-bottom: 20px;
		color: #21313E;
	}
	.content-column-box-s {
		display: flex;
		align-items: end;
		min-height: 200px;
	}
		.content-column-box-s .content-box-description {
			font-size: 2.3rem;
		}
	.content-column-box-m .content-box-description {
		margin-top: 15%;
		font-size: 3rem;
		line-height: 1.1;
	}
		.content-column-box-m .content-box-description span {
			display: block;
		}
			.content-column-box-m .content-box-description span:last-child {
				font-size: 1rem;
				margin-top: 20px;
			}
	.content-box-description {
		color: #FFF;
	}
	.welcome-corner-link {
		width: 85%;
		display: inline-flex;
		justify-content: space-between;
		align-items: center;
		text-decoration: none;
		position: absolute;
		top: 20px;
		right: 20px;
		color: #FFF;
		text-decoration: none;
		text-transform: uppercase;
	}
	.welcome-corner-link span:last-child {
		width: 20px;
		height: 20px;
		display: block;
		background: url('/images/arrowtr.png') no-repeat;
		background-size: 100%;
	}
.content-row-bm {
	margin-bottom: 60px;
}
.content-text {
	color: #21313E;
	font-size: 1rem;
	line-height: 1.5;
}
.content-page-header {
	background: #21313E;
	padding: 120px 0 80px 0;
	margin-top: -60px;
	text-align: center;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
	.content-page-header h1.page-title {
		color: #FFF;
		font-size: 2rem;
		width: 90%;
		margin: 0 auto;
	}
	.content-page-header h1.page-title.wicon {
		display: flex;
		flex-direction: row;
		gap: 10px;
		justify-content: center;
	}

.swiper {
	width: 100%;
}
	.swiper .swiper-slide {
		text-align: center;
		font-size: 18px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.swiper-button-next, .swiper-button-prev {
		color: #FFF;
		z-index: 20;
		padding: 20px;
	}

.featured-event {
	
	height: 220px;
	width: 412px;
	border-radius: 20px;
}
	.featured-event-content {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
		.featured-event-content a {
			width: 100%;
			height: 100%;
			display: block;
			color: #FFF;
			text-decoration: none;
		}
		.featured-event-content a img {
			width: 100%;
			border-radius: 20px;
		}
		.featured-event-noimg {
			display: flex;
			width: 100%;
			height: 100%;
			background: #D5D6DF;
			border-radius: 20px;
			justify-content: center;
			align-items: center;
		}
			.featured-event-noimg span {
				color: #FFF;
			}

.link-box {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}
	.link-box li {
		width: 100%;
		padding: 10px 20px;
		background: #6C7D8A;
		border-radius: 10px;;
	}
	.link-box li.open {
		background: #21313E;
	}
	.link-box li.link-box-item-nolink {
		background: none;
		color: #6C7D8A;
	}
		.link-box li > a {
			text-decoration: none;
			display: inline-flex;
			justify-content: space-between;
			align-items: center;
			color: #FFF;
			font-size: 1rem;
			width: 100%;
		}
			.link-box li a span:first-child {
				width: 70%;
				display: block;
				line-height: 1.5;
			}
			.link-box li a span:last-child {
				width: 20px;
				height: 20px;
				display: block;
				background-image: url('/images/arrowtr.png');
				background-repeat: no-repeat;
				background-size: 100%;
			}
			.link-box li.open a span:last-child {
				background-image: url('/images/arrowbr.png?v=4');
			}
		.link-box-content {
			display: none;
			padding-top: 30px;
			color: #FFF;
			line-height: 1.5;
		}
		.link-box li.open .link-box-content {
			display: block;
		}

.about-media {
	width: 100%;
	height: 340px;
	background: #D5D6DF;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#contact-form {
	width: 100%;
	height: 100%;
}
	#contact-form ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	#contact-form li {
		margin-bottom: 10px;
		position: relative;
	}
	#contact-form input,
	#contact-form textarea {
		background: #EEEEF1;
		border-radius: 10px;
		outline: none;
		border: none;
		padding: 10px 20px;
		width: 100%;
	}
	#contact-form textarea {
		height: 200px;
	}
	#contact-form input[type="submit"] {
		position: absolute;
		right: 20px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #E53012;
		background-image: url('/images/arrowtr.png');
		background-repeat: no-repeat;
		background-size: 50%;
		background-position: center;
	}

#footer-menu {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 40px 5%;
	text-align: center;
}
	#footer-menu > div {
		width: 100%;
		margin-bottom: 40px;
	}
	#footer-menu li {
		margin-bottom: 10px;
	}
	#footer-menu a {
		color: #FFF;
	}
	#footer-menu > div:last-child img {
		width: 100px;
	}

#overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 8;
}
	#overlay.open {
		display: block;
	}

.quoted-text {
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	padding: 0 20px;
}
	.quoted-text:before,
	.quoted-text:after {
		display: block;
		width: 60px;
		height: 100%;
		color: #E53012;
		font-size: 5rem;
	}
	.quoted-text:before {
		content: open-quote;
	}
	.quoted-text:after {
		content: close-quote;
	}
	.quoted-text p {
		line-height: 1.5;
		text-align: center;
	}

.video-frame iframe {
	border-radius: 20px;
}

.review-box-item-group {
	width: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	height: 100%;
}
.review-box-item {
	border-radius: 20px;
	background: #EEEEF1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 170px;
}
	.review-box-header {
		width: 100%;
		display: inline-flex;
		justify-content: space-between;
		margin-bottom: auto;
	}
		.review-box-stars {
			display: inline-flex;
			justify-content: flex-start;
			align-items: center;
		}
			.review-box-stars span {
				width: 18px;
				height: 18px;
				display: block;
				background: url('/images/star_empty.png') no-repeat;
				background-size: 100%;
			}
			.review-box-stars.review-box-stars-1 span:first-child {
				background: url('/images/star_full.png') no-repeat;
			}
			.review-box-stars.review-box-stars-2 span:nth-child(-n+2) {
				background: url('/images/star_full.png') no-repeat;
			}
			.review-box-stars.review-box-stars-3 span:nth-child(-n+3) {
				background: url('/images/star_full.png') no-repeat;
			}
			.review-box-stars.review-box-stars-4 span:nth-child(-n+4) {
				background: url('/images/star_full.png') no-repeat;
			}
			.review-box-stars.review-box-stars-5 span:nth-child(-n+5) {
				background: url('/images/star_full.png') no-repeat;
			}
	.review-box-content {
		font-size: 0.9rem;
		line-height: 1.5;
		margin: auto 0;
	}
#event-open-welcome-img {
	margin-top: -70px;
	height: 40vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.event-open-welcome-details {
	position: absolute;
	bottom: 30px;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 1rem;
}
#event-open-info {
	padding: 0 5%;
}
#event-open-info h1 {
	font-size: 1.5rem;
	color: #21313E;
	line-height: 1.5;
	font-weight: 600;
	text-transform: uppercase;
}
.event-open-details {
	width: 100%;
	margin-top: 20px;
}
	.event-open-details li {
		width: 100%;
		margin-bottom: 5px;
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
		font-weight: 600;
	}
		.event-open-details li img {
			width: 17px;
		}
		.event-open-place span:last-child span:after {
			content: " & ";
			display: inline;
		}
		.event-open-place span:last-child span:last-child:after {
			display: none;
		}
	.event-open-description	 {
		margin-top: 20px;
	}
		.event-open-description p {
			line-height: 1.5;
		}
#event-open-speakers-list {
	display: inline-flex;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}
	#event-open-speakers-list li {
		background: #FFF;
		border-radius: 10px;
		overflow: hidden;
		position: relative;
		width: calc(50% - 20px);
	}
		#event-open-speakers-list li img {
			width: 100%;
		}
		#event-open-speakers-list .event-open-speaker-info {
			display: none;
			background: rgba(33, 49, 62, 0.7);
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			color: #FFF;
			flex-direction: column;
			align-items: center;
			justify-content: end;
			z-index: 1;
		}
		#event-open-speakers-list li:hover .event-open-speaker-info {
			display: flex;
		}
		#event-open-speakers-list li .event-open-speaker-info div {
			width: 100%;
			margin-bottom: 15px;
			text-align: center;
		}
			#event-open-speakers-list .event-open-speaker-info div:first-child {
				font-size: 1rem;
			}
			#event-open-speakers-list .event-open-speaker-info div:last-child {
				font-size: 0.8rem;
			}
			#event-open-speakers-list li a.modal-opener {
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				z-index: 2;
			}
.sponsors-list {
	display: flex;
	flex-direction: row;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}
	.sponsors-list li {
		width: calc(33% - 20px);
		display: flex;
		justify-content: center;
	}
		.sponsors-list li a {
			display: flex;
			width: 100%;
			justify-content: center;
			align-items: center;
			text-decoration: none;
			color: #000;
			font-size: 2rem;
		}
		.sponsors-list li a img {
			width: 100%;
		}

.tba-content {
	width: 100%;
	padding: 20px 40px;
	font-size: 1.1rem;
	border-left: solid 4px #E53012;
}

.notfound {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 0;
}
.notfound h1 {
	font-size: 10rem;
}
.notfound h1 mark {
	background: none;
}

.btn {
	text-decoration: none;
	outline: none;
	border-radius: 50px;
	padding: 10px 25px;
	text-transform: uppercase;
	border: solid 1px;
	color: #21313E;
	font-size: 1rem;
	line-height: 1;
	display: inline-block;
}
	.btn-red {
		background-color: #E53012;
		color: #FFF;
	}

.d-input {
	width: 100%;
	display: inline-block;
	padding: 10px 20px;
	font-size: 1rem;
	line-height: 1;
	border: solid 1px #D0D6DA;
	color: #21313E;
	border-radius: 50px;
}
	.d-input.input-m {
		width: 50%;
	}
	.d-input.input-s {
		width: 25%;
	}

#event-agenda {
	width: 100%;
	font-size: 1.2rem;
	line-height: 1.5;
}
	#event-agenda > li {
		border-top: solid 2px #D5D6DF;
		padding: 20px 0;
	}
	.event-agenda-group {
		display: inline-flex;
		gap: 20px;
		width: 100%;
	}
		.event-agenda-group > div:first-child {
			width: 30%
		}
		.event-agenda-group > div:last-child {
			width: 70%
		}
		.event-agenda-group h3 {
			color: #21313E;
			font-weight: 300;
		}
		.event-agenda-group a.event-agenda-group-toggle {
			width: 70px;
			height: 70px;
			display: block;
		}
		.event-agenda-group a.event-agenda-group-toggle svg {
			width: 100%;
			height: 100%;
		}
		.event-agenda-group a.event-agenda-group-toggle svg:last-child {
			display: none;
		}
		#event-agenda > li.open a.event-agenda-group-toggle svg:last-child {
			display: initial;
		}
		#event-agenda > li.open a.event-agenda-group-toggle svg:first-child {
			display: none;
		}
	.event-agenda-group-items {
		display: none;
	}
	#event-agenda > li.open .event-agenda-group-items {
		display: block;
	}
		.event-agenda-group-items li {
			padding: 20px 0;
			display: inline-flex;
			align-items: start;
			justify-content: space-between;
			gap: 5px;
			flex-wrap: wrap;
			width: 100%;
		}
			.event-agenda-item-time {
				width: 30%;
				text-align: right;
				padding-right: 20px;
			}
			.event-agenda-item-info {
				width: calc(70% - 10px);
				display: flex;
				flex-direction: column;
			}
			.event-agenda-item-title {
				color: #21313E;
				font-weight: 600;
			}
			.event-agenda-item-speaker {
				display: inline-flex;
				align-items: center;
				flex-direction: row;
				flex-wrap: wrap;
			}
			.event-agenda-item-speaker span {
				font-size: 1rem;
			}
			.event-agenda-item-speaker span:first-child {
				color: #E53012;
				font-weight: 600;
			}

.footer-actions-box {
	position: fixed;
	bottom: 0;
	padding: 20px;
	width: 100%;
	background: #FFF;
	z-index: 10;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
	.footer-actions-box .content-row-2 {
		flex-direction: row;
		align-items: center;
	}
	.footer-actions-box .content-row-2 .content-column {
		width: calc(50% - 20px);
	}
	.event-open-footer-tickets-btn {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #E53012;
		color: #FFF;
		text-decoration: none;
		padding: 10px 15px;
		border-radius: 10px;
		font-size: 1.1rem;
	}
	.event-promo-message p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	.event-open-footer-tickets-btn img {
		width: 20px;
	}
	.event-open-footer-tickets-price {
		font-size: 1.2rem;
		font-weight: bold;
	}
	#event-open-footer-prices .content-row-2 .content-column {
		width: calc(35% - 20px);
	}
	#event-open-footer-prices .content-row-2 .content-column:last-child {
		width: calc(65% - 20px);
	}
.event-open-prices {
	margin: 20px 0;
	display: none;
}
.event-open-prices.open {
	display: block;
}
	.event-open-prices-groups {
		display: inline-flex;
		justify-content: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 20px;
	}
		.event-open-prices-groups a {
			color: #FFF;
			background: #BAC2C9;
			border-radius: 7px;
			padding: 10px 20px;
			display: block;
			text-decoration: none;
		}
		.event-open-prices-groups a:hover,
		.event-open-prices-groups a.active {
			background: #21313E;
		}
	#event-open-prices-list {
		margin: 30px 0;
	}
	#event-open-prices-list li {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 20px;
		margin-bottom: 20px;
	}
		#event-open-prices-list li > div {
			width: calc(60% - 20px);
		}
		#event-open-prices-list li > div:last-child {
			width: calc(40% - 20px);
		}
		#event-open-prices-list li > div:first-child > span:first-child {
			font-size: 1.4rem;
			font-weight: bold;
			display: block;
			margin-bottom: 5px;
		}
		#event-open-prices-list li > div:first-child > span:last-child {
			font-size: 0.9rem;
			color: #E53012;
			display: block;
		}
		#event-open-prices-list li > div:last-child {
			display: inline-flex;
			align-items: center;
			justify-content: flex-end;
			gap: 20px;
		}
			#event-open-prices-list li > div:last-child a {
				text-decoration: none;
			}
			#event-open-prices-list li > div:last-child a img {
				width: 20px;
			}
			#event-open-prices-list li > div:last-child span.qty-val {
				font-size: 2rem;
				display: block;
			}

#modal {
	display: none; 
	position: fixed; 
	z-index: 10; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgb(255,255,255); 
	background-color: rgba(255,255,255,0.4); 
}
#modal.open {
	display: flex;
	justify-content: center;
	align-items: center;
}
	#modal-wrapper {
		background-color: #FFF;
		padding: 20px;
		width: 80%;
		position: relative;
		min-height: 300px;
		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
		border-radius: 20px;
		overflow: hidden;
	}
	#modal-close {
		display: block;
		position: absolute;
		top: 0px;
		right: 15px;
		color: #BAC2C9;
		font-size: 3rem;
		text-decoration: none;
	}
	#modal-close:hover {
		color: #21313E;
	}
	#modal-content {
		padding: 20px;
	}

.speakers-modal {
	width: 100%;
}
	.speaker-modal-image {
		width: 100%;
	}
		.speaker-modal-image img {
			width: 100%;
		}
	.speaker-modal-title {
		color: #E53012;
		font-size: 1.6rem;
		margin-bottom: 20px;
		font-weight: 600;
	}
	.speaker-modal-profession {
		font-size: 1rem;
	}

.shopping-basket-row {
	width: 100%;
	border-bottom: solid 2px #D5D6DF;
	padding: 20px 0;
}
.shopping-basket-row:last-child {
	border-bottom: none;
}
	.shopping-basket-inner-row {
		display: inline-flex;
		align-items: flex-start;
		width: 100%;
		gap: 10px;
	}
	.shopping-basket-row-product {
		width: calc(70% - 10px);
		display: flex;
		flex-direction: column;
		position: relative;
		padding-left: 50px;
		gap: 15px;
	}
		.shopping-basket-row-product .shopping-basket-row-remove-wrapper {
			display: flex;
			justify-content: start;
			align-items: start;
			position: absolute;
			left: 0;
			top: 0;
			width: 40px;
			height: 100%;
		}
	.shopping-basket-row-qty {
		width: calc(30% - 10px);
		display: flex;
		justify-content: end;
		align-items: center;
		gap: 20px
	}
		.shopping-basket-row-qty > div:first-child {
			display: flex;
			flex-direction: row;
			gap: 20px;
			align-items: center;
		}
		.shopping-basket-row-qty-remove,
		.shopping-basket-row-qty-add {
			color: #A3ADB4;
			font-size: 3rem;
			text-decoration: none;
			line-height: 1;
		}
		.shopping-basket-row-qty-value {
			font-size: 2rem;
		}
	.shopping-basket-row-title {
		font-weight: bold;
		font-size: 1.2rem;
		order: 1;
	}
	.shopping-basket-row-price {
		font-weight: bold;
		font-size: 1.6rem;
		color: #E53012;
		order: 2;
	}
	.shopping-basket-row-info {
		order: 3;
	}
	.shopping-basket-row-remove {
		text-decoration: none;
		color: #FFF;
		background: #D5D6DF;
		border-radius: 25px;
		text-align: center;
		font-size: 1.6rem;
		line-height: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30px;
		height: 30px;
	}
		.shopping-basket-row-remove span {
			margin-top: -3px;
		}
	.shopping-basket-row-info-toggle {
		display: block;
		background-image: url('/images/arrowtr_gray.png');
		width: 50px;
		height: 50px;
		background-size: 200%;
		background-position: center;
	}
	.shopping-basket-row-info-toggle.open {
		background-image: url('/images/arrowbr_red.png');
	}
		.shopping-basket-row-info-content {
			display: none;
			margin-left: 60px;
			width: 100%;
			margin-top: -20px;
		}
		.shopping-basket-row-info-content.open {
			display: block;
		}
		.shopping-basket-row-info-content img {
			width: 17px;
		}
		.shopping-basket-row-info-content li {
			margin-bottom: 10px;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			gap: 10px;
		}
	.shopping-basket-inner-row-participants ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}
		.shopping-basket-inner-row-participants ul li {
			width: 100%;
		}
		.shopping-basket-inner-row-participants input {
			width: 100%;
			background: #EEEEF1;
			padding: 20px;
			border: solid 1px #EEEEF1;
			border-radius: 8px;
			outline: none;
			margin-top: 10px;
		}
		.shopping-basket-inner-row-participants input.success {
			border: solid 1px green;
		}
		.shopping-basket-inner-row-participants input.error {
			border: solid 1px red;
		}
		.shopping-basket-inner-row-participants ul li > div:first-child {
			padding-left: 10px;
			font-size: 1rem;
		}
	.shopping-basket-inner-row-participants-info {
		margin-top: 20px;
	}
	.shopping-basket-inner-row-participants-info p {
		line-height: 1.5;
		margin-top: 10px;
	}
	#shopping-basket-discount-form form {
		width: 100%;
		position: relative;
	}
		#shopping-basket-discount-form input[type="text"] {
			width: 100%;
			background: #EEEEF1;
			border-radius: 10px;
			padding: 20px;
			border: solid 1px #EEEEF1;
		}
		#shopping-basket-discount-form input[type="text"].success {
			border: solid 1px green;
		}
		#shopping-basket-discount-form input[type="text"].error {
			border: solid 1px red;
		}
		#shopping-basket-discount-form input[type="submit"] {
			position: absolute;
			right: 10px;
			top: 50%;
			transform: translate(0, -50%);
			width: 40px;
			height: 40px;
			background-color: #E53012;
			background-image: url(/images/arrowtr.png);
			background-repeat: no-repeat;
			background-size: 50%;
			background-position: center;
			border: none;
			border-radius: 10px;
			outline: none;
		}
		#shopping-basket-discount-form .message {
			margin-top: 20px;
		}
#shopping-basket-totals {
	width: 100%;
}
	.shopping-basket-totals-row {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 10px 0;
	}
	.shopping-basket-totals-row:last-child {
		display: none;
	}
	.shopping-basket-totals-row:nth-last-child(2) {
		border-top: solid 2px #D5D6DF;
	}
	.shopping-basket-totals-value {
		color: #000;
		font-weight: 600;
	}
#billing-person-legal {
	display: none;
}
	#billing-person-legal.open {
		display: block;
	}

@media only screen and (min-width: 420px) {

}

@media only screen and (min-width: 620px) {
	#event-open-speakers-list li {
		width: calc(33% - 20px);
	}
	.sponsors-list li {
		width: calc(20% - 20px);
		display: flex;
		justify-content: center;
	}
	.sponsors-list li a {
		font-size: 3rem;
	}
}

@media only screen and (min-width: 960px) {
	.mobile-only {
		display: none;
	}
	.desktop-only {
		display: block;
	}
	#wrapper #main-logo a {
		background-image: url('/images/logo_dark.png');
		background-size: 90%;
	}
	.main-header-top {
		align-items: baseline;
	}
	#main-menu-opener {
		display: none;
		color: #21313E;
	}
	#main-menu {
		display: flex;
		position: relative;
		height: auto;
		top: initial;
		right: initial;
		background: transparent;
	}
		#main-menu li {
			width: auto;
			padding: 10px;
			border-bottom: none;
		}
		#main-menu li a {
			color: #21313E;
			padding: 0;
			font-weight: 600;
			border-bottom: none;
		}
		#main-menu a:hover {
			text-decoration: underline;
		}
		#main-header-basket-btn {
			background-color: #21313E;
			padding: 5px 15px;
			border-radius: 7px;
			width: auto;
			height: auto;
			bottom: -5px;
		}
		#main-header-basket-btn img {
			max-width: 20px;
		}
		#main-header.stuck #main-menu li a {
			color: #FFF;
		}
		#main-header.stuck #main-logo a {
			background-image: url('/images/logo_light2.png');
		}
	#welcome-section {
		display: flex;
	}
	#welcome-content-main {
		background: url('/images/welcome_bg_m.webp') no-repeat;
		background-position: center;
		background-size: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
	}
		#welcome-content-main .welcome-description,
		#content-column-archive .welcome-description {
			margin-top: 15%;
			font-size: 3rem;
			line-height: 1.1;
		}
			#welcome-content-main .welcome-description span,
			#content-column-archive .welcome-description span {
				display: block;
			}
			#welcome-content-main .welcome-description span:last-child,
			#content-column-archive .welcome-description span:last-child {
				font-size: 1rem;
				margin-top: 20px;
			}
		#welcome-content-main a {
			margin-top: auto;
			background: #E53012;
			color: #FFF;
			text-decoration: none;
			font-size: 1.4rem;
			display: inline-flex;
			justify-content: space-between;
			align-items: center;
			width: 70%;
			padding: 15px 20px;
			border-radius: 15px;
		}
			#welcome-content-main a:hover {
				background: #E53012;
			}
			#welcome-content-main a span:last-child {
				width: 20px;
				height: 20px;
				display: block;
				background: url('/images/arrowtr.png') no-repeat;
				background-size: 100%;
			}
	.welcome-description {
		color: #FFF;
	}
	#welcome-content-aside {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
		#welcome-content-aside > .content-row  {
			height: 50%;
		}
	#welcome-section-m {
		display: none;
	}
	#main-logo a {
		background-image: url('/images/logo_d.png');
	}
	.link-box-2 li {
		width: calc(50% - 10px);
	}
	.content-row-2 {
		display: inline-flex;
		justify-content: space-between;
		flex-direction: row;
	}
		.content-row-2 > .content-column {
			width: 50%;
		}
	.content-page-header {
		margin-top: 0;
		border-radius: 20px;
		padding: 20px;
		width: 90%;
		margin: 0 auto;
		margin-bottom: 40px;
	}
		.content-page-header h1.page-title,
		.content-page-header h1.page-title.wicon {
			justify-content: flex-start;
		}
		.content-page-header h1.page-title.wicon span:first-child {
			display: none;
		}
		.content-page-header .content-column:first-child {
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: center;
		}
		.content-page-header .content-column:first-child h1 {
			width: 30%;
		}
		.content-header-description {
			width: 70%;
		}
			.content-header-description p {
				text-align: left;
				color: #FFF;
				margin-bottom: 10px;
				line-height: 1.5;
			}
	#footer-menu > div {
		width: 30%;
		margin-bottom: 0;
	}
	#footer-menu > div:last-child {
		text-align: right;
	}
	#footer-menu p {
		line-height: 1.5;
		font-size: 0.9rem;
	}
	#event-open-speakers-list li {
		background: #FFF;
		border-radius: 10px;
		overflow: hidden;
		position: relative;
		width: calc(20% - 20px);
	}
	#event-open-welcome {
		padding: 10px 5%;
	}
	#event-open-welcome-img {
		margin-top: 0px;
		height: auto;
		position: relative;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}
	#event-open-info {
		padding: 0;
	}
	.event-agenda-item-info {
		flex-direction: row;
		gap: 20px;
	}
	.event-agenda-item-info > div {
		width: 50%;
	}
	.event-agenda-group > div:first-child {
		display: flex;
		align-items: center;
	}
	.event-open-prices {
		display: block;
	}
	.speaker-modal-info {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: start;
	}
	.shopping-basket-inner-row {
		align-items: center;
	}
	.shopping-basket-row-product {
		flex-direction: row;
		padding-left: 0;
		align-items: center;
	}
	.shopping-basket-row-product .shopping-basket-row-remove-wrapper {
		display: none;
	}
	.shopping-basket-row-remove {
		background: #21313E;
	}
	.shopping-basket-row-title {
		font-size: 1.5rem;
		width: 50%;
	}
	.shopping-basket-row-info {
		order: 2;
		width: 25%;
	}
	.shopping-basket-row-price {
		order: 3;
		width: 25%;
	}
	.shopping-basket-row-qty {
		justify-content: space-between;
	}
	.shopping-basket-row-qty-remove, .shopping-basket-row-qty-add {
		font-size: 2rem;
	}
	.shopping-basket-inner-row-participants {
		width: calc(70% - 10px);
	}
	.shopping-basket-inner-row-participants ul {
		margin-left: 50%;
		flex-direction: row;
		flex-wrap: wrap;
		width: 80%;
	}
		.shopping-basket-inner-row-participants ul li {
			width: calc(50% - 20px); 
		}
	.shopping-basket-inner-row-participants-info {
		margin-left: 50%;
		width: 80%;
	}
	.shopping-basket-row:last-child {
		border-bottom: solid 2px #D5D6DF;
	}
	#shopping-basket-discount-form,
	#shopping-basket-totals-wrapper {
		width: calc(70% - 10px);
	}
		#shopping-basket-discount-form form,
		#shopping-basket-totals,
		#shopping-basket-discount-form .message {
			width: 50%;
		}
	.shopping-basket-totals-row:last-child {
		display: block;
	}
	.checkout-billing-fields {
		width: 50%;
	}
	#checkout-form #shopping-basket-totals-wrapper {
		width: 50%;
	}
	#checkout-form #shopping-basket-totals {
		width: 100%;
	}
	#checkout-form #shopping-basket-totals-wrapper {
		order: 2;
	}
	#checkout-form #shopping-basket-totals-payment {
		order: 1;
		width: 40%;
	}
	.sponsors-list li {
		width: calc(16% - 20px);
		display: flex;
		justify-content: center;
	}
}
@media only screen and (min-width: 1280px) {
	#event-open-speakers-list li {
		width: calc(16.66% - 20px);
	}

	#wrapper {
		max-width: 1920px;
		margin: 0 auto;
	}
	.sponsors-list li {
		width: calc(10% - 20px);
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 960px) {
	.content-row-2,
	#footer-menu {
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 680px) {

}

@media only screen and (max-width: 560px) {

}
