﻿
html
{
    font-size: 14px;
}

html,
body
{
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Manrope' !important;
}

#header
{
    height: 75px;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
}

.headerLogo
{
    height: 50px;
    margin-left: 8rem;
}

#homeLogout
{
    position: absolute;
    top: 20px;
    z-index: 9;
    font-size: 1.2rem;
    width: 270px;
    left: 50%;
    margin-left: -135px;
}

#homeLogoutMobile
{
    position: absolute;
    top: 25px;
    left: 0px;
    z-index: 9;
    font-size: 1.2rem;
    width: 100%;
}

#content
{
    overflow: hidden;
    height: 100%;
    margin-top: 75px;
}

#contentWithMenu
{
    height: calc(100% - 70px);
}

.scrollableContainer
{
    height: 100%;
    overflow: auto;
}

.scrollableContainerWithMenu
{
    height: calc(100% - 90px);
    overflow: auto;
}

.contracts
{
    overflow: auto;
    height: 100%;
}

#footer
{
    height: 65px;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding: 15px 10px;
    display: none !important;
}

#address {
    width: calc(100% - 45px);
    height: 35px;
    background-color: white;
    border-radius: 100px 0px 0px 100px;
    vertical-align: top;
    padding-left: 15px;
    border: 2px solid #5a6750;
}

#address:focus-visible {
    outline: none;
}

#menuMobile {
    position: fixed;
    width: 100%;
    left: 0px;
    bottom: 0px;
    background-color: #FFFFFF;
}

.menuItem:first-child {
    border-bottom-left-radius: 15px; 
    border-left: none !important;
}

.menuItem:last-child {
    border-bottom-right-radius: 15px;
    border-right: none !important;
}

.menuItem {
    float: left;
    width: 20%;
    border-left: 1px solid white;
    border-right: 1px solid white;
    cursor: pointer;
    color: #7a7a7a;
}

.menuItem:active span,
.menuItem:focus span,
.menuItem:hover span{
    color: #7ABFC4;
}

.menuItem:active img,
.menuItem:focus img,
.menuItem:hover img{
    filter: invert(77%) sepia(25%) saturate(469%) hue-rotate(135deg) brightness(145%) contrast(92%);
}

.menuItemSelected {
    border-top: 4px solid #7ABFC4;
    color: #7ABFC4;
}

.menuItemSelected img {
    filter: invert(77%) sepia(25%) saturate(469%) hue-rotate(135deg) brightness(145%) contrast(92%);
}

#menuMobile .menuItem
{
    border-left: none;
}

.radioButtonFilter
{
    color: black;
    font-weight: 500;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.contractTypeFilter
{
    width: 80px;
    cursor: pointer;
    padding: 0px 10px;
    border-radius: 12px;
    margin: 10px 0px;
}

.text-greengrey {
    color: #5a6750 !important;
}

.text-green {
    color: #8d8d8d !important;
}

.contractTypeFilterSelected {
    border: 2px solid #5887C8;
}

#loginForm ::-webkit-input-placeholder
{
    text-align: center;
}

#loginForm :-moz-placeholder
{ /* Firefox 18- */
    text-align: center;
}

#loginForm ::-moz-placeholder
{ /* Firefox 19+ */
    text-align: center;
}

#loginForm :-ms-input-placeholder
{
    text-align: center;
}

.ui-autocomplete.ui-menu
{
    z-index: 9999;
}

.genericButton {
    background-color: #5a6750;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 5px 5px 5px grey;
}

.genericInputText
{
    border: 1px solid lightgray;
    box-shadow: 3px 5px rgb(0 0 0 / 15%);
    font-size: 1.2rem;
}

.errorMessageAlert
{
    width: 100%;
    font-size: 1.3rem;
    z-index: 999;
    background-color: #CC656B;
    max-width: 100%;
    color: white;
    padding-right: 1.25rem;
    text-align: center;
}

.loader-wrapper
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-signin2
{
    width: 100%;
}

.g-signin2 > div
{
    margin: 0 auto;
    width: 100% !important;
}

.footerImageFreeNumber,
.footerImagePaidNumber,
.socialImage
{
    height: 40px;
}

.socialImage
{
    margin-right: 10px;
}

.g_id_signin {
    display: inline-block;
}

.g_id_signin:hover {
    cursor: pointer;
}

#googleSignInButton .buttonText
{
    margin-top: 8px;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: bold;
    /* Use the Roboto font that is loaded in the <head> */
    font-family: 'Roboto', sans-serif;
}

#loginValidationSummary ul
{
    list-style: none;
    padding: 0px;
}

.invoice
{
    margin-left: 10px; 
    margin-right: 10px; 
    background-color: white; 
    border-radius: 25px 25px 25px 25px; 
    border: 1px solid lightgray; 
    box-shadow: 5px 10px rgb(0 0 0 / 15%); 
    font-size: 1rem;
}

.invoiceEarned
{
    font-size: 0.8rem;
}

@media (max-width: 1600px)
{
    #loginUserImage
    {
        display: none !important;
    }

    html
    {
        font-size: 11px;
    }

    .headerLogo
    {
        height: 30px;
    }

    #header
    {
        height: 60px;
    }

    #homeLogout img
    {
        height: 40px;
    }

    #homeLogoutMobile img
    {
        height: 35px;
    }

    #content
    {
        height: calc(100% - 105px);
        margin-top: 60px;
    }

    #footer
    {
        height: 45px;
        padding: 8px 10px;
    }

    .footerImageFreeNumber,
    .footerImagePaidNumber,
    .socialImage
    {
        height: 30px;
    }
}

@media (max-width: 1200px)
{
    html
    {
        font-size: 10px;
    }
}

@media (max-width: 767px)
{
    html
    {
        font-size: 14px;
    }

    #content
    {
        height: calc(100% - 75px);
        margin-top: 75px;
    }

    .ui-autocomplete.ui-menu
    {
        width: calc(100% - 20px) !important;
        left: 10px !important;
    }
}

@media (max-height: 600px)
{
    #content
    {
        height: calc(100% - 62px);
        overflow: auto;
    }

    .scrollableContainerWithMenu
    {
        height: auto;
    }

    .invoice
    {
        font-size: 1.5rem;
    }

    .invoiceEarned
    {
        font-size: 1.3rem;
    }
}