:root {
	--main-color: #c10001;
	--main-color-light: #ee2222;
}

.tkf-payment {
	background-color: #eff3f5;
	font-family: 'Cuprum', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}

.header {
	height: 80px;
	background-color: #fff;
	box-shadow: 0px 0px 8px 0px rgba(200, 200, 200, .4);
	margin-bottom: 40px
}

.header a {
	display: inline-block;
	color: #333;
}

.header .logo img {
	margin-top: 10px;
	max-height: 60px;
	float: left;
}

.header .logo h1 {
	display: inline-block;
	font-size: 24px;
	font-weight: 400;
	margin-left: 20px;
	margin-top: 28px;
}

.header .logo h1 span {
	font-weight: 700;
}

.header .website-link {
	float: right;
	margin-top: 24px;
}

.footer {
	margin: 20px 0;
	color: #333;
	text-align: center;
}

.footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center
}

.footer li {
	margin: 0 10px;
	padding: 0;
}

.footer img {
	height: 32px;
}

.card {
	background-color: #fff;
	border: none;
	border-radius: 4px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 8px 0px rgba(200, 200, 200, .4);
}

.card-header {
	background: none;
	border: none;
	overflow: hidden;
}

.card-header h2 {
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
}

.card-header img {
	width: 100%;
	max-height: 400px;
}

.card-body h4 {
	font-size: 20px;
}

.main-color {
	color: #c10001;
}

a.main-color {
	color: #c10001;
}
a.main-color:hover, a.main-color:active, a.main-color:focus {
	color: #ee2222;
}

.btn-custom {
	color: #fff;
	background-color: #c10001;
	border-color: #c10001;
}

.btn-custom:hover {
	color: #fff;
	background-color: #ee2222;
	border-color: #ee2222;
}

.btn-custom:focus {
	box-shadow: 0 0 0 0.2rem rgba(236, 13, 42, 0.25);
}

.btn-custom:disabled {
	pointer-events: none
}

.btn-light {
	border-color: #eee;
}

.pointer-events-none {
	pointer-events: none
}

/* modal */
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
	padding: 30px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: none;
}

.modal.open {
	display: block;
}

.modal .modal-noise {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 910;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal .modal-title {}

.modal .modal-content {
	position: relative;
	z-index: 920;
	width: 40%;
	max-width: 800px;
	min-width: 400px;
	min-height: 200px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 8px 0px rgba(200, 200, 200, 1);
	border: none;
}

.modal .modal-close {
	display: block;
	position: absolute;
	top: 14px;
	right: 14px;
	border: none;
	background: none;
	font-size: 18px;
	outline: none;
	color: #333;
	cursor: pointer;
	transition: all 0.2s;
}

.modal .modal-close:hover {
	color: #c10001;
}

/* HOME */

.events {
	list-style: none;
}

.event-item {
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

.event-item .card {
	position: relative;
	color: #333;
	text-decoration: none;
	overflow: hidden;
}

.event-item .card * {
	transition: 0.2s;
}

.event-item .card h2 {
	font-size: 26px;
	margin-top: 20px;
	color: #c10001
}

.event-item .card h4 {
	font-size: 18px;
}

.event-item .card p {
	padding-right: 20px;
}

.event-item .card.disabled {
	pointer-events: none;
}

.event-item .card.disabled img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}

.event-item .card:hover img {
	opacity: 0.8;
}

/* EVENTS */

/* wizard */
.wizard {
	margin-bottom: 30px;
	counter-reset: step;
}

.wizard-tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	display: flex;
	justify-content: space-around;
	text-align: center;
	margin-bottom: 30px
}

.wizard-tabs li {
	position: relative;
	padding: 10px 18px;
}

.wizard-tabs li a {
	display: block;
	color: #bbb;
	text-decoration: none;
	margin-bottom: 16px;
	pointer-events: none;
	transition: all 0.2s;
}

.wizard-tabs li small {
	display: inline-block;
	line-height: 20px;
	color: #bbb;
	transition: all 0.2s;
}

.wizard-tabs li:after {
	counter-increment: step;
	content: counter(step);
	display: block;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #fff;
	border: none;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	color: #999;
	z-index: 98;
	box-shadow: 0px 0px 8px 0px rgba(200, 200, 200, .2);
}

.wizard-tabs li h3 {
	font-weight: 700;
	font-size: 17px;
	margin: 0;
}

.wizard-tabs li.active a {
	color: #c10001;
	pointer-events: unset;
}

.wizard-tabs li.active small {
	color: #999;
}

.wizard-tabs li.current small {
	color: #333;
}

.wizard-tabs li.active:after {
	color: #c10001;
	content: '\2713';
}

.wizard-tabs li.current:after {
	color: #c10001;
	content: counter(step);
}

.wizard-tabs:before {
	content: " ";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 6px;
	background-color: #fff;
	border-radius: 3px;
	z-index: 95;
	box-shadow: 0px 0px 8px 0px rgba(200, 200, 200, .2);
}

.wizard-content>form {
	display: none;
	transition: all 0.2s;
}

.wizard-content>form.active {
	display: block;
}

.wizard-back {
	margin-right: 10px;
}

.error-message {
	display: none;
	text-align: right;
	color: #c10001;
	font-size: 20px;
	margin-bottom: 12px;
}

/* intro */
.intro-total-price {
	border-top: 1px solid #eee;
	padding: 20px 0;
	margin-top: 20px;
}

.intro-total-price p {
	font-weight: 700;
	font-size: 32px;
	margin: 0;
}

.intro-total-price p > i {
	font-weight: 700;
	font-size: 18px;
	font-style: normal;
	margin-left: 2px;
}


/* summary */
.summary-payment {
	border-bottom: 1px solid #eee;
	margin-bottom: 24px;
}
.summary-payment-left h2 {
	font-weight: 700;
	font-size: 18px;
}
.summary-payment-left h4 {
	font-size: 16px;
}

.summary-payment-right {
	text-align: right;
	font-weight: 700;
	font-size: 20px;
}
.summary-payment-right i {
	font-style: normal;
	font-size: 14px;
	padding-left: 2px;
}
.summary-payment-right span {
	font-weight: normal;
	display: block;
	font-size: 16px;
}


.summary-info {}

.summary-info label {
	margin: 0;
	font-weight: 700;
	font-size: 15px;
}

.summary-info p {}

/* payment */

.payment-total-price {
	margin: 20px 0;
	text-align: center;
}

.payment-total-price p {
	font-weight: 700;
	font-size: 32px;
	margin: 0;
}

.payment-total-price p > i  {
	font-weight: 700;
	font-size: 18px;
	font-style: normal;
	margin-left: 2px;
}

#payment-3d {
	display: none;
	border: 2px solid #ddd;
	width: 100%;
	height: 600px;
	overflow-y: auto;
	border-radius: 6px;
}

/* final */
.final-success {
	text-align: center;
}



@-webkit-keyframes scaleAnimation {
	0% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scaleAnimation {
	0% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes drawCircle {
	0% {
		stroke-dashoffset: 151px;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes drawCircle {
	0% {
		stroke-dashoffset: 151px;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes drawCheck {
	0% {
		stroke-dashoffset: 36px;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes drawCheck {
	0% {
		stroke-dashoffset: 36px;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#successAnimationCircle {
	stroke-dasharray: 151px 151px;
	stroke: #4dbb05;
}

#successAnimationCheck {
	stroke-dasharray: 36px 36px;
	stroke: #4dbb05;
}

#successAnimationResult {
	fill: #4dbb05;
	opacity: 0;
}

#successAnimation.animated {
	-webkit-animation: 1s ease-out 0s 1 both scaleAnimation;
	animation: 1s ease-out 0s 1 both scaleAnimation;
}

#successAnimation.animated #successAnimationCircle {
	-webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
	animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationCheck {
	-webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
	animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationResult {
	-webkit-animation: 0.3s linear 0.9s both fadeIn;
	animation: 0.3s linear 0.9s both fadeIn;
}