:root {
    --background-color: #F5F5F5;
    --teal-color: #43A9A7;
    --teal-darken-color: #3f9795;
    --dark-purple-color: #23164F;
    --error-color: #FF0000;
    --e-global-color-secondary: #23164F;
    --gray-nav: #eaeaea;
    --light-purple-color: #3f3791;
    --gray: #707070;
    --gray-darken: #616161;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0px;
    padding: 0px;
}

h1,h2,h3 {
    margin-top: 15px;
    color: var(--e-global-color-secondary);
}

h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--light-purple-color);
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background-color: var(--teal-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.wjp-header p {
    font-size: 24px;
    color: var(--light-purple-color);
    /* margin-top: 10px; */
    margin: 0;
    padding: 0;
}

.wjp-header p b {
    font-size: 36px;
    color: var(--light-purple-color);
}

.wjp-header .available {
    font-size: 24px;
    color: var(--dark-gray-color) !important;
    /* margin-top: 10px; */
    margin: 0;
    padding: 0;
}

h2 {
    font-size:48px;
    font-weight: 700;
    color: var(--light-purple-color);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--teal-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

h5 {
    margin-top: 20px !important;
}

/* Ticket select */
.ticket h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--light-purple-color);
}

.ticket .subtitle {
    font-size: 26px;
    color: var(--light-purple-color);
}

.ticket .description {
    font-size: 20px;
}

.ticket .price {
    margin-top: 40px;
    margin-bottom: 40px;
}
.ticket .price p:first-child {
    font-size: 20px;
}

.ticket .price p {
    margin: 0;
    padding: 0;
    font-size: 26px;
    color: var(--teal-color);
}

.ticket .price a {
    margin-top: 10px;
    font-size: 20px;
    color: var(--light-purple-color);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid black;
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ticket .price a:hover {
    transform: scale(1.05);
}

.ticket .price a::before {
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1);
    content: "";
    width: 0;
    height: 100%;
    background: var(--teal-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ticket .price a .btn-text {
    z-index: 2 !important;
    position: relative;
}

.ticket .price a:hover::before {
    background: var(--teal-color);
    width: 100%;
}

/* NAV */

nav {
    background-color: var(--gray-nav);
}

.navbar {
    min-height: 84px;
}

.navbar a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--teal-color)
}

.navbar div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* For mobile  */
@media (max-width: 600px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar div:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .navbar div:first-child>div:last-child {
        margin-top: 10px;
    }

    .logo-wjp {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

.logo-wjf img {
    height: 40px;
}

.countdown {
    color: white;
    font-size: 21px;
    font-weight: 700;
}

.logo-wjp img {
    height: 44px;
}

.subscribe .btn {
    font-size: 14px;
    color: var(--teal-color);
    font-weight: 700;
    background: white;
    border-radius: 0;
}


footer {
    padding-top: 5%;
    background-color: var(--dark-purple-color);
}

footer .logo img {
    height: 50px;
}

footer .menu {
    display: flex;
}

footer .footer-top {
    align-items: stretch;
    margin-bottom: 5%;
}

footer ul {
    list-style-type: none;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

footer a:hover {
    color: #C8D5DC;
}

footer button {
    font-size: 14px;
    font-weight: 700;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    border-color: white;
    color: white;
    background: none;
    font-family: 'Lato', sans-serif;
    min-height: 40px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s;
}

footer button:hover {
    background-color: white;
    color: var(--dark-purple-color);
}

footer .divider {
    width: 100%;
    height: 1px;
    background: white;
    margin: 15px 0;
}

footer .copy {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}


footer .social-icon {
    width: 50px;
}

footer .social-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

footer .footer-bottom {
    padding: 3% 0 5%;
}

/* Form */

#register-section {
    padding: 40px 0;
}

#register-section hr {
    margin-top: 20px;
}

.form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.checkbox-group {
    margin-top: 10px;
}


.checkbox-group input {
    margin-right: 10px;
}

/* Form components */

.arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    position: absolute;
    right: 24px;
    transition: all 0.3s;
}

#register-section button {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    border-color: var(--dark-purple-color);
    color: var(--dark-purple-color);
    background: none;
    font-family: 'Lato', sans-serif;
    min-height: 40px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#register-section button:hover {
    background-color: var(--dark-purple-color);
    color: white;
}

#register-section button,
#register-section .next-button {
    background-color: var(--teal-color);
    border-color: var(--teal-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    position: relative;
}

#register-section .next-button {
    padding-right: 40px;
}

#register-section button:hover,
#register-section .next-button:hover {
    background-color: var(--teal-color);
    color: white;
    transform: scale(1.05);
}

#register-section .next-button:hover .arrow {
    right: 18px;
}

#register-section .next-button::before {
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1);
    content: "";
    width: 0;
    height: 100%;
    background: var(--teal-darken-color);
    position: absolute;
    top: 0;
    left: 0;
}

#register-section .next-button .btn-text {
    z-index: 2;
}

#register-section .next-button:hover::before {
    background: var(--teal-darken-color);
    width: 100%;
}

#register-section .submit-button {
    background-color: var(--teal-color);
    border-color: var(--teal-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    position: relative;
}

#register-section .submit-button {
    padding-right: 40px;
}

#register-section .submit-button:hover {
    background-color: var(--teal-color);
    color: white;
    transform: scale(1.05);
}

#register-section .submit-button:hover .arrow {
    right: 18px;
}

#register-section .submit-button::before {
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1);
    content: "";
    width: 0;
    height: 100%;
    background: var(--teal-darken-color);
    position: absolute;
    top: 0;
    left: 0;
}

#register-section .submit-button .btn-text {
    z-index: 2;
}

#register-section .submit-button:hover::before {
    background: var(--teal-darken-color);
    width: 100%;
}

/* Back button gray */

#register-section .back-button {
    
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    background: none;
    font-family: 'Lato', sans-serif;
    min-height: 40px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    background-color: var(--gray);
    border-color: var(--gray);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border:0;
    position: relative;
}

#register-section .back-button:hover {
    background-color: var(--gray);
    color: white;
    transform: scale(1.05);
}

#register-section .back-button::before {
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1);
    content: "";
    width: 0;
    height: 100%;
    background: var(--gray-darken);
    position: absolute;
    top: 0;
    left: 0;
}

#register-section .back-button .btn-text {
    z-index: 2;
}

#register-section .back-button:hover::before {
    background: var(--gray-darken);
    width: 100%;
}

.form label {
    font-size: 26px;
    font-weight: bold;
    color: var(--gray);
    margin-top: 20px;
    margin-bottom: 10px;
}

.form p {
    font-size: 24px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 0;
}

.form a {
    font-size: 24px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
}

.form ul {
    margin-left: 20px;
}

input[type="text"],
input[type="email"],
select {
    font-size: 26px;
    font-weight: 400;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    border-color: var(--gray);
    background: none;
    font-family: 'Lato', sans-serif;
    min-height: 40px;
    padding: 8px 16px;
    transition: all 0.3s;
    width: 100%;
    min-height: 57px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);
    outline: 0;
}

/*Select */

/* select {
    font-size: 26px;
    font-weight: 400;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-radius: 0px;
    border-color: var(--dark-purple-color);
    background: none;
    font-family: 'Lato', sans-serif;
    min-height: 40px;
    padding: 8px 16px;
    transition: all 0.3s;
    width: 100%;
} */

.error {
    color: var(--error-color);
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    display: none;
}

.opacity50 {
    opacity: 0.2;
}

.hide {
    display: none;
}

/* Checkbox */

.checkbox-group {
	position: relative;
}

.checkbox-group label {
	display: block;
	position: relative;
	padding-left:35px;
	margin-right:35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
	font-size: 24px;
    line-height: 24px;
	color: var(--gray);
	font-family: 'Lato', sans-serif;
	font-weight: 400;
    margin: 5px 0;
}
.checkbox-group label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox-group label .checkbox {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid var(--gray);
}

.checkbox-group label .checkbox:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox-group label input:checked ~ .checkbox:after {
	display: block;
}
.checkbox-group label input:checked ~ .checkbox {
    border-color: var(--gray);
}

.checkbox-group label .checkbox:after {
	left: 4px;
	top: 4px;
	width: 15px;
	height: 15px;
	background: var(--gray);
	border-width: 0 3px 3px 0;
}

/* Radio */

.checkbox-group label .radio {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid var(--gray);
    border-radius: 50%;
}

.checkbox-group label .radio:after {
	content: "";
	position: absolute;
	display: none;
}
.checkbox-group label input:checked ~ .radio:after {
	display: block;
}
.checkbox-group label input:checked ~ .radio {
    border-color: var(--gray);
}

.checkbox-group label .radio:after {
	left: 4px;
	top: 4px;
	width: 15px;
	height: 15px;
	background: var(--gray);
	border-width: 0 3px 3px 0;
    border-radius: 50%;
}

/* Steps */

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 60px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 8px solid var(--gray);
    width: 100%;
    top: 16px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 8px solid var(--gray);
    width: 100%;
    top: 16px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #707070;
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.stepper-item .step-name {
    text-transform: uppercase;
    font-size: 20px;
    color: #707070;
    text-align: center;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item.completed .step-name,
.stepper-item.active .step-name {
    color: #43A9A7;
}

.stepper-item.completed .step-counter,
.stepper-item.active .step-counter {
    background-color: var(--teal-color);
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 8px solid var(--teal-color);
    width: 100%;
    top: 16px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}

/* Confirmation */
.confirmation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
    font-size: 40px;
    margin-top: 5vh;
    margin-bottom: 16.2vh;
    color: var(--light-purple-color);
    text-align: center;
}