﻿@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
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 400;
    font-size: small;
    width: 100%;

    background-color: white;
}

.filterA
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 400;
    font-size: small;

    position: absolute;
    top: 32px;
    left: 0;
    width: 330px;
    height: 280px;

    background-color: white;
    border: 2px solid #45abcc;

    padding: 6px;
    visibility: hidden;
}


/* BUTTONS
----------------------------------------------------------*/
.button
{
    height: 28px; 
         
    color: white; 
    font-weight: 600; 
    
    background-color: #45abcc; 
    border: 1px solid #45abcc;
    cursor: pointer;
}

h1 {
    color: #45abcc;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.3em;
}

h2
{
    color: #45abcc;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.3em;
}

h3
{
    color: #45abcc;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.2em;
}

.btnNavigator{
    border: none;
    cursor: pointer;
    background-color: white;
}

/* FIELDS
----------------------------------------------------------*/

.field {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 400;
     
    margin: 4px;

    border: 1px solid #45abcc; 
    background-color: white;
    color:black;    
}

.field:focus {
    border: 1px solid #45abcc;
}


/* 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*/
.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;
   
    padding-top: 10px;

    text-align:center;
    vertical-align: middle;
    text-transform: uppercase;
    color: black;

    border-bottom: 2px solid #45abcc;
    height: 20px;
}

.gw-cell-data{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    font-weight: 600;

    text-align:center;
    text-transform: uppercase;
    color: black;
}

/* Rozamiary ekranu */
@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ 
    .col {
        width: 100%;
    }

    .field,
    .filter,
    .fieldtop,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 0.6em;
    }

    .field {
        Height: 17px;
    }
}

@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */ 
    .col {
        width: 50%;
    }

    .field,
    .filter,
    .fieldtop,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 0.8em;
    }

    .field {
        Height: 19px;
    }
}

@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ 
    .col {
        width: 50%;
    }

    .field,
    .filter,
    .fieldtop,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 0.9em;
    }

    .field {
        Height: 20px;
    }
}

@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ 
    .col {
        width: 50%;
    }

    .field,
    .filter,
    .fieldtop,
    .gw-cell-head,
    .gw-cell-data {
        font-size: 1em;
    }

    .field {
        Height: 22px;
    }

@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }

/* 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: #afaf00; 
    height: 24px;
}