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

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

body {
    max-width: 100vw;
    min-height: 100vh;
    background: #1d1d1d;
    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: Montserrat, 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: Montserrat, 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: Montserrat, sans-serif;
}

.brand-subtitle {
    font-family: Montserrat, 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: Montserrat, sans-serif;
    background: #81BE1B;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.event-info-text{
    font-family: Montserrat, 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: Montserrat, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: white;
    border-left: 3px solid #81BE1B;
    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(#81BE1B), color-stop(70%, #81BE1B));
    background: -webkit-linear-gradient(left, #81BE1B, #81BE1B 70%);
    background: -o-linear-gradient(left, #81BE1B, #81BE1B 70%);
    background: linear-gradient(to right, #81BE1B, #81BE1B 70%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-button .price {
    font-family: Montserrat, 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;
}

.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;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 3px solid white;
    border-radius: 20px;
    padding: 20px 0;
    margin-right: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.ticket.support{
    background: #5E8D1A;
    border: none;
}

.ticket .ticket-text-box {
    width: 200px;
    min-height: 180px;
    height: 250px;
}

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

.ticket p {
    font-family: Montserrat, sans-serif;
    color: white;
    text-transform: uppercase;
}

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

.ticket.support .price-row {
    background: #1d1d1d;
}

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

.ticket .price-row h1 {
    margin: 10px;
    color: #81BE1B;
}

.add-to-cart {
    text-decoration: none;
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    background: #81BE1B;
    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: #81BE1B;
}

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

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

.add-to-cart-text {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.cart-next-button{
    margin-top: 70px;
    padding: 10px 50px;
    background: #81BE1B;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 50px;
    text-transform: uppercase;
}
@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;
    }
}
