@font-face {
    font-family: 'Frutiger-local-font';
    /* src: local('FrutigerLTCom-Light'), url('./src/font/FrutigerLTCom-Light.otf'), url('./src/font/FrutigerLTCom-Light.otf'); */
    src: local('FrutigerLTCom-Roman'), url('./src/font/FrutigerLTCom-Roman.otf'), url('./src/font/FrutigerLTCom-Roman.otf');
  }
  @font-face {
    font-family: 'Frutiger-local-font-light';
    src: local('FrutigerLTCom-Light'), url('./src/font/FrutigerLTCom-Light.otf'), url('./src/font/FrutigerLTCom-Light.otf');
  }
/** CSS variables settings **/
:root {
    /* colors */
    --showroom-yellow: #FFE664;
    --showroom-blue-1: #A0C1D2;
    --showroom-blue-2: #8AAABA;
    --showroom-blue-3: #71B3CF;
    --showroom-blue-4: #549AB5;
    --showroom-blue-5: #3887B1;
    --showroom-blue-6: #32789D;
    --showroom-blue-7: #206A86;
    --showroom-blue-8: #125675;
    --showroom-white: #ffffff;
    
    --primary-bg-color: #749EB1;
    --secondary-bg-color: orange;
    /* border */
    --sr-border-radius: 2.5px;
    /* izm grün */
    --izm-green: #009374;
}

html, body {
    font-family: 'Frutiger-local-font-light', sans-serif;
    margin: 0;
    padding: 0;
    /* scrollbar is hidden, function is on */
    scrollbar-width: none; 
    scroll-behavior: smooth; 
}
/* Startseite */
.home {
    margin: 10vh auto;
    text-align: center;
}
/* Location linked list*/
.home-btn {
	text-decoration: none;
	text-align: center;
	list-style-type: none;
	font-size: 23px;
	font-weight: 600;
	color: var(--showroom-blue-8);
	background-color: var(--showroom-yellow);
	border-radius: 50px;
	padding: 6px;
	line-height: 37px;
	margin: auto 0 10px;
	width: 350px;
	display: inline-block;
	vertical-align: middle;

	-ms-user-select: None;
 	-moz-user-select: None;
 	-webkit-user-select: None;
 	user-select: None; 
}
.home-btn:active {
	box-shadow: 3px -3px 5px var(--showroom-blue-7);
  	transform: translateY(2px);
}
/* .home-btn {
	box-shadow: 0px 10px 14px -7px #276873;
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	background-color:#599bb3;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:20px;
	font-weight:bold;
	padding:13px 32px;
    
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.home-btn:hover {
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	background-color:#408c99;
}
.home-btn:active {
	position:relative;
	top:1px;
} */

h1 {
    color: var(--showroom-yellow);
}
figcaption {
    font-size: 1rem;
    max-width: 50%;
}
 /* popup modal click for fullscreen */
.popup-modal {
    z-index: 99999;
    position: absolute;
    margin: 250px 800px;
    /* border-radius: 50%; */
    color: var(--showroom-white);
    /* background-color: var(--primary-bg-color); */
    width: 50%;
    height: 50%;
    object-fit: contain;
}
/* iframe */
iframe {
    width: 100%;
    min-height: 100%;
    border: 0;
}

/* TABLE */
table {
    font-size: 1.5em;
}
th, td {
    padding: 0.5em 2em 0.5em 1em;
}
tr {
    background-color: var(--showroom-yellow);
    padding: 20px;
}
th, tr:nth-child(odd) {
    background-color: var(--showroom-blue-1);
}
/** GRID **/
.grid-wrapper {  
    display: grid;
    /* main grid ; half and half */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    /* min-height: 100%;     */
    background-color: var(--showroom-white);
    height: 100vh; /* 1080px Tablet size*/
}
.grid-item-1 {
    grid-row: 1/13; 
    /* nesting grid */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
/* Title top left corner  */
.sub-item-1 {
    grid-column: 1/13;
    grid-row: 1;
    color: var(--showroom-blue-7);
    background-color: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    align-self: start;
    margin: 20px 0 0 80px;
    padding: 5px; 
}
/* leaflet map  */
.sub-item-map {
    grid-column: 1/13;
    grid-row: 1/13;
}
/* LEAFLET MAP ID */
#mapid {
    width: 90%;
    height:100%;
    background-color: transparent;
}
/* right section grid  */
.grid-item-2 {
    background-color: var(--primary-bg-color);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-row: 1/13;
    
}
.sub-item-nav {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   align-items: center;
   grid-column: 9/11;
}
.sub-item-nav-icons {
    border-radius: var(--sr-border-radius);
}
/* .sub-item-content {
    color: var(--showroom-white);
    padding-right: 4rem;
    grid-column: 3/11;
    grid-row: 3/13;
} */
.sub-item-content {
    color: var(--showroom-white);
    padding-right: 4rem;
    grid-column: 2/10;
    /* grid-row: 3/15; */
    padding: 50px 0 0 50px;
}
.sub-item-marker {
    grid-column: 1;
    grid-row: 3;
    visibility: hidden;
    margin: 1rem 0 0 2rem;
    background-color: var(--showroom-yellow);
    border-radius: 50%;
	width: 2rem;
    height: 2rem;
    margin-top: 55px;
}
/* iframe styles  */
.iframe-template {
    height: 50%;
}
.iframe-title {
    font-family: 'Frutiger-local-font', sans-serif;
    margin: 0 0 3rem;
    text-transform: uppercase;
    color: var(--showroom-yellow);
    font-size: 40px;
    font-weight: 900;
    
}
.iframe-sub-title {
    font-family: 'Frutiger-local-font-light', sans-serif;
    font-size: 35px;
}
.iframe-content {
    font-size: 29px; 
}
/* location container  */
.location-container {
    color: var(--showroom-white);       
    width: 100%;
    min-height: 100%;
    /* overflow: hidden; */
}
svg:active {
    fill: var(--showroom-yellow);
}