@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.main-wrap {
    display: flex;
    flex-direction: column;
    background-color: #ebf1f5;
    font-family: 'Roboto', sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.his-header {
    border-bottom: 1px solid #ccc;
    display: flex;
    max-width: 400px;
    width: 100%;
    height: 48px;
    background-color: #ffff;
    font-size: 16px;
}

.his-header-wrap-arrow {
    border-right: 1px solid #ccc;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 48px;
    width: 48px;
}

.his-header .heading {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 48px;
    flex: 1 0 0;
}

.his-header-wrap-arrow .img-btn {
    color: #5c7080;
    width: 24px;
    height: 24px;
}

.his-input input::placeholder {
    color: #8a9ba8;
    font-size: 13.5px;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.password {
    position: relative;
}

.password input[type="password"] {
    padding-right: 30px;
}

.alert-error {
    color: #182026;
    font-size: 14px;
}

.password .glyphicon, #password2 .glyphicon {
    display: none;
    right: 15px;
    position: absolute;
    top: 12px;
    cursor: pointer;
}

.glyphicon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
}

.glyphicon-eye-open {
    background-image: url(../images/eye-opened.svg) !important;
}

.glyphicon-eye-close, .glyphicon-eye-open {
    width: 16px;
    height: 11px;
    background-image: url(../images/eye-closed.svg);
    background-size: 16px 11px;
}

.password-error-body {
    padding-left: 11px;
    font-size: 14px;
}

.alert-error, .password-error {
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px;
}

.img-error {
    width: 20px;
    height: 20px;
}

/*tooltip*/
[data-tip] {
    position: relative;
}

[data-tip]:before {
    content: '';
    display: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ebf1f5;
    position: absolute;
    top: 30px;
    left: 35px;
    z-index: 8;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

[data-tip]:after {
    display: none;
    content: attr(data-tip);
    position: absolute;
    top: 35px;
    left: 0px;
    padding: 5px 8px;
    background: #ebf1f5;
    color: #182026;
    z-index: 9;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    white-space: pre-line;
    word-wrap: normal;
    line-height: 1.6;
    width: 277px;
    height: 115px;
    border-radius: 4px;
    border: solid 1px #dbe4ea;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

[data-tip]:hover:before,
[data-tip]:hover:after {
    display: block;
}

.contact_his {
    margin: 0;
}

.his-alert-success {
    color: #182026;
    font-size: 14px;
    height: 100%;
    background-color: #e6f5ef;
    padding-left: 12px;
    padding-top: 15px;
}
