
:root {
    --black: #000;
    --blue: #25239E;
    --stl_blue: #001AFF;
    --stl_light_blue: #3268FF;
    --white: #ffffff;
    --violet: #7F67D0;
    --light_gray: #C0C0C0;
    --font_primary: "Neue Plak", "Helvetica Neue", sans-serif;
    --font_secondary: Rubik, "Helvetica Neue", sans-serif;
}

html, body {
	position: relative;
	width: 100%;
    height: 100%;
    margin: 0;
    
    font-size: 16px;
    line-height: 1.5em;
}

@font-face {
    font-family: "Neue Plak";
    font-weight: 400;
    /* src: url("fonts/Neue\ Plak\ Text\ Regular.ttf") format("truetype"); */
    src: url("fonts/Neue\ Plak\ Extended\ Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Neue Plak";
    font-weight: 500;
    src: url(fonts/Neue\ Plak\ Extended\ SemiBold.ttf) format("truetype");
}
@font-face {
    font-family: "Neue Plak";
    font-weight: bold;
    src: url(fonts/Neue\ Plak\ Extended\ Bold.ttf) format("truetype");
}
@font-face {
    font-family: "Neue Plak";
    font-weight: 900;
    src: url(fonts/Neue\ Plak\ Extended\ Black.ttf) format("truetype");
}

@media (max-width: 768px) {
    .desktop_only {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile_only {
        display: none;
    }
}

.text-gradient {
    background-color: #C437C6;
    background-image: linear-gradient(0deg, #C437C6, #BF92FF);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}


body {
	color: #333;
	margin: 0;
	box-sizing: border-box;
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
	font-family: var(--font_primary);
    /* background: #000; */
    background: linear-gradient(0deg, #000000 0%, #0C0A50 100%);
    background-attachment: fixed;
}

.container {
    box-sizing: content-box;
    width: calc(100% - 30px);
	max-width: 1142px;
	margin: 0 auto;
}

h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
	color: #fff;
	margin-top: 0;
    margin-bottom: 0;
    font-family: Inter, sans-serif, Arial;
}

.h1 {
    font-size: 48px;
    color: var(--white);
    letter-spacing: 0.7px;
    line-height: 1;
}

.h1_subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    margin-top: 18px;
    line-height: 1.2;
    font-family: Rubik, "Helvetica Neue", sans-serif;
    max-width: 800px;
}

@media (max-width: 768px){
    .h1 {
        font-size: 36px;
        line-height: 0.95;
    }
    .h1_subtitle {
        font-size: 18px;
    }
}


@media (max-width: 992px){
    h1 {
        font-size: 32px;
    }
}

@media (max-width:  768px){
    h1 {
        /* font-size: 24px; */
        line-height: 1.2em;
        margin-bottom: 20px;
    }
}

.nowrap {
    white-space: nowrap;
}

img {
    max-width: 100%;;
}


.msg h2 {
    font-size: 24px;
    font-weight: 700;
}

a:hover {
	text-decoration: underline;
}

.btn {
	border-radius: 8px;
    font-size: 18px;
    margin-top: 30px;
    padding: 15px 30px;
    font-weight: 500;
}

.btn-blue {
    
    background-color: var( --stl_blue );
    color: var(--white);
    
    font-family: var(--font_secondary);
    
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-blue:hover, .btn-blue:hover {
    color: #fff;
}

.btn-blue-inactive {
    opacity: 0.2;
    pointer-events: none;
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.clearfix:after {
	content: '';
	clear: both;
	display: table;
	width: 100%;
}
@media (min-width: 992px){
    .help-col {
        padding-left: 30px;
    }
}
@media (max-width: 992px){
    .help-col {
        padding-top: 20px;
    }
}

.stage {
    color: #ff9b00;
    font-size: 16px;
    font-family: Rubik, Arial, Helvetica, sans-serif;
}

.flex-align-center {
	align-items: center;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex > div {
    flex-grow: 1;
}

.tickets {
    /* margin: 0 auto; */
    text-align: center;
    max-width:  100%;
	position: relative;
    /* background: #fff; */
    /* border-radius: 16px; */
    padding-top: 10px;
}  

@media (max-width: 768px){
    .tickets {
        margin-top: 10px;
    }
}

.modal-body-tn iframe {
    border: 1px solid #fff;
}

.modal-close-tn {
    font-weight: 100;
    position: absolute;
    right: 20px;
    top: 10px;
}



img {
    border: 0;
}



* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



img {
    vertical-align: middle;
}



/* .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
} */

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}



@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
	.col-sm-6 {
        width: 50%;
    }
}

@media (min-width: 992px){
    .col-md-3 {
        width: 25%;
    }
}

.tn-auth-box {
    background: linear-gradient(180deg, #070731 25%, #000 100%);
    background-size: cover;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    z-index: 99999;
}

.tn-auth-heading {
    background: #25256a;
    padding: 20px;
}

.tn-auth-content {
    padding: 35px 10px 0;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
}

.tn-auth-box button {
    background: #0028f5;
    border-color: #0028f5;
    color: #fff;
    border-radius: 8px;
    height: 40px;
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5em;
    width: 100%;
    max-width: 380px;
}

.tn-auth-box button:active {
    background-color: rgba(0, 40, 245, 0.80);
}

#tn-access-deny {
    background: #333333;
    border-color: #333333;
}

#tn-access-deny:active {
    background-color: rgba(51, 51, 51, 0.80);
}

@media (max-width: 768px) {
    .mobile-order-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}