/*
 * Password Management Servlets (PWM)
 * http://www.pwm-project.org
 *
 * Copyright (c) 2006-2009 Novell, Inc.
 * Copyright (c) 2009-2016 The PWM Project
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#header {
    width: 100%;
    height: 70px;
    margin: 0;
    background-image: url('header-gradient.gif')
}

#button-openHeader {
    color: red;
}

#header-company-logo {
    position: relative;
    float: left;
    background-image: url(logo.png);
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.header-button {
    margin: 0px;
    margin-top: 6px;
    margin-left: 6px;
}

#header-username-group, #header-username {
    text-align: right;
    color: white;
}

#HomeButton span.btn-icon, #LogoutButton span.btn-icon, #header-username-caret span.m-icon {
    font: 20px FontAwesome;
    margin-right: 0px;
    color: red;
}

#HomeButton span.btn-icon:before {
    content: "\f015";
}

#LogoutButton span.btn-icon:before {
    content: "\f08b";
}

#header-username-caret span.m-icon {
    content: "\f08b";
}

.tile {
    width: 165px;
    height: 165px;
}

.tile:hover {border: 1px solid red;}
.tile-image {color: red;}

#centerbody {
    background-color: #eeeeee;
    padding: 10px 10px 40px 10px;
    border-left: solid 2px #ff0000;
    border-right: solid 2px #ff0000;
    border-radius: 0;
    min-height: 65vh;
    margin-left: 100px;
    margin-top: 0;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
}

#centerbody.wide {
    width: 90%;
    margin-left: auto;
}


#header-center {
    margin-left: 100px;
}

a:hover {
    color: #880000;
}

#footer {
    padding-top: 40px;
    margin-left: 30px;
    text-align: left;
}

.message-info {
    background-color: #ffffff;
    color: black;
}

.message-error {
    background-color: #ff0000;
    color: white
}

.message-success {
    background-color: #0000ff;
    color: white;
}

.btn {
    border-style:none;
    padding: 3px 11px;
    margin: 9px 7px;
    text-decoration: none;
    color: white;
    background-color: #880000;
    cursor: pointer;
}.btn:disabled {
     color: #656565;
}

@keyframes fadein { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadein { from { opacity:0 } to { opacity:1 } }
@-webkit-keyframes fadein { from { opacity:0 } to { opacity:1 } }

#header-menu-wrapper {
    color: white;
    text-align: right;
}

#header-menu-alert {
    display: inline-block;
    height: 10px;
}

#header-menu-alert::before {
    color: #e50000;
    content: "\f071";
    font: 12px FontAwesome;
}

#header-username-group, #header-username {
    display: inline-block;
}

#header-menu-wrapper > #header-username {
    display: block;
}

#header-menu {
    cursor: pointer;
}

#header-menu:only-child {
  padding-top: 15px;
}

#header-username-caret {
    display: inline-block;
}

#header-username-caret::after {
    content: "\f078";
    font: 12px FontAwesome;
}

#header-menu-icon {
  display: inline-block;
}

#header-menu-icon::after {
  content: "\f141";
  font: 12px FontAwesome;
}