/*!
 * Password Management Servlets (PWM)
 * http://www.pwm-project.org
 *
 * Copyright (c) 2006-2009 Novell, Inc.
 * Copyright (c) 2009-2019 The PWM Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --color-coral: #e95a52;
    --color-black: #3f4444;
    --color-lightgray: whitesmoke;
    --color-lightgray-hover: #ececec;
}

body {
    background-color: white;
    color: var(--color-black);
    font-family: 'Open Sans', sans-serif;
}

#wrapper {
    background-color: #ffffff;
    margin: 0 auto -40px;

}

#centerbody {
    width: auto;
    max-width: 715px;
    padding: 45px 25px;
    border-radius: 10px;
    background-color: var(--color-lightgray);
}

#centerbody.tile-centerbody {
    background-color: transparent;
}

#header-center {
    width: auto;
    max-width: 715px;
}

#header-company-logo {
    background-image: url(/public/resources/logo.svg);
    width: 113px;
    height: 32px;
    background-repeat: no-repeat;
    float: left;
    margin: 34px 0 0 30px;
    background-size: contain;
}

@media only screen and (max-width: 600px) {
    #header-company-logo {
        float: none;
        margin: 0 0 0 10px;
        width: 85px;
        height: 24px;
        position: relative;
        top: 12px;
    }
}

.btn {
    font-family: 'Open Sans', sans-serif;
    border-radius: 3px;
    background-image: none;
    padding: 10px 15px;
    background-color: var(--color-coral);
    border: 1px solid var(--color-coral);

}.btn:hover {
    background-color: var(--color-black);
    border-color: 1px solid var(--color-black);
     
}.btn:disabled {
      opacity: .5;
}

#button-cancel, #button-cancelButton {
    background-color: #ffffff;
    color: var(--color-coral);
}

#button-cancel:hover, #button-cancelButton:hover {
    color: var(--color-black);
    border-color: var(--color-black);
}

#login .buttonbar #submitBtn {
    font-size: 13px;
    padding: 10px 15px;
}

#login .buttonbar #submitBtn span {
    display: inline-block;
}

.menubutton {
    display: block;
    text-align: center;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    color: #ffffff;
    white-space: normal;
    background: var(--color-black);
    font-weight: normal;

}.menubutton:hover {
    background: var(--color-coral);
}

.inputfield {
    /* box-shadow: 2px 2px 2px 2px #f1f1f1; */
    padding-left: 3px;
    padding-right: 3px;
    font-size: 10pt;
    font-family: monospace;
}

.inputfield:focus {
    background-color: #fcfdd8;
}

.changepasswordfield {
    font-size: 10pt;
    font-family: monospace;
}.changepasswordfield:focus {
     background-color: #fcfdd8;
 }


h1 {
    font-family: Trebuchet MS, sans-serif;
}

h2 {
    font-family: Trebuchet MS, sans-serif;
}

h3 {
    font-family: Trebuchet MS, sans-serif;
}

.header-button {
    border-radius: 3px;
    background:linear-gradient(to bottom, #E8E1F6 5%, #B2B1B9 100% );
}.header-button:hover {
     background:linear-gradient(to bottom, #B2B1B9 5%, #E8E1F6 100% );
}

#header {
    height: 100px;
    color: var(--color-black);
    background: var(--color-lightgray);
}

#header-page {
    color: var(--color-black);
    padding-top: 20px;
}

#header-title {
    color: var(--color-coral);
    margin-top: 5px;
}

#header-menu-wrapper {
    
}

#header-warning {
    box-shadow: 4px 4px 2px #B2B1B9;
    animation: slideInTop 0.15s;
    border:none;
    border-radius: 2px;
}

.header-button {
    margin: 5px 5px 0px 0;
    background: #e6e6e6;
}
.pwm-icon-chevron-down:before {
    color: var(--color-coral);
}
.header-button:hover {
    background: #c7c7c7;
}

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

.tile {
    width: 200px;
    height: 200px;
    border: none;
    transition: all 250ms ease;
    background-color: var(--color-lightgray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 15px;

}

.tile:hover {
    border: none;
    box-shadow: none;
    background-color: var(--color-lightgray-hover);
}

.tile-title {
    font-size: 14px;
    color: var(--color-black);
    margin-bottom: 10px;
    font-weight: 600;
}

.tile-image:before {
    color: var(--color-black) !important;
}

.tile-subtitle {
    font-size: 13px;
    font-weight: normal;
    line-height: 1.35;
    color: var(--color-black);
}

.btn-icon {
    opacity:0.75;
}


@keyframes slideInRight { 0% { transform: translate3d(100%, 0, 0); visibility: visible; } 100% { transform: translate3d(0, 0, 0); } }
@keyframes slideInTop { 0% { transform: translate3d(0, -100%, 0); visibility: visible; } 100% { transform: translate3d(0, 0, 0); } }

.push, #footer {
    height: 40px;
}

#footer {
text-align: right;
color: var(--color-black);
}

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

.panel-orgChart-person {
    transition: box-shadow 0.3s;
}

.panel-orgChart-person:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 0 0 white, 0 0 0 0 white, 9px 0 12px -4px #B2B1B9, -9px 0 12px -4px #B2B1B9;
}

.tab-container > .tab-end {
    border-bottom: 1px solid #E8E1F6;
}

.tab-container > .input:checked + .label {
    border: 1px solid #E8E1F6;
    color: #808080;
}

.tab-container > .label {
    font-size: 14px;
    height: 25px;
    padding-top: 3px;
}

.tab-container > .label:hover {
    color: #808080;
    border-top-color: #E8E1F6;
    border-left-color: #E8E1F6;
    border-right-color: #E8E1F6;
}

