/*
    micro-MVC

    File name: main.css
    Description: This file contains the main CSS.

    Coded by George Delaportas (G0D)
    Copyright (C) 2015 - 2025
    Open Software License (OSL 3.0)
*/

input:focus
{
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

body
{
    font: 15px Verdana;
    background: #011a29;
    cursor: default;
    margin: 10px;
    padding: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a
{
    color: #878787;
    font-weight: normal;
}

#main
{
    text-align: justify;
    height: 100%;
    min-width: 340px;
    max-width: 590px;
    margin: auto;
    padding: 4px;
}

#footer
{
    font-size: 12px;
    text-align: right;
    color: #878787;
    border-top: solid 1px #D4D4D4;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-top: 10px;
}

#languages
{
    position: relative;
    float: right;
    clear: both;
    color: #424242;
    margin-bottom: 20px;
    z-index: 1;
}

#languages a
{
    color: #878787;
    text-decoration: none;
}

#err_404, #err_ext
{
    min-height: 509px;
}

.logo
{
    clear: both;
    text-align: center;
    margin-bottom: 10px;
}

.logo img
{
    width: 10%;
    height: auto;
}

.motto
{
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    color: #A7A7A7;
}

.active_language
{
    color: #ff22e2 !important;
}

.page
{
    min-height: 330px;
    margin-top: 40px;
}

.error
{
    background-color: #FFD1D1;
    color: #B94D6F;
    font-weight: bold;
    text-align: center;
    height: auto;
    min-height: auto;
    padding: 100px;
}

.footer_copyright
{
    float: none;
    text-align: center;
}

@media only screen and (max-device-width: 572px) and (orientation: portrait)
{
    body
    {
        font-size: 14px;
    }

    #main
    {
        max-width: 100%;
        min-width: auto;

    }

    #train_info
    {
        font-size: 8px;
    }

    .logo img
    {
        margin-top: 0px;
    }

    .motto
    {
        font-size: 12px;
    }

    .page
    {
        min-height: 0px;
    }
}
