﻿@charset "utf-8";
@import url("Reset.css");


/* DEFAULTS
----------------------------------------------------------*/
body
{
    margin: 0px;
    padding: 0px;
    font-size: small;

    font-weight: 300;
    font-style: normal;
    font-family: "Helvetica Neue" , "Lucida Grande" , "Segoe UI" , Arial, Helvetica, Verdana, sans-serif;
}

.Filter
{
    background: #f2f2f2;
    font-weight: 500;
}

/* BUTTONS
----------------------------------------------------------*/
.button
{
    height: 28px; 
         
    color: white; 
    font-weight: 600; 
    
    background-color: #1e2f81; 
    border: 1px solid #1e2f81;
    cursor: pointer;
}

h1 {
    color: #1e2f81;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.3em;
}

h2
{
    color: #1e2f81;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.3em;
}

h3
{
    color: #1e2f81;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.2em;
}

.btnNavigator{
    border: none;
    cursor: pointer;
    background-color: white;
}

/* FIELDS
----------------------------------------------------------*/

.field {
    font-style: normal;
    font-family: "Helvetica Neue" , "Lucida Grande" , "Segoe UI" , Arial, Helvetica, Verdana, sans-serif;

    height: 20px;
    border: 1px #1e2f81 solid; 
    background-color: white;
    color:black;

    margin-top: 4px;
}

.field:focus {
    border: 1px solid #e67e27;
}

.field:hover {
    /* shadow */
    box-shadow: 0px 0px 3px 2px rgba(241,134,0,0.2);    
    -moz-box-shadow: 0px 0px 3px 2px rgba(241,134,0,0.2);
    -webkit-box-shadow: 0px 0px 3px 2px rgba(241,134,0,0.2);
}


/* ROWS AND COLS
----------------------------------------------------------*/
.row {
    margin: 0;
    padding: 0;
    width: 100%;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}


.col{
    position: relative;
    float: left;
    margin: 0;

    border: none;
    padding: 5px;

    width: 100%;

    color: #333;
    font-size: medium;

    /* padding inside */
    box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    -webkit-box-sizing: border-box;
}

/* Data grid*/
.fieldtitle{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 400;

    text-align:center;
    text-transform: uppercase;
    color: black;
}

.gw-row{
    cursor: pointer;
    height: 40px;
}

.gw-row:hover {
    background-color: rgba(0, 0, 0, 0.1); 
}

.gw-cell-head{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 600;
    height: 30px;

    text-align:center;
    text-transform: uppercase;
    
    color: white;
    background-color: #e50045;
}

.gw-cell-data{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 400;

    text-align:center;
    text-transform: uppercase;
    color: black;
}

.gw-button{
    border: 1px solid #1e2f81;
    background-color: white;

    color: black;
    font-size: 0.8em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 300;

    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;

    cursor: pointer;
}

.gw-button:hover{
    color: white;
    background-color: #1e2f81;
}

.gw-button-plan{
    border: 1px solid black;
    background-color: #1e2f81;

    color: white;
    font-size: 0.8em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 300;

    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;

    cursor: pointer;
}

.gw-button-plan:hover{
    color: black;
    background-color: white;
}

/* Rozamiary ekranu */
@media only screen and (orientation: portrait) {
    .col {
        width: 100%;
    }

    .gw-button,
    .gw-button-plan,
    .fieldtitle,
    .field,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 1em;
    }

    .field {
        Height: 17px;
    }
}

@media only screen and (orientation: landscape) {
    .col {
        width: 50%;
    }

    .gw-button,
    .gw-button-plan,
    .fieldtitle,
    .field,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 1em;
    }

    .field {
        Height: 22px;
    }
}

/* ACCOUNT
----------------------------------------------------------*/
.top{
    top: 0px;
    width: 100%;
    height: 40px;
    
    position: fixed;
    z-index: 99;
}

.menu{
    color: white;
    background-color: #afaf00; 
    height: 24px;
}

.accountcontent {
    margin-top: 0px; 
    padding-left: 10px;
    padding-right: 10px;

    line-height: 1.3em;
}

.tbheader{
    color: white;
    background-color: #1e2f81; 
    height: 24px;
}