﻿@charset "utf-8";
/* CSS Document */

/* Login page Style */

/*.bg-login-new {
    background: url(../../contents/logos/bg-web.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-size: cover !important;
}*/

.login-page {
 /*background:#fff;*/
    border-radius: 4px;
    height: 365px;
    left: 0;
    margin: auto;
    /*padding: 1% 15px;*/
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 450px;
}

    .login-page .form-control {
        border-radius: 4px !important;
        border: solid 1px #d5d5d5;
        margin-bottom: 20px;
        color: #848484 !important;
        position: relative;
        line-height: normal;
        padding: 0px 1px !important;
    }

    .login-page input[type="text"], .login-page input[type="password"] {
        /*padding: 8px 0px 8px 10px !important;*/
        width: 100% !important;
        line-height: normal;
        height:38px;
    }

        .login-page input[type="text"]:focus, input[type="password"]:focus {
            outline: none !important;
            line-height: normal;
        }




.logo-login-page {
    text-align: center;
    /*border-bottom: solid 1px #dddddd;*/
    padding-bottom: 12px;
    margin-bottom: 23px;
}

.form-group-pwd {
    position: relative;
}

.logo-login-page img {
    max-width: 100%;
    max-height: 100%;
}


.login-page-image {
    text-align: center;
}


.login-page .login-page-image img {
    max-width: 100%;
    height: 337px;
}

.login-page .login-page-user {
    background: url("images/user-name-icon.png") no-repeat left center;
    display: block;
    float: left;
    position: absolute;
    width: 36px;
    height: 31px;
    z-index: 9999;
    top: 2px;
    left: 1px;
}


.login-page input[type="text"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #c1c1c1 !important;
    background-image: url("images/user-name-icon.png") no-repeat left center !important;
    outline: none !important;
}


.form-group {
    position: relative;
}

.login-page-password {
    background: url("././images/password-icon.png") no-repeat left center;
    display: block;
    float: left;
    position: absolute;
    width: 36px;
    height: 31px;
    z-index: 9999;
    top: 2px;
    left: 1px;
}


.login-page .btn-default {
    width: 100%;
}

/*.btn-default {
    background: #006699 !important;
    border-radius: 0px !important;
    color: #fff !important;
    font-size: 130.8%;
    border: solid 1px #023d69 !important;
    padding: 1px 10px !important;
    height: 29px;
}*/
.btn-default {
    background: #009fd1 !important;
    border-radius: 4px!important;
    color: #fff !important;
    font-size: 130.8%;
    border: solid 1px #0594c1 !important;
    padding: 8px 10px!important;
}

    /*.btn-default:hover {
        background: #005e8d !important;
        color: #fff !important;
        border: solid 1px #023d69;
    }*/

.login-form-text {
    color: #959595;
    font-size: 107.7%;
    margin-left: 20px;
}

.radio label, .checkbox label {
    padding: 0px !important;
}

.forgot-password {
    margin-top: 10px;
    color: #0067b2;
}

    .forgot-password a {
        color: #0067b2;
        text-decoration: none;
        font-size: 107.7%;
        padding: 2px 0px;
    }

        .forgot-password a:first-child {
            padding-left: 0px;
        }

        .forgot-password a:hover {
            color: #959595;
        }

.forgotPWD input[type="submit"] {
    background: #005c8f;
    border-color: #a7a7a7;
    position: absolute;
    border: none;
    top: 1px;
    right: 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    padding: 0 11px;
    text-decoration: none !important;
}

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    z-index: 2;
    cursor: pointer;
}

    /* Hide the tooltip content by default */
    [data-tooltip]:before,
    [data-tooltip]:after {
        visibility: hidden;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0.5;
        pointer-events: none;
        font-size: 12px;
        top: -38px;
    }

    /* Position tooltip above the element */
    [data-tooltip]:before {
        position: absolute;
        bottom: 113%;
        left: 95%;
        margin-bottom: 5px;
        margin-left: -80px;
        padding: 6px 7px 22px;
        width: 160px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #000;
        background-color: hsla(0, 0%, 20%, 0.9);
        color: #fff;
        content: attr(data-tooltip);
        text-align: center;
        font-size: 12px;
        transition: all 0.2s ease-in 0.2s;
        line-height: 1.2;
        z-index: 999;
    }

    /* Triangle hack to make tooltip look like a speech bubble */
    [data-tooltip]:after {
        position: absolute;
        bottom: 113%;
        left: 95%;
        z-index: 999;
        margin-left: -5px;
        width: 0;
        border-top: 5px solid #000;
        border-top: 5px solid hsla(0, 0%, 20%, 0.9);
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        content: " ";
        font-size: 12px;
        transition: all 0.2s ease-in 0.2s;
        line-height: 0;
        top: -10px;
    }

    /* Show tooltip content on hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

.sign-in {
    font-size: 12px !important;
    text-align: right;
    display: block;
    margin-top: 6px;
}

/* Footer */

.footer {
    background: #fff;
    color: #7f7f7f;
    font-size: 78.6%;
    text-align: center;
    position: fixed;
    padding: 3px 10px;
    width: 100%;
    bottom: 0px;
    z-index: 9999;
    box-shadow: 2px -2px 2px #cfcfcf;
    font: normal 10px/18px "Arial";
}

.footer a {
    text-decoration: none !important;
}

.radio label, .checkbox label {
    padding: 0px !important;
}

.i_user_circle:before {
  content: "\e974";
  font-size: 34px;
}

.i_linkedin:before {
  content: "\e9bc";
  font-size: 20px;    margin-right: 6px;
}

.i_linkedin:hover:before, .i_fb:hover:before, .i_twitter:hover:before {
    color:#000;
    transition: 0.9s;
}

.i_fb:before {
  content: "\e9bb";
  font-size: 20px;    margin-right: 6px;
}

.i_twitter:before {
  content: "\e9b9";
  font-size: 20px;    margin-right: 6px;
}