@charset "utf-8";
/* CSS Document */

@font-face
	{
	font-family:Frutiger-45-Light__LT;
	src:url(../fonts/Frutiger-45-Light__LT.otf) format("otf"),url(../fonts/Frutiger-45-Light__LT.woff) format("woff");
	font-weight:500;
	font-style:normal;
	}

@font-face
	{
	font-family:FrutigerLTStd-Bold;
	src:url(../fonts/FrutigerLTStd-Bold.otf) format("otf"),url(../fonts/FrutigerLTStd-Bold.woff) format("woff");
	font-weight:500;
	font-style:normal;
	}


@font-face
	{
	font-family:FrutigerLTStd-Black;
	src:url(../fonts/FrutigerLTStd-Black.otf) format("otf"),url(../fonts/FrutigerLTStd-Black.woff) format("woff");
	font-weight:500;
	font-style:normal;
	}


body 
	{
    font-family: 'FrutigerLTStd-Bold', Arial, sans-serif;
    background-image: url('../includes/2023_screen_allianzarena-nordkurve_white_1920x1080.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    margin: 0;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    height: 100vh;
    overflow: auto;
	}

header
	{
	padding: 3.8% 0 4% 0;
	color: #ff003c;
	font-size: 2.5em;
	text-transform: uppercase;
	}

.thin
	{
	font-family: 'Frutiger-45-Light__LT', Arial, sans-serif;
	}

.big
	{
	font-family: 'FrutigerLTStd-Black', Arial, sans-serif;
	}

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

.tour-container 
	{
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 25px 20px;
    box-sizing: border-box;
    margin-bottom: 2.5%;
    width: 100%; /* Startbreite für die größte Kachel */
    transition: none;
	background: rgba(0, 0, 0, 0.42) /* Grundfarbe für alle Kacheln */
	}

.tour-status 
	{
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-block;
    margin-right: 4%;
	}

.status-available 
	{
    background-color: green;
	}

.status-limited 
	{
    background-color: orange;
	}

.status-critical 
	{
    background-color: red;
	}

.tour-title 
	{
    flex-grow: 2;
	font-family: 'FrutigerLTStd-Black', Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
	}

.tour-language 
	{
	font-family: 'FrutigerLTStd-Bold', Arial, sans-serif;
    font-size: 0.85em;
    opacity: 0.98;
	}

.tour-info 
	{
    width: 180px; /* Feste Breite für die Time- und Tickets-Spalten */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	}

.tour-info-title 
	{
    text-decoration: underline;
    font-weight: bold;
    margin-bottom: 5px;
	}

.tour-time, .tour-tickets 
	{
	font-family: 'FrutigerLTStd-Black', Arial, sans-serif;
    font-size: 200%;
    font-weight: bold;
	}

.tour-container.starting-soon 
	{
    border: 10px solid silver; 
	}

.tour-container .tour-image 
	{
    width: 3%; 
    height: auto; 
    margin-right: 0; 
	}
	
.time-container {
    display: flex;
    align-items: center; 
}

.clock-icon {
    margin-right: 25px; 
   
    width: 40px;
    height: 40px;
}

.tour-time {
    
}