* {
    box-sizing: border-box;
    line-height: 1.15;
}

:root {
    --primary-accent-color: #101235;
    --secondary-accent-color: #f2cfa0;
    /*--primary-accent-color: #81BE1B;*/
    /*--secondary-accent-color: #5E8D1A;*/
}

html, body {
    max-width: 100vw;
}

body {
    max-width: 100vw;
    min-height: 100vh;
    background: #101235;
    margin: 0;
}

header {
    padding-top: 20px;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
}

.bottom-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cc-logo-bottom{
    width: 700px;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
}

footer span{
    font-family: Poppins, sans-serif;
    font-weight: 300;
    font-size: 24px;
}

footer .footer-logo{
    max-width: 300px;
    margin-bottom: 20px;
}

.menu{
    min-width: 300px;
}

.menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu li {
    list-style-type: none;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 300;
    font-family: Poppins, sans-serif;
}

.brand {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.brand-logo img {
    margin-top: 5px;
    width: 100px;
}

.brand-title {
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    font-size: 20px;
    font-family: Poppins, sans-serif;
}

.brand-subtitle {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
}

.event-box h1 {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 45px;
    font-family: Poppins, sans-serif;
	color: #f2cfa0 !important;
    background-clip: border-box;
   
}

.event-box span {
    font-weight: 400;
    font-size: 30px;
    font-family: Poppins, sans-serif;
    color: white;
}

.event-info{
    display: flex;
    margin-bottom: 20px;
}

.event-info-text{
    font-family: Poppins, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
}

.event-notice-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.event-notice{
    font-family: Poppins, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    border-left: 3px solid var(--primary-accent-color);
    padding: 10px 20px;
}

.container {
    padding-left: 40px;
    padding-right: 40px;
}

.lang-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 41px;
    /*background: white;*/
    border-radius: 10px;
    box-sizing: border-box;
}

.lang-button img {
    width: 35px;
    border: 1px solid #1d1d1d;
    border-radius: 30%;
}

.cart-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 120px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    box-sizing: border-box;
}

.cart-button span {
    background: -webkit-gradient(linear, left top, right top, from(var(--primary-accent-color)), color-stop(70%, var(--primary-accent-color)));
    background: -webkit-linear-gradient(left, var(--primary-accent-color), var(--primary-accent-color) 70%);
    background: -o-linear-gradient(left, var(--primary-accent-color), var(--primary-accent-color) 70%);
    background: linear-gradient(to right, var(--primary-accent-color), var(--primary-accent-color) 70%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-button .price {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 2px;
    margin-left: 15px;
}

.event-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
}

.register-success-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.used-ticket-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}


.used-ticket-box table th{
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    padding: 10px;
    text-align: left;
}

.used-ticket-box table td{
    font-family: Poppins, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: white;
    padding: 10px;
    padding-left: 30px;
    text-align: right;
}

.used-ticket-box table{

    border-collapse: collapse;
}

.used-ticket-box table tr{
    border-bottom: 1px solid white;
}

.products-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spacer {
    height: 300px;
}

.event-box {
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}

.ticket-list {
    display: flex;
    flex-direction: row;
    max-width: 100vw;
    justify-content: center;
    flex-wrap: wrap;
}

.ticket {
    width: 300px;
    min-height: 400px;
    display: flex;
	background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    border-radius: 20px;
    padding: 20px 0;
    margin-right: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
	box-shadow: 6px 6px 12px rgba(242, 207, 160, 0.4);
}

.ticket.support{
    background-color: #f2cfa0;
	border: 2px solid white;
    border: none;
}

.ticket .ticket-text-box {
    width: 200px;
    min-height: 180px;
}
.ticket .ticket-text-box h1{color: #101235 !important;}
.price-row h1{color:#101235 !important;}

.ticket h1 {
    font-family: Poppins, sans-serif;
    color: white;
}

.ticket p {
    font-family: Poppins, sans-serif;
    color: #101235;
}

.ticket .price-row {
  
    width: 100%;
    text-align: center;
}




.ticket.support .price-row h1 {
    margin: 10px;
    color: white;
}

.ticket .price-row h1 {
    margin: 10px;
    color: var(--primary-accent-color);
}
.cart-next-button{
    margin-top: 70px;
    padding: 15px 50px;
    background: var(--primary-accent-color);
    font-family: Poppins, sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 50px;
    text-transform: uppercase;
}

.add-to-cart {
    text-decoration: none;
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  /*  background: var(--primary-accent-color);*/
  background-color: #101235 !important;
  font-weight: 600;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: white;
    padding: 15px;
    border-radius: 60px;
    width: 175px;
}

.ticket.support .add-to-cart {
    background: white;
}

.ticket.support .add-to-cart .fa-shopping-cart {
    color: var(--primary-accent-color);
}

.ticket.support .add-to-cart-text {
    color: #f2cfa0;
}

.add-to-cart .fa-shopping-cart {
    margin-left: 5px;
}

.add-to-cart-text {
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}


.brand-box{
    text-decoration: none;
}
.cart-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    align-items: center;
}
.cart-close{
    color: var(--primary-accent-color);
}
.cart{
    display: none;
    position: fixed;
    width: 500px;
    height: 100vh;
    background: white;
	color: #101235;
    right: 0;
    top: 0;
    padding: 30px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    overflow: auto;
	border-left: 1px solid #f2cfa0;
}
.cart .cart-title{
    margin: 0;
    font-family: Poppins, sans-serif;
    color: #101235;
    text-transform: uppercase;
    font-size: 30px;
}
.cart hr{
    margin-top: 15px;
    border-top: 2px solid #8F93A2;
    width: 350px;
}
.cart-items{
    width: 100%;
}
.cart-item{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
}
.cart-item h3{
    font-family: Poppins,sans-serif;
    text-transform: uppercase;
    margin: 0;
}
.qty-title{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.cart-item-price{
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 27px;
    /* identical to box height */

    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: #101235;
}
.cart-item-description{
    font-family: Poppins, sans-serif;
    margin: 0;
    max-width: 170px;
    font-size: 14px;
}
.cart-item-title{
    max-width: 170px;
}
.qty-title-text-box{
    display: flex;
    flex-direction: column;
}
.cart-summary{
    margin-top: 40px;
    width: 100%;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
}
.cart-summary .cart-summary-title{
    font-family: Poppins, sans-serif;
    color: #101235;
    text-transform: uppercase;
    margin: 0;
}
.cart-summary .cart-summary-price{
    font-family: Poppins, sans-serif;
    color: #101235;
    margin: 0;
}
.cart-next-button
{background-color: #101235;
}

@media screen and (max-width: 992px) {
    header{
        padding-left: 25px;
        padding-right: 25px;
    }
    .event-box {
        margin-left: 10%;
    }
    .event-box h1{
        font-size: 45px;
    }
    .event-box span{
        font-size: 35px;
    }
    .cart-button, .cart-button .price{
        font-size: 15px;
    }
    .brand-title{
        font-size: 16px;
    }
    .brand-subtitle{
        font-size: 13px;
    }
    .brand-logo img{
        width: 60px;
    }
    .ticket-list{
        flex-direction: column;
        align-items: center;
    }
    .products-wrapper{
        display: block;
    }
    .cc-logo-bottom{
        width: 500px;
    }
    footer span{
        font-size: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .cart-next-button {
        margin-top: 20px;
    }
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    header{
        padding-left: 15px;
        padding-right: 15px;
    }
    .event-box {
        margin-left: 5%;
    }
    .event-box h1{
        font-size: 40px;
    }
    .event-box span{
        font-size: 30px;
    }
    .cart-button, .cart-button .price{
        font-size: 14px;
    }
    .brand-title{
        font-size: 16px;
    }
    .brand-subtitle{
        font-size: 13px;
    }
    .brand-logo img{
        width: 60px;
    }
    .ticket-list{
        margin-left: 0;
        align-items: center;
    }
    .ticket{
        margin-right: 0;
        margin-bottom: 25px;
    }
    .cc-logo-bottom{
        width: 300px;
    }
    footer span{
        font-size: 16px;
        text-align: center;
    }
    .menu{
        min-width: 230px;
    }
}

@media screen and (max-width: 500px) {
    body{
        margin: 0;
    }
    header{
        padding-left: 10px;
        padding-right: 10px;
    }
    .event-box {
        margin-left: 0;
    }
    .event-box h1{
        font-size: 30px;
    }
    .event-box span{
        font-size: 20px;
    }
    .cart-button, .cart-button .price{
        font-size: 13px;
    }
    .brand{
    }
    .brand-title{
        font-size: 15px;
    }
    .brand-subtitle{
        display: none;
        font-size: 12px;
    }
    .brand-logo img{
        width: 60px;
    }
    .event-box-wrapper{
        height: 300px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .cart{
        width: 100vw!important;
        padding: 10px;
        margin-left: -20px;
    }
    .cart hr{
        width: 300px!important;
    }
    .cart-item-price{
        font-size: 15px!important;
        min-width: 50px;
        text-align: right;
    }
    .ticket{
        width: 90vw;
        min-height: auto;
    }
    .ticket .ticket-text-box{
        min-height: auto;
        height: auto;
        width: 70vw;
        padding-bottom: 20px;
    }
    .register-success-box{
        padding: 10px;
    }
}
