@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@700&display=swap');

body,html{
	margin:0px;
	padding:0px;
	font-family: Arial, sans-serif;
	font-weight:400;
	font-size:17px;
	position:relative;
	box-sizing:border-box;
	color:#464441;
	line-height:26px;
}

a{
	text-decoration:none;
	color:#000;
}

img{
	border:none;
}

strong{
	font-weight: bold;
}

.clear{
	clear:both;
	height:0px;
	font-size:0px;
}

*{
	box-sizing:border-box;
}

h2{
	font-family:'Fira Sans', sans-serif;
	margin:0px;
	color:var(--main-color);
	font-size:22px;
}

.top_container{
	border-top:10px solid var(--main-color);
	padding:10px 0px;
}

.top_container .top_content{
	max-width:1360px;
	margin: auto;
}

.content_container .side_banner{
	float:left;
	width:15%;
}

.content_container .side_banner img{
	width:100%;
	height:auto;
}

.content_container:nth-child(3){
	border-top:10px solid var(--main-color);
}

.content_container .content_content .code_container{
	border:1px solid #7e7e8d;
	padding:35px;
}

.content_container .content_content .code_container h2{
	margin-top:-50px;
	background-color:#f1f0ee;
	padding:0px 10px;
	width:400px;
}

.content_container .content_content .code_container input.big-input{
	font-size:30px;
	color:#7e7e8d;
	padding:20px 0px;
	width:100%;
	text-align:center;
	border:none;
	margin-bottom:10px;
}

/****CALENDAR****/
.content_container .content_content .left_side{
	padding-right:2%;
	overflow: auto;
}

.content_container .content_content .left_side .location_group{
	margin-top:20px;
}

.content_container .content_content .left_side label{
	display:block;
	margin:0px 0px;
	font-size:14px;
	color:#464441;
	cursor:pointer;
}

.content_container .content_content .left_side label input{
	display: none;
}

.content_container .content_content .left_side label span{
	display: inline-block;
	width:20px;
	height:20px;
	border:2px solid #bbbbc1;
	background-color:#fff;
	border-radius:4px;
	position: relative;
	vertical-align: top;
	margin-top:2px;
}

.content_container .content_content .left_side label span > span{
	border: none !important;
	background-color:var(--main-color);
	width:12px;
	height:12px;
	position: absolute;
	left:2px;
	top:2px;
	margin-top:0px;
	display: none;
}

.content_container .content_content .left_side label input[type="radio"]:checked + span > span{
	display: inline-block;
}

.content_container .content_content .left_side label a{
	color:#464441;
	text-decoration: none;
	margin-left:5px;
	font-weight: bold;
}

.content_container .content_content .left_side label input[type="radio"]:checked + span + a{
	color:var(--main-color);
}


.content_container .content_content .left_side h2.fake-button{
	width:100%;
	padding:12px 0px;
	background-color:var(--main-color);
/*	border:1px solid var(--main-color);*/
/*	color:var(--main-color);*/
	color:#fff;
	display:block;
	text-align:center;
	transition: 0.2s ease-in-out;
}
.content_container .content_content .left_side a.big-button:hover{
	background-color:var(--main-color);
	color:#fff;
}
.content_container .content_content .left_side a.big-button{
	width:100%;
	padding:12px 0px;
/*	background-color:var(--main-color);*/
	border:1px solid var(--main-color);
	color:var(--main-color);
/*	color:#fff;*/
	display:block;
	text-align:center;
	transition: 0.2s ease-in-out;
}

.content_container .content_content.register{
	max-width:1360px;
	margin: auto;
	padding:50px 0px;
}

.content_container .content_content.register .event_detail{
	display: flex;
	justify-content: space-between;
	padding:25px 45px;
	background-color: #fff;
	margin-bottom:30px;
	font-size:16px;
	line-height:20px;
}

.content_container .content_content.register .event_detail strong{
	font-size:18px;
}

.content_container .content_content.register .form_container{
	padding:25px 45px;
	background-color: #fff;
	max-width:650px;
}

.content_container .content_content.register .form_container .form_item{
	position: relative;
	margin:30px 0px;
}

.content_container .content_content.register .form_container .form_item select,
.content_container .content_content.register .form_container .form_item input{
	width: 100%;
	padding: 13px 0px;
	border:none;
	border-bottom: 1px solid #706f6c;
	outline: none;
	font-family:Arial, sans-serif;
	background-color:#fff;
}

.content_container .content_content.register .form_container .form_item label{
	position: absolute;
	top: 10px;
	left: 0px;
	color: #999;
	pointer-events: none;
	transition: 0.2s ease all;
	font-family:Arial, sans-serif;
}

.content_container .content_content.register .form_container .form_item label span::before{
	content:'*';
	display: inline-block;
	width:16px;
	height:16px;
}

.content_container .content_content.register .form_container .form_item input:focus + label,
.content_container .content_content.register .form_container .form_item input:valid + label{
	top: -15px;
	font-size: 12px;
	color: #555;
}

.content_container .content_content.register .form_container .form_item input:focus + label span::before{
	content:'*';
	display: none !important;
}

.content_container .content_content.register .form_container .form_item .msg{
	position:absolute;
	left:0;
	top:40px;
	width:100%;
	color:#bf2e1b;
	font-size:12px;
}

.content_container .content_content.register .form_container .form_info{
	font-size:14px;
	color:#7e7e8d;
	margin-top:30px;
	text-align:right;
}

.content_container .content_content.register .form_container .gdpr{
	font-size:17px;
	color:#464441;
	margin-top:20px;
}

.content_container .content_content.register .form_container .gdpr_item{
	color:#7e7e8d;
	font-size:14px;
	margin-top:20px;
}

.content_container .content_content.register .form_container .gdpr_item a{
	color:var(--main-color);
	text-decoration: underline;
}

.content_container .content_content.register .form_container .gdpr_item a:hover{
	text-decoration: none;
}

.content_container .content_content.register .form_container .form_buttons{
	margin-top:80px;
	margin-bottom:50px;
}

.content_container .content_content.register .form_container .form_buttons a:nth-child(1),
.content_container .content_content.register .form_container .form_buttons a:nth-child(2){
	display: inline-block;
	padding:15px 0px;
	width:calc(100% - 145px);
	background-color:var(--main-color);
	color:#fff;
	font-size:18px;
	font-weight:bold;
	text-align: center;
}

.content_container .content_content.register .form_container .form_buttons a:nth-child(2){
	width:140px;
	background-color:#464441;
	margin-left:5px;
}

.calendar {
	position: absolute;
	left:0px;
	top:0px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	/* Add other styling as needed */
}

.calendar-overflow{
	height:100%;
}

.calendar-header{
	margin-bottom:10px;
}

.calendar-header .left-side{
	float:left;
	width:60%;
	margin-top:5px;
}

.calendar-header .left-side button{
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
	margin-right:10px;
}

.calendar-header .left-side .month-title{
	color:#464441;
	font-size:18px;
	font-weight: bold;
}

.calendar-header .left-side .location{
	font-size:16px;
	color:var(--main-color);
	font-weight:bold;
}

.calendar-header .left-side .white-space{
	width:10%;
	text-align: center;
	font-size:20px;
	font-weight: bold;
	vertical-align: top;
}

.calendar-header .left-side h2,
.calendar-header .left-side button,
.calendar-header .left-side div{
	display: inline-block;
	vertical-align: top;
}

.calendar-header .left-side h2{
	margin-right:2%;
}

.calendar-header .right-side{
	float:right;
	width:40%;
	text-align: right;
	height:35px;
}

.calendar-header .right-side .toggle-button{
	color:#464441;
	font-size:14px;
	padding:10px 45px;
	border-right:1px solid #9999a4;
	font-weight: bold;
	position:relative;
}

.calendar-header .right-side .toggle-button.sel,
.calendar-header .right-side .toggle-button:hover{
	background-color:var(--main-color);
	color:#ffffff;
	border-right:1px solid var(--main-color);
}

.calendar-header .right-side .toggle-button.sel::before{
	display:block;
	content:'';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 6px 0 6px;
	border-color: var(--main-color) transparent transparent transparent;
	position:absolute;
	left:50%;
	transform:translate(-50%,0px);
	top:-15px;
}

.calendar-grid{
	display: grid;
	grid-template-columns: repeat(7, 1fr); /* 7 columns */
	grid-template-rows: repeat(5, 1fr); /* 5 rows */
	gap: 0px; /* Optional gap between divs */
	height:calc(100% - 121px);
	justify-content: center
}

.calendar-grid.hours:not(.big){
	grid-template-columns:50px repeat(7, 1fr);
	grid-template-rows: repeat(17, 115px);
	overflow:auto;
}

.calendar-grid.hours.big{
	grid-template-columns:50px 1fr;
	grid-template-rows: repeat(17, 115px);
	overflow:auto;
}

.calendar-grid.hours:not(.big) .day-cell:nth-child(8n-7){
	color:#7e7e8d;
	font-size:12px;
	text-align:center;
}

.calendar-grid.hours.big .day-cell:nth-child(2n-1){
	color:#7e7e8d;
	font-size:12px;
	text-align:center;
}

.calendar-grid.grid-6{
	grid-template-rows: repeat(6, 1fr); /* 6 rows */
}

.calendar-grid div.day-cell{
	border-right:1px solid #c3c3c2;
	border-bottom:1px solid #c3c3c2;
	position:relative;
	align-items:center;
	background-color: #fff;
	min-height:115px;
}

.calendar-grid div.day-cell.disabled{
	color:#afaeae;
}

.calendar-grid:not(.hours) div.day-cell:nth-child(7n){
	background-color:#f8eae8;
	color:#bf2e1b;
	border-right:none !important;
}

.calendar-grid:not(.hours) div.day-cell.disabled:nth-child(7n){
	color:#d17971;
}

.calendar-grid.hours:not(.big) div.day-cell:nth-child(8n){
	background-color:#f8eae8;
	color:#bf2e1b;
	border-right:none !important;
}

.calendar-grid.hours:not(.big) div.day-cell.disabled:nth-child(8n){
	color:#d17971;
}

.calendar-grid div.day-cell .day-num{
	position: absolute;
	bottom:10px;
	right:10px;
	font-size:16px;
}

.calendar-grid div.day-cell .event_item{
	position: absolute;
	left:0px;
	width:calc(100% - 30px);
	padding:25px 0px 25px 15px;
	font-size:14px;
	line-height:18px;
	height:100%;
	z-index:2;
	background-color: #fff;
	font-weight:bold;
}

.calendar-grid div.day-cell .event_item .event_title{
	font-weight: bold;
	margin-bottom:15px;
}

a.black_button{
	color: #fff !important;
	background-color: #191919;
	padding: 15px 65px 15px 65px;
	font-size: 18px;
	font-weight: bold !important;
	line-height: normal;
	transition: all ease-in-out 0.2s;
	display: inline-block;
}

.black-button,
.red-button{
	display: inline-block;
	padding:10px 30px;
	font-size:12px;
	color:#ffffff;
	background-color:#3c3a37;
	font-weight:bold;
}

.calendar-grid div.day-cell .button_overlay{
	position:absolute;
	width:calc(100% + 30px);
	height:100%;
	top:0px;
	left:0px;
	display:block!important;
	/*background: rgb(255,255,255);
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7511205165660014) 75%, rgba(255,255,255,0.3) 100%);
	background: -o-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7511205165660014) 75%, rgba(255,255,255,0.3) 100%);
	background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7511205165660014) 75%, rgba(255,255,255,0.3) 100%);*/
}
.calendar-grid div.day-cell .event_item .black-button,
.calendar-grid div.day-cell .event_item .red-button{
	padding:3px 15px!important;
	bottom: 5px!important;
	left: 5px!important;
	top: auto!important;
	display: inline-block!important;
	transform: none!important;
}
.calendar-grid.hours div.day-cell .button_overlay{
	width:100%;
}

.calendar-grid.hours div.day-cell .button_overlay .red-button{
	background-color:#bf2e1b !important;
}

.calendar-grid.hours.big div.day-cell .event_item .red-button,
.calendar-grid.hours.big div.day-cell .event_item .black-button{
	transform:translate(0,-50%) !important;
	left:10% !important;
}

.calendar-grid div.day-cell .event_item .red-button,
.calendar-grid div.day-cell .event_item .black-button{
	display: inline-block;
	padding:10px 30px;
	font-size:12px;
	color:#ffffff;
	background-color:#3c3a37;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-weight:bold;
}

.red-button{
	background-color:var(--main-color) !important;
}

.red-button.big{
	font-size:18px;
	width:100%;
	display: block;
	text-align: center;
}

.days-holder {
	display: grid;
	grid-template-columns: repeat(7, 1fr); /* 7 columns */
	background-color: #7e7e8d;
	color:#fff;
	padding:0px 0px;
	text-align:center;
	line-height:40px;
	font-size:12px;
	font-weight:bold;
	height:40px;
}

.days-holder.hours{
	grid-template-columns:50px repeat(7, 1fr);
}

.days-holder span{
	font-size:18px;
}
/****CALENDAR****/

.resp_menu_button{
	position:relative;
	text-align:center;
	z-index:3;
	padding-left:0px !important;
	height:25px;
	width:30px;
	margin-left:10px;
	display:none;
	margin-top:11px !important;
	float:right;
}

.resp_menu_button span{
	display:inline-block;
	width:30px;
	height:4px;
	background-color:#000000;
	position:absolute;
	left:50%;
	margin-left:-15px;
	transition:all ease-in-out 0.3s;
	border-radius:10px;
}

.resp_menu_button span:nth-child(1){
	top:0px;
}

.resp_menu_button span:nth-child(2){
	top:9px;
}

.resp_menu_button span:nth-child(3){
	top:18px;
}

.resp_menu_button.open span:nth-child(1){
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 8px;
}

.resp_menu_button.open span:nth-child(2){
	width: 0%;
	opacity: 0;
}

.resp_menu_button.open span:nth-child(3){
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 8px;
}

h1.white_text,
h2.white_text,
h3.white_text,
span.white_text,
div.white_text,
a.white_text{
	color:#fff !important;
}
h1.yellow_text,
h2.yellow_text,
h3.yellow_text,
span.yellow_text,
div.yellow_text,
a.yellow_text{
	color:#cfd12c !important;
/*	text-shadow:0px 0px 8px rgba(0,0,0,0.6);*/
}

h1.turkizen_text,
h2.turkizen_text,
h3.turkizen_text,
h4.turkizen_text,
span.turkizen_text,
div.turkizen_text,
a.turkizen_text{
	color:#1cbfaa !important;
}

table.quote{
	background-color:#f7f7f7;
	font-size:18px;
	color:#434d5c;
}

table.quote td span{
	font-size:21px;
}

table.quote td{
	padding:30px 0px;
	line-height:30px;
}

table.piktogrami tr td h3{
	color:#474747;
	margin:0px;
	font-weight:600;
	margin-bottom:10px;
	margin-top:10px;
	font-size:18px;
}

table.piktogrami tr td ul{
	margin:0px;
	padding:0px;
	list-style: none;
}

table.piktogrami tr td ul li{
	padding:2px 5px;
	padding-right:0px;
	padding-left:20px;
	position: relative;
}

table.piktogrami tr td ul li::before{
	content:"●";
	display:block;
	position: relative;
	left:-20px;
	top:0px;
	margin-bottom: -20px;
	color:#1995b8;
	font-size:20px;
}

img.fade{
	opacity:0.5;
	transition: all ease-in-out 0.3s;
}

img.fade:hover{
	opacity: 1;
}

a.yellow-button,
div.yellow-button,
span.yellow-button{
	display: inline-block;
	width:140px;
	background-color:#cfd12c;
	font-size:14px;
	text-align: center;
	color:#fff;
	line-height: 45px;
	vertical-align: top;
	border-radius:5px;
	margin-top:20px;
	transition:all ease-in-out 0.3s;
}

a.yellow-button:hover,
div.yellow-button:hover,
span.yellow-button:hover{
	transform:scale(1.05);
}

a.more-button{
	color:#4a6173;
	font-size:14px;
	text-decoration: underline;
	font-weight:600;
}

h1.turkizen-button,
h2.turkizen-button,
h3.turkizen-button,
h4.turkizen-button,
span.turkizen-button,
div.turkizen-button,
a.turkizen-button{
	color: #fff !important;
	background-color: #1cbfaa;
	padding: 15px 45px 15px 45px;
	font-size: 14px;
	font-weight:normal !important;
	line-height:normal;
	transition: all ease-in-out 0.2s;
	display: inline-block;
	border-radius:5px;
	text-align: center;
}


/****POPUP CONFIRM****/
.mfp-content .dialog.confirm .content{
	padding:20px 20px !important;
	background-color:#fff;
	font-size:18px;
	color:#3c3a37;
	border:1px solid #c2c2c2;
	border-top:none;
}

.mfp-content .dialog.confirm button{
	border:none;
	display:inline-block;
	border-radius: 50%;
	cursor: pointer;
	font-size:18px;
	text-transform: uppercase;
	background-color:#7e7e8d;
	color:#fff;
	font-weight: bold;
	width:24px;
	position: absolute;
	right:20px;
	top:25px;
}

.mfp-content .dialog.confirm h2{
	font-size:18px;
	margin:0px;
	background-color:#fff;
	text-align: center;
	margin-bottom:0px;
	line-height:80px;
	color:#3c3a37;
	position:relative;
	border:1px solid #c2c2c2;
	border-bottom:none;
	font-weight: normal;
	font-family:Arial, sans-serif;
}

.pop_event_holder .pop_event_item{
	border-bottom:1px solid #a0a0ab;
	padding:15px 0px;
}

.pop_event_holder .pop_event_item:nth-last-child(1){
	border:none;
}

.pop_event_holder .pop_event_item .pop_event_time{
	color:#3c3a37;
	font-size:18px;
	float:left;
	padding-right:20px;
	margin-top:8px;
}

.pop_event_holder .pop_event_item .pop_event_time img{
	vertical-align: bottom;
	margin-right:15px;
}

.pop_event_holder .pop_event_item .pop_event_indicator{
	width:14px;
	height:14px;
	display:block;
	float:left;
	border-radius:50%;
	margin-top:17px;
}

.pop_event_holder .pop_event_item .pop_event_title{
	float:left;
	margin-left:25px;
	font-size:14px;
	color:#000000;
	margin-top:10px;
}

.pop_event_holder .pop_event_item .pop_event_indicator_num{
	float:left;
	font-weight:bold;
	margin-left:5px;
	margin-top:9px;
}

.pop_event_holder .pop_event_item .pop_event_button{
	float:right;
}

.pop_event_holder .pop_event_item .pop_event_button a{
	width:180px;
	display:inline-block;
	padding:10px 0px;
	background-color:#3c3a37;
	font-size:12px;
	color:#fff;
	text-align:center;
	font-weight:bold;
}

.pop_event_holder .pop_event_item .pop_event_button.full a{
	background-color:#bf2e1b;
}