@import 'css_vars.css';

.login-warning {
	color: #a5a5a5;
	font-weight:400;
	font-size: 0.95em;
	border: 1px solid var(--global_main_color);
	max-width: calc(100vw - 40px);
	width:450px;
	margin-left: auto;
	margin-right: auto;
	padding: 6px 15px;
}

html[lang="hu"] .login-warning {
	width:520px;
}

.login-warning a {
	font-weight:500;
	text-decoration:underline;
}

#reservation-form, 
#reservation-map {
	max-width:900px;
	margin-left: auto;
	margin-right: auto;
}
#res_hdr {
	font-weight:600;
	font-size: 1.3em;
	margin-top:1em;
	margin-bottom:1em;
}
#reservation-map .lake-map-container {
	display:none;
}
.lake-top {
	margin-left:5px;
	margin-right:5px;
}

#reservation-form .fa, #reservation-form .fab, #reservation-form .fas {
	vertical-align:middle;
}

#reservation-form select {
	background-color:#fff !important;
}

#reservation-form INPUT[type="checkbox"],
#reservation-form INPUT[type="radio"] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid #abadb3;
    border-radius: 0px;
    background: #fff 0 -200px/contain url('../img/check-mark.png') no-repeat;
}

#reservation-form INPUT[type="checkbox"]:active,
#reservation-form INPUT[type="radio"]:active {
    background-color: #ddd;
}

#reservation-form INPUT[type="radio"] {
    border-radius: 50%;
    background: #fff 0 -200px/contain url('../img/check-radio.png') no-repeat;
}

#reservation-form INPUT[type="checkbox"]:checked,
#reservation-form INPUT[type="radio"]:checked {
    background-position: 0 0;
}

#reservation-form INPUT[type="checkbox"]:disabled,
#reservation-form INPUT[type="radio"]:disabled {
    background-color: #ddd;
    opacity: 0.7;
    cursor: default;
}

.tab-row {
	margin-top:15px;
	margin-bottom: 15px;
}
.tab-header {
	background-color: #f5f5f5;
  border-radius: 4px;
	padding: 8px;
	cursor:pointer;
	position:relative;
	user-select:none;
}
.tab-header h4 {
	display: inline-block;
	margin:0;
	vertical-align: middle;
	text-overflow: ellipsis;
	max-width: calc(100% - 80px);
}
.tab-header .hlp {
	position:absolute;
	right: 15px;
	width: 34px;
	height:34px;
	vertical-align: middle;
}
.tab-header .hlp .fa-question-circle {
	font-size: 34px;
	opacity:1 !important;
}

.tab-header #info {
	display:none;
	cursor:pointer;
	font-size: 20px;
	margin-left:10px;
	color: #cecfce;
}
.tab-number {
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: space-around;
	width: 34px;
	height:34px;
	color:#fff;
	font-weight: 800;
	font-size:20px;
	font-family: Helvetica, sans-serif;
	text-align: center;
	vertical-align: middle;
	border-radius: 50%;
	margin:0px;
	margin-right: 10px;
}
.tab-content {
	height:0px;
	overflow:hidden;
	transition: height 2s ease-in-out;
}
.tab-content.show {
	height:auto !important;
}

.ticket-select SELECT {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 1px;
    padding: 4px;
    margin-top: 15px;
    outline: none;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    min-width: 630px;
    max-width: 84vw;
}
@media(max-width:720px) {
	.ticket-select SELECT {
		min-width: 84vw;
	}
}

.ticket-type {
	justify-content: center;
	gap: 20px;
	margin-top:10px;
	padding-bottom: 15px;
}
.ticket-type div {
	cursor:pointer;
	border: 1px solid var(--global_main_color);
	border-radius: 2px;
	padding: 10px;
	opacity: 0.5;
	filter:grayscale(1);
	user-select: none;
	margin-left:10px;
	margin-right:10px;
	min-height:80px;
	transition: all 500ms ease;
}
.ticket-type div td img {
	margin-right:5px;
}
.ticket-type div td b {
	text-transform: uppercase;
	margin-right:10px;
}
.ticket-type div.active {
	opacity: 1;
	filter:none;
}
.ticket-type div:hover {
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 10%), 2px 4px 45px rgb(25 25 33 / 15%);
}

.lake-map-container .lake {
		position:relative;
		width: fit-content;
		height: fit-content;
		max-width:100vw;
		margin-left: auto;
		margin-right: auto;
		user-select: none;
		overflow:auto;
	}
	@media(max-width:420px) {
    .lake-map-container .lake {
				width: 100vw;
        margin-left: -15px;
				margin-right: -15px;
    }
	}
	@media(max-width:520px) {
    .res-container {
			padding-right: 0px;
			padding-left: 0px;
    }
	}
	.lake-map-container .lake .spot {
		display: inline-flex;
		align-items: center;
		align-content: center;
		justify-content: space-around;
		width: 24px; 
		height: 24px;
		font-size: 14px;
		font-family: Arial, Helvetica, sans-serif;
		font-weight:600;
		text-align:center; 
		position: absolute;
		z-index: 100;
		border-radius: 50%;
		color: white;
		user-select: none;
		cursor:pointer;
		background-color: #cacaca;
	}
	.lake-map-container .lake .spot:hover {
		opacity: 0.8;
		z-index: 1000;
	}

	.lake-map-container .lake .spot.selected, .glow {
		animation: glow 1s infinite alternate;
		opacity: 1 !important;
		z-index: 1000;
	}
	@keyframes glow {
		from {
			box-shadow: 0 0 10px -6px var(--global_main_color_rgba_40);
		}
		to {
			box-shadow: 0 0 10px 6px var(--global_main_color_rgba_40);
		}
	}
	.lake-map-container .lake .spot.disabled {
		background-color: #cacaca !important;
		color: gray !important;
		cursor: not-allowed;
	}
	.scroll-ico {
		width: 70px;
		height:70px;
		background: url('../img/icon_scroll.png') no-repeat;
		margin-right:auto;
		margin-left:auto;
		margin-top: 6px;
		background-size: 90%;
	}
	
	.lake-dates {
		padding-top:1.2em;
		padding-bottom:1.2em;
	}
	.date-box {
		width: 300px;
		max-width: 95vw;
		border:1px solid #cccccc;
		background-color: #fff;
		margin-top:1em;
		margin-left: auto;
		margin-right: auto;
	}
	.date-box div {
		text-align:left;
		padding: 4px;
		padding-left: 8px;
	}
	.date-box div:hover {background-color:#fafafa;}
	.date-box div .fa {margin-right:6px;}
	.date-box div small {color:gray;}
	
	.renting-container {
		align-items: stretch;
		position:relative;
		width: fit-content;
		height: fit-content;
		min-height:90px;
		max-width:100vw;
		margin-left: auto;
		margin-right: auto;
		user-select: none;
		overflow:auto;
		padding: 20px;
		padding-top: 30px;
		padding-bottom: 0px;
	}
	.eq {
		min-width: 160px;
		max-width: 160px;
		border: 2px solid #dddddd;
		border-radius: 3px;
		padding: 10px;
		text-align:center;
		cursor:pointer;
		margin-right:10px;
		margin-left: 10px;
		margin-bottom:20px;
	}
	.eq:hover {
		-border-color: #ccc;
		box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1), 2px 4px 35px rgb(25 25 33 / 10%);
	}
	.eq.selected {
		border-color: var(--global_main_color) !important;
	}
	.eq-name {
		margin-top:4px;
		margin-bottom:5px;
		font-size: 15px;
		font-weight: 550;
		color: #252525;
		line-height: 1.2;
	}
	.eq.selected .eq-name {
		color: var(--global_main_color) !important;
	}
	.eq-price {
		font-size: 22px;
		font-weight: 550;
		color: var(--global_main_color);
	}
	.eq-price small {
		color: gray !important;
		font-size: 10px;
		margin-top:-3px;
		margin-bottom: 10px;
		display:block;
	}
	.eq-inp {
		line-height: 40px;
	}
	.eq input {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 550;
		display: inline-block;
		width: 48px;
		margin-right: 5px;
		margin-left: 5px;
		margin-top: 0px;
		padding: 3px;
		padding-bottom: 2px;
		text-align:center;
		background-color: transparent !important;
		box-shadow: none !important;
	}
	.eq .fa {
		font-size: 36px;
		color: #ccc;
		display:none;
	}
	.eq.selected .fa {
		display:inline-block;
	}
	.help-anim {
		width: 60px;
		height:60px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
		background: url('../img/loading.svg') center center no-repeat;
	}


	.lake-reserve {
		align-items: flex-start;
		padding-top: 30px;
		padding-bottom:20px;
		padding-left:16px;
		width:90%;
		max-width:800px;
		margin-right:auto;
		margin-left:auto;
	}
	.lake-reserve b {
		color:#5a5a5a;
		font-weight:550;
		font-size:1.05em;
	}
	.lake-reserve .edit-btn {
		display:inline-block;
		margin-left: 8px;
	}
	.lake-reserve .fa-question-circle {
		font-size: 18px;
		margin-bottom:2px;
	}
	@media(max-width:500px) {
		.lake-reserve .fa-question-circle {
			font-size: 22px;
		}
		.lake-reserve {
			padding-left:0px;
			width:92%;
		}
	}
	.invoice-address {
		background-color: #fff;
		margin-top:16px;
		max-width: 350px;
		padding-left: 28px;
		font-size: 14px;
		color:gray;
	}
	.invoice-address span {
		margin-left:-24px;
		padding-top:4px;
		cursor:pointer;
	}
	.invoice-address .fa-exclamation-triangle {
		margin-right: 6px;
		vertical-align:baseline !important;
	}
	.res-box {
		width:100%;
	}
	.res-box.half {
		width:50%;
	}
	.res-box label {
		font-weight: normal;
		color:gray;
		cursor:pointer;
	}
	@media(max-width:600px) {
    .res-box.half  {
      width:100%;
			margin-bottom: 30px;
    }
		.res-box.half:last-of-type  {
			margin-bottom: 0px;
    }
}
.res-box .fa.accent,
.res-box .fas.accent {
	margin-right:7px;
	font-size:larger;
	min-width: 20px;
}
	.lake-reserve input[type="radio"] {
		width: 18px;
		height: 18px;
		vertical-align:middle;
		margin-right:10px;
		margin-top:-2px;
	}
	.card-payment {
		margin-top:20px;
		padding-left: 26px;
	}
	.card-payment div {
		margin-top:12px;
	}
	.card-payment div:first-of-type {
		margin-top:0px;
	}
	.card-payment img {
		margin-right:14px;
	}
	.card-payment sub {
		font-size:1.2em;
	}
	.card-payment span {
		font-size:0.9em;
		margin-left:10px;
	}
	label.strong {
		font-weight:500;
	}
	.cib-cards {
		margin-left:20px;
		margin-bottom:16px;
	}

	.cib-cards div label { line-height:1.2; font-weight:400 !important;}
	#reservation-form .fa-question-circle {
		cursor:pointer;
		opacity: 0.25;
		margin-left: 8px;
	}
	#reservation-form .fa-question-circle:hover {opacity: 0.5;}
	.person-data {
		padding-top:30px;
		padding-left:20px;
		padding-bottom:0px;
	}
	.person-data .fa-male, .comp-ticket .fa-male {
		color: #ccc;
		vertical-align:bottom !important;
	}
	.person-data .fa-2x {margin-left:-3px;}
	.person-data .fa-trash-alt {
		cursor:pointer;
		font-size: 26px;
		margin-top: 13px;
	}
	.person-data .btn {
		margin-right: 20px;
		margin-bottom: 15px;
	}
	.person-data #f1_type .dbld {
		display: none !important;
	}
	
	.comp-ticket {
		padding-top:26px;
		padding-left:30px;
		padding-right:40px;
	}
	.comp-ticket select {
		margin-top: 5px;
		text-align:center;
		display: inline-block;
	}
	.comp-ticket b.accent {
		font-size: 13px;
		font-weight: 700;
	}
	
	#summary {
		width: 100%;
		max-width: 95vw;
		border:1px solid #cccccc;
		background-color: #fff;
		margin-bottom:1.8em;
		padding:15px;
	}
	#summary td {
		border-bottom: 1px solid #efefef;
		padding:6px;
		font-weight:450;
	}
	#summary td span {
		opacity: 0.5;
	}
	#summary td.subt {
		text-align:right;
		padding-right:10px;
	}
	#summary .fa-trash-alt {
		opacity: 0.7;
		margin-left:10px;
		cursor: pointer;
	}
	#summary b.accent {
		font-weight:450;
	}
	#summary td.total {
		font-weight:600;
		border-top: 2px solid #ccc;
		border-bottom: none;
	}
	.coupon-box, .balance-box, .giftcard-box {
		margin-bottom:1.8em;
	}
	.gc-input, .cc-input {
		margin-top:16px;
		margin-left: 30px;
		white-space: nowrap;
	}
	#redeem_giftcard, #redeem_coupon {
		text-align:center;
		height: 36px;
		width: 210px;
		max-width: calc(100% - 120px);
		padding-left:5px;
		padding-right:5px;
		display:inline-block;
		vertical-align:middle;
	}
	#redeem_coupon {
		/*width: 180px;*/
	}
	.gc-input button, .cc-input button {
		height: 36px;
		vertical-align:middle;
		font-size: 13px;
	}
	.amo {
		font-size: 20px;
		margin-left: 6px;
		line-height:0;
	}
	.consent-box {
		padding-left:20px;
		padding-right:20px;
		padding-top:24px;
		padding-bottom: 15px;
	}
	.consent-box input[type="checkbox"] {
		width: 20px;
		height: 20px;
		float: left;
		margin-right: 10px;
		line-height: 3;
	}
	.consent-box label {
		font-weight: 450;
		cursor:pointer;
	}
	.consent-box p {
		text-align: justify;
		margin-left: 30px;
		margin-bottom: 9px;
		color:gray;
	}
	
	.pay-logo {
		margin-top: 30px;
	}
	.pay-logo div {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align:center;
	}
	
	.bottom-pic {
		height: clamp(420px, 40vh, 600px);
		padding:0px;
		background-position: center center;
		background-repeat: no-repeat;
		background-size:cover;
		position: relative;
	}