/*
 * Copyright 2016 Red Hat, Inc. and/or its affiliates
 * and other contributors as indicated by the @author tags.
 *
 * 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('../../keycloak/lib/zocial/zocial.css');

#kc-logo-wrapper {
    
}

div#kc-header-wrapper {
    display: none;
}

div#kc-header{
    margin-top: 55px;    
    background-repeat: no-repeat;
    background-position: center;
    height: 108px;
}
div#kc-content {
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;    
    margin: 0px auto 0;        
}

input[type=text] {
    margin-bottom: 20px !important;
    min-width: 0;
    border: 1px solid #d4dde3 !important;
    border-radius: 4px;
    box-sizing: border-box;
    color: #6f787f;
    font-size: 14px;
    line-height: 1;
    height: 42px;
    outline: medium none;
    padding: 14px 12px 11px;
    vertical-align: middle;
    background: #fff;
}

input[type=password] {
    margin-bottom: 20px !important;
    min-width: 0;
    border: 1px solid #d4dde3 !important;
    border-radius: 4px;
    box-sizing: border-box;
    color: #6f787f;
    font-size: 14px;
    line-height: 1;
    height: 42px;
    outline: medium none;
    padding: 14px 12px 11px;
    vertical-align: middle;
    background: #fff;
}
input[type=text]:focus, input[type=password]:focus {
    border: 1px solid #86cfff !important;
    box-shadow: none !important;
}


#kc-locale{
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
}

.kc-dropdown{
    position: relative;
}
.kc-dropdown > a{
    display:block;
    color: #fff !important;
    text-decoration: none;
    border: 1px solid #fff !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    color: #b3b3b3 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    height: 42px !important;
    outline: medium none !important;
    padding: 12px 12px 11px !important;
    vertical-align: middle !important;
	background-image: url(../img/arrow.png);
    background-color: #fff;
    background-position: right;
    background-repeat: no-repeat;
    box-shadow: none !important;
    width: 185px;
}
.kc-dropdown ul li a{
    border: 1px solid #fff;
    text-decoration: none;
    display: block;
    cursor: pointer;
    line-height: 27px;
    padding: 0 20px 0 10px;
    border-radius: 3px;
    white-space: nowrap;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    color: #474747;
}
.kc-dropdown ul li a:hover{
    border-color: #b3d3e7;
    background-color: #197de1;
    background-image: -webkit-linear-gradient(top, #1b87e3 2%,#166ed5 98%);
    background-image: linear-gradient(to bottom,#1b87e3 2%,#166ed5 98%);
    color: #ecf2f8;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.05);
}
.kc-dropdown ul{
    position: absolute;
    z-index: 2000;
    list-style:none;
    display:none;
    padding: 5px 0px;
    margin: 0px;
    background-color: #fff !important;
    border: 1px solid #b6b6b6;
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    min-width: 100px;
    border-radius: 4px;
    color: #474747;
    width: 175px;
    padding: 4px 4px;
}
.kc-dropdown:hover ul{
    display:block;
}