﻿.hploader {
    background-color: red;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9999;
    width: 120px;
    height: 120px !important;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px red;
}

#filterTitle {
    padding: 3px;
    text-align: center;
    background-color: #e5eecc;
    border: solid 1px #c3c3c3;
    cursor: pointer;
}

#filterpanel {
    padding: 5px;
    display: none;
    background-color: #e5eecc;
    border: solid 1px #c3c3c3;
}

.filterTitle {
    padding: 3px;
    text-align: center;
    background-color: #e5eecc;
    border: solid 1px #c3c3c3;
    cursor: pointer;
}

.filterpanel {
    padding: 5px;
    display: none;
    background-color: #e5eecc;
    border: solid 1px #c3c3c3;
}


.frmsap {
    display: block;
    width: 100%;
    padding: 3px;
    text-align: center;
    /*  background-color: #e5eecc;*/
    border: solid 1px #c3c3c3;
    color: red !important;
}

.hphr {
    width: 100%;
    margin-bottom: 7px;
    border-bottom: 2px solid green;
}
@font-face {
    font-family: 'password';
    font-style: normal;
    font-weight: 400;
    src: url(password.ttf);
}

.passtext {
    font-family: 'password';
}

/* Scroll Bar Style Code */
/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 5px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }
/* End Scroll Bar Style Code */


.Process {
    z-index: 9999;
    position: fixed;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.homeimage {
    position: absolute !important;
    display: block !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}