﻿html {
    height: 100%;

}

body {
    background-image: url(../img/bg.jpg);
    color: #555;
    margin: 0;
    font-family:Arial;
}




.page-container {
    box-shadow: 0 0 25px 5px rgb(0 0 0 / 8%);
    width: 940px;
    height: 100%;
    background-color: #FFF;
}

    .page-container > tbody > tr > td {
        background-image: url(../img/header.gif?v=2);
        background-repeat: no-repeat;
        padding: 0 25px 70px;
    }


table {
    width: 100%;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}

a.btn-help {
    color: #fff !important;
    text-align: center;
    display: inline-block;
    background-color: #487bb7;
    width: 24px;
    height: 24px;
    line-height: 25px;
    border-radius: 4px;
}

    a.btn-help:hover {
        background-color: #2e6194;
    }


#help {
    position: absolute;
    width: 332px;
    height: 385px;
    z-index: 100;
    visibility: hidden;
    margin-left: 0px;
    margin-top: 10px;
    box-shadow: 0 0 25px 5px rgb(0 0 0 / 8%);
}

table.table-list th {
    border-bottom: 1px solid #ddd;
    background-color: #f1f1f1;
    font-size: 13px;
    text-align: left;
    padding: 10px 4px 7px;
    color: #666;
}

table.table-list td {
    padding: 7px 4px;
    border-bottom: 1px solid #ddd;
}




/* --- LINKS ---------------------------------------------------------------- */
a:link,
a:active,
a:visited {
    text-decoration: none;
    color: #c18800;
    font-weight: bold;
}

a:hover {
	text-decoration: none;
	color: #e0c482;
	font-weight: bold;
}

a.blue:link,
a.blue:active,
a.blue:visited {
    text-decoration: none;
    color: #0082a8;
    font-weight: bold;
}

a.blue:hover {
	text-decoration: none;
	color: #26aad1;
	font-weight: bold;
}

a.grey,
a.grey:hover {
    color: #999 !important;
}





/* --- TEXT ---------------------------------------------------------------- */
td {
    font-family: Arial, Tahoma;
    font-size: 13px;
    line-height: 13px;
    padding: 0px;
    color: #555;
}

.grey {
	color: #999;
}

.white {
	color: #FFF;
}

.red {
	color: #DD0000;
}

.head {
	font-size: 26px;
	color: #444;
	font-weight: bold;
	height: 40px;
	line-height: 24px;
    letter-spacing:-0.7px;
}


/* --- INPUTS ---------------------------------------------------------------- */
select, textarea, input:not([type="image"]) {
    font-family: Arial, Tahoma;
    font-size: 13px;
    color: #555;
    padding: 5px;
    border: 1px solid #bbb;
    border-radius: 3px;
    display: block;
}


/* --- MENU ---------------------------------------------------------------- */

a.menu.menu-main {
    display: inline-block;
    padding: 9px 10px;
    background-color: #2e6194;
    color: #ffffff;
    margin-right: 0px;
}

    a.menu.menu-main:hover {
        background-color: #234669;
    }

	a.menu.menu-main.active {
		background-color: #fff;
		color: #236b89;
	}





/* --- INVOICES ---------------------------------------------------------------- */

table tr.sum td {
    padding-bottom: 25px;
    border-bottom:none;
    color:#666;
}

table.summary td {
    font-weight: bold;
    border-bottom: none;
    color: #666;
}

table.total td {
    font-weight: bold;
    border-bottom: none;
}

div.info {
    border: 1px solid #dbd7a6;
    background-color: #fffbd2;
    padding: 8px;
    text-align: center;
    color: #6a4d28;
    font-size: 12px;
    line-height: 19px;
    margin: 15px 0 20px;
}

.print {
    margin-top: 30px;
    padding: 10px 20px;
    text-align: center;
    background-color: #f6f6f6;
    border: solid 1px #d5d5d5;
    display: inline-block;
    border-radius: 25px;
}





/* --- Login ---------------------------------------------------------------- */

.login-container {
    width: 560px;
    height: 400px;
    margin-top: 100px;
    background-color: #fff;
    background-image: url(../img/header-login.gif?v=2);
    background-repeat: no-repeat;
    box-shadow: 0 0 25px 5px rgb(0 0 0 / 8%);
}


    .login-container input {
        margin: 5px 0px 14px;
        font-size: 18px;
        width: 100%;
        padding: 10px;
    }

    .login-container input[type="submit"] {
        /*width: 100px;*/
    }

    .login-container td,
    .login-container div {
        font-size: 16px;
    }

    .login-container div {
        padding: 110px 90px 0px;
    }


/* --- Print ---------------------------------------------------------------- */
@media print {
    * {
        -webkit-print-color-adjust: exact !important; /* Chrome, Safari, Edge */
        color-adjust: exact !important; /*Firefox*/
    }
    
    body {
        background-image: none;
    }

    .page-container {
        box-shadow: unset;
    }

        .page-container > tbody > tr > td {
            background-image: unset;
            padding:0;
        }

    .menu-container, .print {
        display: none;
    }


}