@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);

:root {
    --sidemenu-main: #c2c3c9;
    --sidemenu-hover: #87868a;
    --sidemenu-active: #87868a;
    --sidemenu-text: #003670;
    --topmenu-main: #003670;
    --topmenu-hover: #003670;
    --topmenu-text: #eee;
    --footer-main: #003670;
    --footer-hover: #003670;
    --footer-text: #eee;
    --pa-green: #449b4c;
    --pa-blue: #003670;
    --pa-white: #eee;
}

html {
    height: 100%
}

body {
    margin: 0px;
    background-color: #eee;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.maincontent {
    width: calc(100% - 300px);
    height: calc(100% - 105px);
    overflow: hidden;
    position: absolute;
    right: 0px;
}

/*---------------------------------------------*/
/* SIDE MENU DEFINES */
.side-menu {
    font-family: calibri;
    position: absolute;
    top: 65px;
    left: 0;
    margin: 0;
    padding: 0;
    height: calc(100% - 105px);
    width: 50px;
    list-style-type: none;
    background: #c2c3c9;
    overflow: hidden;
    transition: width .5s;
    float: left;
    z-index: 10;
}

    .side-menu.expand li {
        width: 300px;
        transition: all .2s ease-in-out;
    }

    .side-menu li a:hover {
        background: #87868a;
        display: flex;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.45);
        transform: scale(1.01);
    }

.side-menu-item-img {
    font-size: 1.3em;
}

.side-menu li .side-menu-item-img {
    margin: 10px 0px 0px 15px;
    width: 35px;
}

.side-menu.expand .side-menu-item-text {
    width: 300px;
    visibility: visible;
}

.side-menu-item-text {
    font-family: calibri, sans-serif;
    font-weight: bold;
    font-size: .9rem !important;
    margin: 10px auto 0px 0px;
    visibility: hidden;
}

.side-menu li a {
    display: flex;
    font-size: .9rem;
    text-decoration: none;
    color: #003670;
    height: 40px;
}

.side-menu-item.active {
    background: #87868a;
}

/*---------------------------------------------*/
/* EXPAND - COLAPSE*/
.side-menu.expand {
    width: 300px !important;
}

.side-menu .expand {
    width: 300px !important;
}

.expand > ul {
    max-height: 600px !important;
}

.side-menu-item-drop {
    transition: transform .5s ease-in-out;
    font-size: 1.3em;
    margin-right: 10px;
    padding-top: 10px;
}

.side-menu-submenu.expand .side-menu-item-drop {
    transform: rotate(90deg);
}

/*-----------------------------------*/
/* SUBMENU */
.side-menu .side-menu-submenu > ul {
    list-style-type: none;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding-left 0.3s;
    max-height: 0px;
}

.side-menu-submenu > ul.active {
    padding-left: 0px;
}

.side-menu.expand > .side-menu-submenu > ul {
    padding-left: 10px !important;
}
/*--------------------------------------------------------------------------*/
/* component topmenu (header) */
.c-topmenu {
    font-family: calibri;
    font-weight: bold;
}

    /* nav / menu */
    .c-topmenu.navbar {
        margin-bottom: 0px;
        height: 65px;
    }

        .c-topmenu.navbar .navbar-inner {
            margin-top: 0px;
            min-height: 60px;
            padding-right: 20px;
            padding-left: 20px;
            background-color: #003670;
            background-image: none;
            background-repeat: repeat-x;
            -webkit-border-radius: 0px;
            border: 0px;
        }


        .c-topmenu.navbar .nav > li > a {
            float: none;
            padding: 10px 15px 10px;
            color: #eee;
            text-decoration: none;
            text-shadow: none;
        }

            .c-topmenu.navbar .nav > li > a:focus, .navbar .nav > li > a:hover {
                color: #eee;
                text-decoration: underline;
                background-color: #003670;
            }

        .c-topmenu.navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
            color: #eee;
            text-decoration: none;
            background-color: #003670;
        }

        .c-topmenu.navbar .navbar-inner .rsb-15 {
            font-weight: bold;
        }

        .c-topmenu.navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
            color: #eee;
            background-color: #003670;
        }

        .c-topmenu.navbar .sub-menu:before {
            border: none;
            left: -7px;
            top: 10px;
        }

        .c-topmenu.navbar .sub-menu:after {
            border: none;
            left: 10px;
            top: 11px;
            left: -6px;
        }

.c-topmenu__items {
    margin-top: 10px !important;
}

    .c-topmenu__items i {
        font-size: 1.3em;
    }

    .c-topmenu__items span {#eee;
        padding-left: 1.1em;
        text-decoration: none !important;
    }
/*------------------------------------------------------------------*/
/* component footer */
.c-footer {
    display: flex;
    position: absolute;
    bottom: 0px;
    margin: 0px;
    width: 100%;
    height: 40px;
    font-family: calibri;
    font-weight: bold;
    background-color: #003670;
    list-style-type: none;
}

.c-footer--login {
    background-color: #449b4c !important;
    width: calc(100% - 7em);
    margin: 2em;
    box-shadow: 2px 2px 25px #2424248c;
}

.c-footer > li {
    float: right;
    padding: 10px 15px 10px;
    color: #eee;
    text-decoration: none;
    text-shadow: none;
}

.c-footer a, .c-footer a:hover {
    color: #eee !important;
}

    .c-footer a:hover {
        text-decoration: underline !important;
    }

.c-footer__phone > i {
    transform: scaleX(-1);
}

/*----------------------------------------------------------------------------*/
/* SPINNER */
.c-spinner {
    color: #eee;
    padding-top: 20px;
    font-size: 1.5em;
}

    .c-spinner > i {
        -webkit-animation-name: spin;
        -webkit-animation-duration: 4000ms;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-name: spin;
        -moz-animation-duration: 4000ms;
        -moz-animation-iteration-count: infinite;
        -moz-animation-timing-function: linear;
        -ms-animation-name: spin;
        -ms-animation-duration: 4000ms;
        -ms-animation-iteration-count: infinite;
        -ms-animation-timing-function: linear;
        animation-name: spin;
        animation-duration: 4000ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        visibility: hidden;
    }

    .c-spinner.active > i {
        visibility: visible;
    }

/*spinner animation */
@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*-------------------------------------------------------*/
/* utils */
.u-margin-right-2 {
    margin-right: 2px;
}

.u-margin-left-2 {
    margin-left: 2px;
}

.u-margin-right-10 {
    margin-right: 10px;
}

.u-margin-left-10 {
    margin-left: 10px;
}

.u-list-right {
    margin-right: auto;
}

.u-list-left {
    margin-left: auto;
}

.u-roundcourner-full {
    border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    border: 0px !important;
}
/*-------------------------------------------------------*/
/* login */
.c-background {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    margin: 0em;
}

.c-background--login {
    background-image: url(/img/login_background_tinted.jpg) !important;
}

.c-login {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(40% - 250px);
    left: calc(50% - 250px);
    width: 400px;
    height: 400px;
    padding: 2em;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 0px;
    box-shadow: 2px 2px 25px rgba(36,36,36,0.55);
}

#logOnForm {
    margin: 0px !important;
}

.c-login__opacity {
    position: fixed;
    top: calc(40% - 250px);
    left: calc(50% - 250px);
    width: 400px;
    height: 400px;
    background-color: #003670;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 0.9;
    padding: 2em;
}

.c-login__logo {
    width: 100%;
    height: 56px;
    z-index: 10;
    margin: 0px !important;
    padding-right: 50px;
}

.c-login__form {
    position: relative;
    margin-top: 1em;
    text-align: center;
    font-size: 2em !important;
    font-family: calibri;
    color: #eee;
    font-weight: bold !important;
    border: 0px;
    padding: 0em;
}

.c-login__form label {
    font-size: 1em !important;
    font-weight: bold !important;
}

.c-login__form > div {
    margin-top: .4em;
}

.c-login__portalname {
    margin-bottom: 15px;
    display: block;
    font-family: 'Roboto Slab', serif;
    font-size: 25px !important;
    color: #fff;
}


.c-login input {
    height: 3em;
    width: 72%;
    font-family: calibri,serif;
    text-align: center;
}

.c-login button {
    background-color: #449b4c !important;
    height: 3em;
    padding-left: 3em;
    padding-right: 3em;
    font-size: .5em;
    font-family: calibri;
    color: #eee;
    font-weight: bold;
    box-shadow: 2px 2px 25px rgba(36,36,36,0.55);
}
