@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.eot) format('eot'), url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.ttf) format('truetype'), url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.woff) format('woff'), url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'liga';
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

a {
    color: #378784;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    font-size: 14px;
    height: 100%;
    background-color: #F1F7F4;
    color: #090909;
    overflow-y: scroll;
}

.background {
    background-image: url(../images/bottom.png), url(../images/background.png);
    background-repeat: repeat-x;
    background-position: left bottom, left top;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.main {
    min-width: 600px;
    max-width: 1200px;
    border-left: solid 1px #2c9c8f;
    border-right: solid 1px #2c9c8f;
    margin: 0 auto 0 auto;
    box-shadow: 0 0 20px rgba(50, 50, 50, 0.97);
    background-color: #DAEAE3;
    min-height: 100%;
}

.main-body {
    margin: 0;
    min-height: calc(100vh - 61px);
}

.header {
    height: 30px;
    background-color: #2c9c8f;
}

    .header > .login-link {
        line-height: 30px;
        color: #fff;
        float: right;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        min-width: 100px;
    }

        .header > .login-link > span {
            margin-right: 10px;
        }

    .header > a.login-link:hover {
        background-color: #2c9c8f;
    }

    .header > .logged-user {
        float: right;
        line-height: 26px;
        color: #f1f1f1;
        margin: 0 5px;
    }

    .header > .section-link {
        line-height: 30px;
        height: 30px;
        color: #fff;
        border-right: solid 1px #fff;
        text-decoration: none;
        display: block;
        float: left;
        width: 150px;
        text-align: center;
        background-color: #2c9c8f;
    }

        .header > .section-link:hover {
            background-color: #78bba9;
        }

    .header > .selected {
        background-color: #78bba9;
    }

.portal-banner {
    height: 200px;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: left top;
    position: relative;
}

    .portal-banner h1 {
        position: absolute;
        top: 68px;
        line-height: 20px;
        left: 80px;
        font-size: 18px;
        font-weight: normal;
        color: #0eada8;
    }

.portal-bannerSmall {
        height: 150px;
        background-image: url(../images/banner-about.png);
        background-repeat: no-repeat;
        background-position: left top;
        position: relative;
    }

footer {
    position: sticky;
    line-height: 30px;
    bottom: 0;
    background: #85bca9;
    text-align: center;
}

    footer a:link, a:visited {
        text-align: center;
        font-size: 12px;
        color: #333;
        text-decoration: none;
    }

    footer a:hover {
        text-align: center;
        font-size: 12px;
        color: #333;
        text-decoration: none;
    }

    footer a {
        text-align: center;
        font-size: 12px;
        color: #333;
    }

input[type=text], input[type=password], input[type=number], input[type=tel] {
    padding: 3px 4px;
}

.button {
    min-width: 100px;
    padding: 3px 4px;
    border-radius: 2px;
    border: 1px solid #0eada8;
}

    .button:hover {
        background-color: #DAEAE3;
    }

    .button:active {
        background-color: #91C2AC;
    }

.btn-hover {
    min-width: 100px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    margin: 12px;
    padding: 3px 10px;
    text-align: center;
    border: none;
    box-sizing: border-box;
    background-size: 300% 100%;
    border-radius: 5px;
    transition: all 1s;
}

    .btn-hover:hover {
        background-position: 100% 0;
        transition: all 2s;
    }

    .btn-hover:focus {
        outline: none;
    }

    .btn-hover.bn18 {
        background-image: linear-gradient( to left, #91C2AC, #a7d6c2, #91C2AC );
        box-shadow: 0 4px 10px 0 #85bca9;
    }

.bn1 {
    display: inline-block;
    padding: 5px 10px;
    border: none;
    margin: 4px 2px;
    border-radius: 5px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    background-color: #85bca9;
    transition: all 0.2s;
    cursor: pointer;
}

    .bn1:hover {
        color: #333;
        background-color: #DAEAE3;
        box-shadow: 0 4px 10px 0 #85bca9;
    }
