﻿html, body {
    font-family: 'PT Sans', sans-serif;
    font-size: 100%;
    overflow-x: hidden;
    background-image: url("/resources/assets/images/login-bg.jpg");
    /* background-image: url("/resources/assets/images/content-background.png"); */
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    background-image: url("/resources/assets/images/content-background.png");
    */
}

.logo-sz {
    max-height: 40px;
    max-width: 40px;
    /*border: 2px solid orange;*/
}

.com-fmt {
    font-size: x-large;
    color: orange;
    letter-spacing: 3px;
}

.sup-fmt {
    font-size: small;
    color: orange;
}

.cap-hdr {
    text-align: center;
    font-size: 9px;
    letter-spacing: 3px;
    /*color: #fff;*/
}

footer {
    /*position: absolute;*/
    left: 0;
    bottom: 0;
    /*height: 100px;*/
    height: 12px;
    width: 100%;
    overflow: hidden;
}

h2.title-main {
    text-align: center;
    /*padding: 1em;*/
    margin: 0;
    font-size: 1.6em;
    color: #629aa9;
    font-weight: 500;
}

.cap-hdr a:hover {
    color: orange;
}
/*end of login master page*/
.hdr-lg {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-lgn {
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ltr-sp-2 {
    letter-spacing: 2px;
    font-size: small;
}

.rem-me {
    font-size: small;
    font-weight: 300;
}

/*blink text*/
@keyframes blink {
    50% {
        opacity: 0.0;
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: 0.0;
    }
}

.blink {
    animation: blink 2s step-start 0s infinite;
    -webkit-animation: blink 1s step-start 0s infinite;
    color: #fff;
    text-align: center;
}
/*End blink text*/

h5.title2 {
    text-align: left;
    background: #629aa9;
    /*border-bottom: 4px solid #4b7884;*/
    margin: 0;
    color: #fff;
    font-size: .9em;
}

/*end of login child page*/

/*Snackbar  Toast*/
.snackbar {
    visibility: hidden;
    min-width: 360px;
    margin-left: -188px;
    background-color: #e4e48e;
    color: #000;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50.6%;
    top: 30%;
    font-size: 17px;
}

    .snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30%;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30%;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30%;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30%;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}
/*End Snackbar  Toast*/

/*log out button*/
.signoff {
    background-color: transparent !important;
    border-width: 0px !important;
    border-color: #fff !important;
    color: #777 !important;
    padding: 3px 20px;
}

.dropdown-menu > li > .signoff_hvr:hover {
    background-color: #e1e3e9;
    color: #333
}

.i_mr {
    margin-right: 10px;
}
/*end log out*/

.marque-stl {
    height: 70px;
    font-size: 12px;
    color: gray;
    font-weight: 500;
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
}

/*Rotate logo*/
.rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
/*end rotation*/
