﻿.icon-red {
    font-size: 80px;
    color: red;
}

.icon-yellow {
    font-size: 80px;
    color: #ffb400;
}

.admin {
    color: #3c763d;
}

.icon-lg {
    font-size: 100px;
}

.loginview {
    text-align: left;
    padding-top: 10px;
}

.loginview-detail  {
    display: none;
}

.loginview-detail-inline {
    display: none;
}

.panel-heading {
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .loginview {
        text-align: right;
    }

    .loginview-detail {
        display: block;
    }

    .loginview-detail-inline {
        display: inline;
    }
}

@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;
}

body .cg-folding-cube .cg-cube:before {
    background-color: #2c5aa4;
}

.rotate {
    margin: 10px;
    width: 130px;
    height: 132px;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 2000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 2000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-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);
    }
}