:root{
	--landing-primary-color: #455162;
	--landing-secondary-color-dark: #24C2B6;
	--landing-secondary-color-light: #9EE8D9;
	--text-color: #323232;
	--additional-color: #E3EFF680;
	--border-color: #AFCCDF;
	--gray-text-color: #B5B5B5;
}

.primary-color {
	color: var(--landing-secondary-color-dark);
}

.my-text-color {
var(--text-color);
}

input:focus, input:target,
.btn:focus{
	box-shadow: none !important;
}

html, body {
	font-family: 'Poppins', sans-serif;
}

.form-control, .form-select {
	border-radius: 0;
}

.hidden {
	display: none;
}

@media (max-width: 768px) {
	.main-container {
		margin-right: calc(-.5 * var(--bs-gutter-x));
		margin-left: calc(-.5 * var(--bs-gutter-x));
	}
}

.landing-btn
{
	background-color: var(--landing-secondary-color-dark);
	padding: 10px 20px;
	color: white;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 14px;
}
.landing-btn:hover
{
	text-decoration: none;
	background-color: var(--landing-secondary-color-light);
	color: white;
}

.landing-border-btn {
	font-size: 14px;
	background-color: transparent;
	padding: 8px 20px;
	border-radius: 0;
	border: 1px solid var(--landing-secondary-color-dark);
	color: var(--landing-secondary-color-dark);
	font-weight: bold;
	text-transform: uppercase;
}
.landing-border-btn:hover {
	border: 1px solid var(--border-color);
	color: var(--border-color);
}

.filter-button {
	color: var(--landing-primary-color);
	padding: 0.375rem 0.75rem;
	border: 1px solid var(--landing-secondary-color-dark);
	border-radius: 4px;
	background: transparent;
	transition: all .15s;
}

.filter-button:hover {
	background-color:  var(--landing-secondary-color-light);
	border: 1px solid var(--landing-secondary-color-light);
	color: white;
}

.filter-button.active {
	background-color:  var(--landing-secondary-color-dark);
	color: white;
}

/* FADE-IN EFFECT */

.fade-in {
	transform: translateY(30px);
	opacity: 0;
	transition: all 2s ease;
}

.fade-show {
	opacity: 1;
	transform: translateY(0);
}


/* Highlight */
.highlight-theme ul li {
	position: relative;
	list-style: none;
	padding-left: 20px;
}
.highlight-theme ul li:before {
	content: '';
	position: absolute;
	display: block;
	background: var(--landing-secondary-color-dark);
	width: 10px;
	height: 10px;
	top: 25%;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 50% 50%, 0% 100%);
}


/*EVENT LIST */

.main-event-container {
	background-position: center center;
	background-size: cover;
	color: white;
}


.show-category {
	background-color: var(--landing-primary-color);
	color: white;
	padding: 3px 12px;
	font-size: 12px;
	display: inline-block;
}

.show-category-1 {
	bottom: 25%;
	left: 4%;
}
.show-category-2 {
	bottom: 10%;
	left: 4%;
}



/* APPLE BUTTON */
.bn45 {
	display: inline-block;
	height: 50px;
}
/* ANDROID BUTTON */
.bn46 {
	display: inline-block;
	height: 50px;
}

.text-color-primary {
	color: var(--landing-secondary-color-dark);
}

.footer-navbar a {
	color: var(--text-color);
	text-decoration: none;
	text-transform: uppercase;
}

.footer-navbar .footer_icons a {
	color: var(--text-color);
}

.footer-copy {
	font-size: 12px;
	color: var(--text-color);
}

.footer-copy a {
	color: var(--text-color);
}

@media (max-width: 768px) {
	.foot-info {
		font-size: 12px;
	}
}

#sponsor_list {
	background: var(--additional-color);
}

#participating_companies_list {
	background: var(--additional-color);
}

#newsletter {
	background: url("../../img/newsletter_bg.png");
	background-position: center center;
	background-size: cover;
	color: white;
	min-height: 300px;
}

.event_grid {
	display: grid;
	/*grid-template-columns: repeat(auto-fit, minmax(auto, 430px));*/
	grid-template-columns: 1fr 1fr;
	justify-content: space-between;
	grid-gap: 50px;
}

@media (max-width: 1200px) {
	.event_grid {
		grid-template-columns: 1fr 1fr;
		justify-content: center;
		grid-gap: 40px;
	}
}

@media (max-width: 800px) {
	.event_grid {
		grid-template-columns: 1fr;
		justify-content: center;
		grid-gap: 20px;
	}
}
@media (max-width: 700px) {
	.footer-copy{
		flex-direction: column;
	}
}
.event_grid > div {
	border: 1px solid var(--border-color)
}

.event_grid .card-title {
	margin-top: .5rem;
}

h1, h2, h3, h4, h5 {
	font-weight: 700;
	position: relative;
}

h1.pre, h2.pre {
	padding-left: 20px;
}

h1.pre:before, h2.pre:before {
	content: '';
	position: absolute;
	display: block;
	background: var(--landing-secondary-color-dark);
	width: 10px;
	height: 50%;
	left: 0;
	top: 50%;
	transform: skewY(-45deg) translateY(-50%);
}

.event-btn {
	background-color: var(--landing-secondary-color-dark);
	padding: 10px 20px;
	border-radius: 0;
	color: white;
	text-transform: uppercase;
}

.event-btn:hover {
	background-color: var(--landing-secondary-color-dark);
	color: white;
}

.card-img-bubble {
	border-radius: 50% 50% 50% 0;
	filter: grayscale(100%);
	transition: all .3s;
}

.card-img-bubble:hover {
	filter: grayscale(0%);
}

.main-event-speakers .card-img-bubble {
	height: 90px;
}


/* LOGIN FORM BOX */
.form-box {
	background: var(--additional-color);
	width: 400px;
}

#page_ticket_registration .form-box {
	background: var(--additional-color);
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
}

#page_ticket_registration .form-box .form-group {
	margin: 0 auto;
	max-width: 400px;
}


#page_ticket_registration .form-box .submitButton {
	text-align:center;
}




.profile-box {
	background: var(--additional-color);
}

.lostpass_form_cont {
	display: none;
}

.form-label{
	display: none !important;
}

.form-group .alert {
	text-indent: 10px;
	line-height: 30px;
	padding: 0 !important;
	margin: 0 !important;
	color: white;
	background-color: darkred !important;
	border-radius: 0;
}
.nav-tabs {
	border-bottom: 1px solid var(--landing-secondary-color-dark);
}
.nav-tabs .nav-link {
	color: black;
}

.nav-tabs .nav-link.active {
	color: white;
	background-color: var(--landing-secondary-color-dark);
	border-color: transparent;
}

.form-check {
	padding: 5px 0;
	min-height: 34px;
	line-height: 34px;
}

.form-check input {
	position: absolute;
	opacity: 0;
}

.form-check input ~ label {
	position: relative;
	padding-left: 40px;
}

.form-check input ~ label:before {
	content: '';
	position: absolute;
	left: 0;
	display: block;
	width: 34px;
	height: 34px;
	background: #FFFFFF;
	border: 1px solid var(--bs-border-color);
}

.form-check input:checked ~ label:before {
	content: "✔";
	text-align: center;
}

.form-check-input:checked {
	background-color: var(--landing-secondary-color-dark);
	border-color: var(--landing-secondary-color-dark);
}
/*  TERMS */


/* NEWS PAGE */
#newsheader {
	background: var(--additional-color);
}
.category-label{
	background: var(--landing-secondary-color-dark);
	color: white;
	padding: .1rem .5rem;
}

.category-label.position-absolute {
	top: 85%;
	left: 10px;
}




.news-slider > div {
	border: 1px solid var(--landing-secondary-color-dark)
}


.slick-prev {
	padding: .35rem .75rem;
	background-color: transparent;
	border: 1px solid var(--landing-secondary-color-dark);
}
.slick-next {
	padding: .35rem .75rem;
	background-color: transparent;
	border: 1px solid var(--landing-secondary-color-dark);
}

.slick-controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.slick-dots ul {
	margin: 0;
	padding: 0;
}

.slick-dots ul li {
	display: inline-block;
	list-style-type: none;
}

.slick-dots ul li:only-child {
	display: none;
}

.my-border {
	border: 1px solid var(--border-color);
	height: 100%;
}

.parent {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}

.div1 { grid-area: 1 / 1 / 5 / 4; }
.div2 { grid-area: 3 / 4 / 5 / 6; }
.div3 { grid-area: 1 / 4 / 3 / 6; }

/*CART*/
.ticket-item {
	display: grid;
	grid-template-columns: 2fr 2fr;
}

#price .form-box {
	width: auto;
	min-width: 350px;
}

.ticket-price input[type=number] {
	appearance: textfield;
}
.extra_service_quantity input[type=number] {
	appearance: textfield;
	width: 2.375em;
	text-align: center;
}

.extra_service_quantity input[type=number]::-webkit-inner-spin-button,
.extra_service_quantity input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ticket-price input::-webkit-outer-spin-button,
.ticket-price input::-webkit-inner-spin-button {
	appearance: none;
}

.extra_field_label {
	padding: 10px 0 5px 10px;
}

.coupon_info {
	border: 1px solid var(--landing-secondary-color-dark);
	background: #ffffff;
	padding: 10px;
	border-top: 0;
}

.coupon_title {
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.coupon_title .delete_coupon {
	color: black;
}

.coupon_ticket_list > div {
	padding: 5px 0;
}

.ticket-price .coupon-cont {
	grid-column: 2;
}

@media (max-width: 1000px) {
	.ticket-item {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1200px) {
	#price .form-box {
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 1200px) {
	.ticket-price .coupon-cont {
		grid-column: 1 / span 2;
	}
}

.basket-minus, .basket-plus {
	border: none;
	background: none;
}

.my-border .fix-h {
	border: 1px solid var(--border-color);
	display: flex;
	height: 100%;
	align-items: stretch;
	flex-direction: column;
}


/* Loader */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loader {
	overflow: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.7);
}

.loader #loadingIcon {
	position: absolute;
	left: calc(50% - 60px);
	top: 50%;
	transform: translate(-50%, -50%);
	border: 16px solid #24C2B6;
	border-top: 16px solid blue; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

.loader #loadingText {
	position: absolute;
	left: calc(50%);
	bottom: 10%;
	border-radius: 5px;
	transform: translate(-50%, -50%);
	width: auto;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 120%;
	color: white;
	background-color: black;

}


.fading-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}


#newsletter_modal .close,
#newsletter_modal .modal-title {
	color: var(--landing-secondary-color-dark);
}

#newsletter_modal .modal-body {
	text-align: center;
}


/*LOGIN*/
#loginBox>div {
	background-color: #4e73df;
	color: white;
}
#loginBox>div input {
	border-radius: 5px;
}
.btn-login {
	width: 50%;
	border: 3px solid white;
	background-color:transparent;
	padding: 10px 20px;
	color: white;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 16px;
}
.btn-login:hover {
	background-color: white;
	color: #4e73df;
}


.list-img-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.list-img-container img {
	position: absolute;
	top: 0;
	height: 100%;
	object-fit: cover;
}

/* Select language */
.languagepicker {
	position: absolute;
	top: 15px;
	left: 130px;
	background-color: #FFF;
	display: inline-block;
	padding: 0;
	height: 40px;
	overflow: hidden;
	transition: all .3s ease;
	margin: 0 0px 10px 0;
	vertical-align: top;
	z-index: 1100;
}

.languagepicker a {
	color: #000;
	text-decoration: none;
}

.languagepicker li {
	display: block;
	padding: 0 20px;
	line-height: 40px;
	border-top: 1px solid #EEE;
}

.languagepicker li:hover {
	background-color: #EEE;
}

.languagepicker a:first-child li {
	border: none;
	background: #FFF;
}

.languagepicker li img {
	margin-right: 5px;
	margin-top: -3px;
}

.cursor-pointer {
	cursor: pointer;
}

#accessibility_settings_toggle {
	bottom: 90px !important;
}

.club-slider .card-body a {
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--landing-secondary-color-dark);
	text-decoration: none;
}
.carousel-indicators {
	position: static;
	margin-top: 1rem;
}
.carousel-indicators button {
	background-color: #000 !important;
}
.carousel-indicators button.active {
	background-color: var(--landing-secondary-color-dark) !important;
}
