/* --- BACK BUTTON --- */
.L-back {
	display: block;
	position: relative;

	width: 40px;
	height: 40px;

	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.L-back:before {
	display: block;
	position: absolute;
	content: "";

	width: 100%;
	height: 100%;

	top: 0;
	left: 0;

	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);

	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);

	transition: -webkit-transform .2s, opacity .2s, background .2s;
	transition: transform .2s, opacity .2s, background .2s;
}
.L-back:hover:before, .L-back:focus:before, .L-back:active:before {
	opacity: .75;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.L-back:active:before { opacity: 1; }
.L-back:after {
	display: block;
	position: absolute;
	content: "";

	width: 22px;
	height: 17px;

	top: 50%;
	left: 50%;

	margin-left: -11px;
	margin-top: -8.5px;

	background: url('../images/arrow.svg') no-repeat 0 0;
}

/*
@media only screen and (max-width: 800px) {
    .L-back { margin-left: -15%; }
}
*/




/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- HEADINGS --- */
.L-h1 {
	font-family: 'Homestead', sans-serif;
	font-size: 24px;
	color: #8b8b8b;
}
@media only screen and (max-width: 1300px) {
    .L-h1 { font-size: 20px; }
}

.L-h1-center {
	width: 100%;
    text-align: center;
    font-family: 'Homestead', sans-serif;
	font-size: 24px;
	color: #8b8b8b;
}

.L-h2 {
	font-size: 14px;
	text-transform: uppercase;
	color: #8c8c8c;
	font-weight: bold;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- INPUTS --- */
.L-input {
	display: block;

	width: 100%;
	height: 52px;

	box-sizing: border-box;

	padding: 12px 25px;
	margin: 4px 0;

	font-size: 18px;
	color: #333333;
	font-weight: 300;

	background: #ffffff;
	border: 2px solid #cacaca;
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);

	transition: color .2s, border .2s, box-shadow .2s;
}
select.L-input {
	height: initial;
}
.color-placeholder {
	color: #cacaca;
}
option {
	color: #333333;
}
option[disabled] {
	display: none;
}
textarea.L-input { height: 100px; }
.L-input:hover { box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.08); }
.L-input:focus { border-color: #f2bf43; }
.L-input.invalid { border-color: #d44c44; }
.L-input.validate:invalid { border-color: #d44c44; }

/* invalid hint */
.L-input-hint {
	height: 0;
	opacity: 0;
	visibility: hidden;

	padding: 0 30px;
	margin-bottom: 0;

	font-size: 15px;
	color: #d44c44;
	font-weight: 300;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	transition: visibility .5s, opacity .5s, height .5s, margin .5s;
}
.L-input.invalid + .L-input-hint {
	visibility: visible;
	opacity: 1;
	height: 20px;
	margin-bottom: 10px;
}


/* --- CHECKBOX --- */
.L-checkbox {
	display: -webkit-flex;
	display: flex;

	-webkit-align-items: center;
	align-items: center;

    margin-top: 40px;
}

.L-radio a:not(.link) {
	border-radius: 50%;
}
label.L-checkbox { cursor: pointer; }
.L-checkbox input[type="checkbox"], .L-checkbox input[type="radio"] {
	position: absolute;
	opacity:0;
}
.L-checkbox a:not(.link) {
	display: block;
	position: relative;

	-webkit-flex-shrink: 0;
    flex-shrink: 0;

	width: 25px;
	height: 25px;

	margin-right: 10px;

	box-sizing: border-box;

	background: #fff;
	border: 1px solid #afafaf;

	transition: background .2s, box-shadow .2s;
}
.L-checkbox:hover a:not(.link) { box-shadow: 0 0 0 1px #afafaf; }
.L-checkbox:hover input[type="checkbox"]:checked + a:not(.link), .L-checkbox:hover input[type="radio"]:checked + a:not(.link) { box-shadow: 0 0 0 1px #88d252; }
.L-checkbox input[type="checkbox"]:checked + a:not(.link), .L-checkbox input[type="radio"]:checked + a:not(.link) { background: #88d252; border-color: #88d252; }
.L-checkbox a:not(.link):after {
	display: block;
	position: absolute;
	content: "";

	width: 25px;
	height: 25px;

	top: 0px;
	left: -1px;

	background: url('../images/checkbox-tick.png') no-repeat 0 0;
    background-size: contain;

	-webkit-transform: scale(0) rotate(90deg);
	transform: scale(0) rotate(90deg);
	opacity: 0;

	transition: -webkit-transform .2s, opacity .2s;
	transition: transform .2s, opacity .2s;
}
.L-checkbox input[type="checkbox"]:checked + a:not(.link):after, .L-checkbox input[type="radio"]:checked + a:not(.link):after {
	-webkit-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0);
	opacity: 1;
}
.L-checkbox .text {
	font-size: 18px;
	color: #a0a0a0;
    font-family: RobotoCondensed;
    text-align: left;
}
.L-checkbox a.link { color: #4EC2D8; }
.L-checkbox a.link:hover { text-decoration: underline; }

@media only screen and (max-width: 1000px) {
    .L-checkbox{ justify-content: center; -webkit-justify-content: center; }
}



/* --- SELECT --- */
.L-select{
	display: block;

    width: 100%;
    box-sizing: border-box;

    margin-top: 40px;
    padding: 14px 20px;

    border: 2px solid #CACACA;

    font-size: 18px;
    color: #C1AEB1;

    transition: background .2s, box-shadow .2s;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);

    -webkit-appearance: auto;
    -moz-appearance: auto;
}
.L-select:hover { box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.08); }
.L-select:focus { border-color: #f2bf43; }

@media only screen and (max-width:800px) {
    .L-input { padding: 12px 10px;}
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- BUTTON --- */
.L-button {
	display: inline-block;

	min-width: 165px;
	box-sizing: border-box;
	padding: 14px 18px;

	font-size: 17px;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;

	background: #E4AF2D;

	transition: background .2s, color .2s, box-shadow .2s;
}
.L-button.small {
	padding: 8px 12px;

	font-weight: normal;
	font-size: 14px;
	text-transform: none;
}

.L-button:disabled {
	color: #ffffff;
	background: #969696;
	cursor: default;
}

.L-button:disabled.white { margin: 0; }
.L-button:disabled.rebuy { margin: 0; }


.L-button:not(:disabled):hover, .L-button:not(:disabled):focus {
	background: #F1BD3D;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.L-button:not(:disabled):active {
	background: #AD8522;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* color buttons */
.L-button.red:not(:disabled) { background: #DC534B; }
.L-button.red:not(:disabled):hover, .L-button.red:not(:disabled):focus { background: #DC534B; }
.L-button.red:not(:disabled):active { background: #8C2D28; }

.L-button.white:not(:disabled) {     background: #ffffff; margin-top: 0px; color: #949494; border: 2px solid #949494;}
.L-button.white:not(:disabled):hover, .L-button.white:not(:disabled):focus { background: #ffffff; }
.L-button.white:not(:disabled):active { background: #efefef; }

.L-button.green:not(:disabled) { background: #58cab7; }
.L-button.green:not(:disabled):hover, .L-button.green:not(:disabled):focus { background: #78DECD; }
.L-button.green:not(:disabled):active { background: #3C8E80; }


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* --- Templates --- */

.G-basket-container .popup .basket-entry.template {
   display: none;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */


/* --- ALERT --- */
.L-alert {
	position: fixed;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: space-between;
	justify-content: space-between;

	-webkit-align-items: center;
	align-items: center;

	bottom: 40px;
	left: 40px;

	max-width: 500px;
	box-sizing: border-box;
	padding: 19px 36px;

	background: #4b5c68;
	border-radius: 5px;
	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.27);

	font-size: 14px;
	color: #ffffff;

	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(100%) translateZ(0);
	transform: translateY(100%) translateZ(0);

	transition: -webkit-transform .4s, opacity .4s, visibility .4s, background .4s;
	transition: transform .4s, opacity .4s, visibility .4s, background .4s;

	z-index: 19999;
}
.L-alert.visible {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0) translateZ(0);
	transform: translateY(0) translateZ(0);
}
.L-alert[data-type="info"]{ background: #4b5c68; }
.L-alert[data-type="success"]{ background: #81c870; }
.L-alert[data-type="error"]{ background: #dc5b5b; }
.L-alert[data-type="notification"]{ background: #ffffff; color: #4b5c68; }
.L-alert[data-type="loading"]{ background: #FFD600; color: #545454; }

/* text */
.L-alert .text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	margin-right: 20px;
}

/* action */
.L-alert .action {
	color: #64bfff;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	transition: color .4s;
}
.L-alert[data-type="info"] .action { color: #64bfff; }
.L-alert[data-type="success"] .action { color: #c6ffb8; }
.L-alert[data-type="error"] .action { color: #ffd1d1; }
.L-alert[data-type="notification"] .action { color: #009ed3; }
.L-alert[data-type="loading"] .action { color: #64bfff; }

/* close */
.L-alert .close {
	display: block;

	width: 20px;
	height: 20px;

	padding: 5px;
	margin-left: 15px;

	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	opacity: .75;
	transition: opacity .2s;
}
.L-alert .close:hover { opacity: 1; }
.L-alert .close svg {
	display: block;
	width: 100%;

	stroke: #79a0bc;
	stroke-width: 2;

	transition: stroke .4s;
}

.L-alert[data-type="info"] .close svg { stroke: #79a0bc; }
.L-alert[data-type="success"] .close svg { stroke: #e1ffda; }
.L-alert[data-type="error"] .close svg { stroke: #ffadad; }
.L-alert[data-type="notification"] .close svg { stroke: #afb8bf; }

@media screen and (max-width: 600px){
	.L-alert {
		width: 100%;
		max-width: none;

		left: 0;
		bottom: 0;

		border-radius: 0;

		padding: 20px 15px;
	}
}
.opacity20
{
	opacity: 0.2;
}
.L-button_sold_out {
	display: inline-block;

	min-width: 165px;
	box-sizing: border-box;
	padding: 14px 18px;

	font-size: 17px;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	transition: background .2s, color .2s, box-shadow .2s;

	background: #DC534B;
}
.G-ticket-container .ticket-container .ticket_sold_out {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;

	width: 100%;
	max-width: 630px;
	height: 100px;

	box-sizing: border-box;

	margin-right: 40px;
	padding: 10px 30px;

	background: url('../images/ticket-bg.png') no-repeat;
	background-size: cover;

	font-size: 20px;
	font-weight: bold;
}
.G-ticket-container .ticket-info_sold_out
{
	max-width: 630px;
	margin: 6px 0;
	padding: 0 10px;

	font-size: 11px;
	color: #DC534B;
}
