﻿body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#head {
    height: 140px;
    background-color: #ffffff;
    padding-top: 38px;
}

hr {
    max-width: 400px;
    border-color: #999999;
}

.navbar {
    height: 50px;
    margin-bottom: 0;
    background-color: #423939;
}

.navbar-inverse .navbar-collapse {
    background-color: #423939;
    ;
    position: relative;
    z-index: 1;
}

footer {
    padding-top: 10px;
    background: #fff;
    background-color: #f5f5f5;
    bottom: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

    footer h6 {
        color: #565656;
    }

    footer p {
        margin: 0;
        padding: 10px 0;
        color: #565656;
    }

    footer ul li {
        border-left: solid silver 1px;
        text-decoration: none;
        list-style: none;
        margin-bottom: 10px;
        font-size: 12px;
    }

.icon-red {
    font-size: 80px;
    color: red;
}

.icon-yellow {
    font-size: 80px;
    color: #ffb400;
}

.admin {
    color: #3c763d;
}

.icon-lg {
    font-size: 100px;
}

.loginview-detail {
    display: none;
}

.loginview {
    text-align: left;
}

.panel-heading {
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .loginview {
        text-align: right;
    }

    .loginview-detail {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .navbar {
        min-height: 0;
    }

    .nav > li > a {
        padding: 35px;
    }

    .navbar-nav > li > a {
        line-height: normal;
    }

    .navbar-nav {
        display: table;
        float: none;
        margin: 0 auto;
        table-layout: fixed;
        font-size: 1.25em;
    }
}

/* -- Page Loader */

.cg-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
}

.cg-loader-container {
    margin: 20px auto;
    width: 300px;
    height: 120px;
    position: relative;
    top: 35%;
    margin-top: -20px;
}

.cg-folding-cube {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    width: 40px;
    height: 40px;
    position: relative;
    margin: 20px auto;
}

    .cg-folding-cube .cg-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .cg-folding-cube .cg-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333;
            -webkit-animation: cg-foldCubeAngle 2.4s infinite linear both;
            animation: cg-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .cg-folding-cube .cg-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .cg-folding-cube .cg-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .cg-folding-cube .cg-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .cg-folding-cube .cg-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .cg-folding-cube .cg-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .cg-folding-cube .cg-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes cg-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes cg-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

body .cg-folding-cube .cg-cube:before {
    background-color: #1e2456;
}

.btn-default {
    background-color: #1e2456;
    color: #fff;
}

    .btn-default:hover {
        background-color: #464B74;
        color: #fff;
    }

    .btn-default:active:hover {
        background-color: #6F7393;
        color: #fff;
    }

    .btn-default:focus {
        background-color: #464B74;
        color: #fff;
    }


