html
{
    margin: 0;
    background-color: #aaa;
}

@font-face {
    font-family: Comfortaa;
    src: url(../style/Comfortaa-Regular.ttf);
}

.roundCorners
{
    border-radius: 10px;
}

body
{
    margin: 0;
    font-family: Comfortaa;
}

input
{
    font-family: Comfortaa;
}

button
{
    font-family: Comfortaa;
    font-size: 1.0em;
}

table.content
{
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    min-height: 100vh;
}

table.content tr
{
    border-collapse: collapse;
}

table.content td
{
    padding: 0;
    vertical-align: top;
    overflow: hidden;
}

#tdMainContent
{
    /*perspective: 800px;
    perspective-origin: 0px 50%;*/
}

#divMainContent
{
    background: #fff;
    /*transform-origin: 0px 0% 0px;
    transition: all 0.5s ease;
    transform: translateX(0px) rotateY(0deg);*/
    -webkit-overflow-scrolling: touch;
    -webkit-transform-style: preserve-3d;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#divMainContent.tilted
{
    /*transform-origin: 0px 50% 0px;
    transform: translateX(0px) rotateY(10deg);*/
    /*background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65098) 100%);*/
    opacity: 0.7;
}

table tfoot
{
    background-color: #707d95;
    color: #fff;
}

table tfoot a
{
    padding-left: 10px;
}

.header
{
    top: 0;
    width: 100%;
    height: 25px;
    background-color: #364153;
    color: #fff;
    box-shadow: 0 0 10px black;
    z-index: 100;
}

.header label
{
    font-size: 20px;
    font-weight: bold;
    margin: 3px 0 0 5px;
    vertical-align: middle;
    display: inline-block;
}

.menu
{
    background-color: #707d95;
    width: 40px;
    height: 100%;
    color: #fff;
    z-index: 100;
    transition: all 0.5s ease;
}

.menu:hover
{
    /*width: 200px;*/
}

.menu ul
{
    width: 200px;
    list-style-type: none;
    padding-left: 0px;
    padding-top: 0px;
    margin: 0;
}

.menu li
{
    padding: 5px;
    cursor: pointer;
    vertical-align: top;
    line-height: 35px;
    border-radius: 40px 0 0 40px;
    transition: background-color 0.1s;
}

.menu li:hover
{
    /*background-color: #8898b5;*/
}

.menuIcon
{
    background-image: url(../img/iconSet.png);
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 0 10px 0 0;
}

.menuIcon.profile
{
    background-position: -480px -1363px;
}

.menuIcon.training
{
    background-position: -555px -992px;
}

.menuIcon.routes
{
    background-position: -92px -119px;
}

.mainContent
{
    padding: 5px;
}

.loginBox
{
    background-color: #fff;
    border: 2px solid #8898b5;
    border-radius: 10px;
    display: inline-block;
    padding: 30px;
    box-shadow: 0px 0px 34px 0px #8898b5;
}

.contentBox
{
    display: inline;
}

.tachoButton
{
    background-color: #fff;
    width: 100px;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    cursor: pointer;
}

.geoLocationImage
{
    width:30px;
}

.mapContainer
{
    overflow: hidden;
}

.mapContainer.rotated
{
    -webkit-transform: perspective( 200px ) rotateX(22deg) rotateY(0deg) rotateZ(0deg) scale(2.6) translateY(2%);
    transform: perspective( 200px ) rotateX(22deg) rotateY(0deg) rotateZ(0deg) scale(2.6) translateY(2%);
}

.chartTraining
{
    width: 250px;
    height: 100px;
}

#map_canvas
{
    margin: 0px;
    padding: 0px;
    display: block;
    height: 350px;
    z-index: 0;
}

/* Tablets */
@media only screen and (min-width: 760px) {
    .header
    {
        height: 50px;
        box-shadow: 0 0 15px black;
    }
    
    .header label
    {
        margin: 10px 0 0 15px;
    }
    
    .menu
    {
        width: 50px;
        top: 50px;
    }
    
    .menu ul
    {
        padding-left: 7px;
        padding-top: 10px;
    }
    
    .menuIcon
    {
        margin: 0 10px 0 0;
    }
    
    .mainContent
    {
        padding: 10px;
    }
    
    .chartTraining
    {
        width: 570px;
        height: 200px;
    }
    
    #map_canvas
    {
        height: 400px;
    }
}

/* Mittlere Monitore */
@media only screen and (min-width: 980px) {
    .header
    {
        height: 80px;
        box-shadow: 0 0 20px black;
    }
    
    .header label
    {
        margin: 27px 0 0 30px;
    }
    
	.menu
    {
        width: 50px;
        top: 80px;
    }
    
    .menu ul
    {
        padding-top: 20px;
    }
    
    .mainContent
    {
        padding: 20px;
    }
    
    .chartTraining
    {
        width: 720px;
        height: 300px;
    }
    
    #map_canvas
    {
        height: 450px;
    }
}

/* Große Monitore */
@media only screen and (min-width: 1280px) {
    .chartTraining
    {
        width: 900px;
        height: 300px;
    }
    
    #map_canvas
    {
        height: 77vh;
    }
}