﻿
#hrms-splashscreen {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000000;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #10172d, #10172d);
}

.hrms-ss-imgbox {
    position: relative;
    margin-bottom: 70px;
    
}

    .hrms-ss-imgbox .hr-ss-img {
        position: absolute;
        height: 100px;
        width: 200px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        animation: hrsslogo;
        animation-duration: 1s;
        animation-iteration-count: initial;
        object-fit : contain;
    }

.hrms-ss-role {
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -315%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 65px;
    animation: hrsstext;
    animation-duration: 1s;
    animation-iteration-count: initial;
}

.hrms-ss-bname {
    color: #f5c300 !important;
    font-family: "Kanit" !important;
    font-size: 28px !important;
    text-align: center;
    transform: translateY(-50%);
    text-shadow: #d3d0d0 0 0 1px, #fff 0 -1px 2px, #fff 0 -3px 2px, rgb(143 138 138 / 80%) 1px 2px 0px;
    font-weight: 900 !important;
}

.hrms-ss-allinone {
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 17px;
    font-family: 'Lato' !important;
    width: 300px;
    text-align: center;
    color: #939292;
    margin-top: -18px;
}

#hrms-ss-resoure {
    display: flex;
    gap: 5px;
    width: 200px;
    justify-content: center;
    margin-top: 10px;
    min-height : 20px;
}

.hrms-ss-res-content {
    color: #979797;
    font-size: 14px;
    width: 200px;
    text-align: center;
    height: 20px;
    overflow: hidden;
}

.hrms-ss-prograss-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 47%;
    transform: translate(-50%, 110%);
    height: 65px;
    animation: hrssresloading;
    animation-duration: 1s;
    animation-iteration-count: initial;
}

.hrms-ss-loading {
    text-align: center;
    margin-top : 5px;
}

    .hrms-ss-loading span {
        display: inline-block;
        margin: 0px 1px;
        width: 20px;
        height: 20px;
        background-color: #f9b200;
    }

        .hrms-ss-loading span:nth-child(1) {
            -webkit-animation: loading 0.5s infinite alternate 0s;
            -moz-animation: loading 0.5s infinite alternate 0s;
            -ms-animation: loading 0.5s infinite alternate 0s;
            -o-animation: loading 0.5s infinite alternate 0s;
            animation: loading 0.5s infinite alternate 0s;
        }

        .hrms-ss-loading span:nth-child(2) {
            -webkit-animation: loading 0.5s infinite alternate 0.2s;
            -moz-animation: loading 0.5s infinite alternate 0.2s;
            -ms-animation: loading 0.5s infinite alternate 0.2s;
            -o-animation: loading 0.5s infinite alternate 0.2s;
            animation: loading 0.5s infinite alternate 0.2s;
        }

        .hrms-ss-loading span:nth-child(3) {
            -webkit-animation: loading 0.5s infinite alternate 0.4s;
            -moz-animation: loading 0.5s infinite alternate 0.4s;
            -ms-animation: loading 0.5s infinite alternate 0.4s;
            -o-animation: loading 0.5s infinite alternate 0.4s;
            animation: loading 0.5s infinite alternate 0.4s;
        }

        .hrms-ss-loading span:nth-child(4) {
            -webkit-animation: loading 0.5s infinite alternate 0.6s;
            -moz-animation: loading 0.5s infinite alternate 0.6s;
            -ms-animation: loading 0.5s infinite alternate 0.6s;
            -o-animation: loading 0.5s infinite alternate 0.6s;
            animation: loading 0.5s infinite alternate 0.6s;
        }

@-webkit-keyframes loading {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes loading {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes loading {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes loading {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hrsstext {
    0% {
        transform: translate(-50%, -315%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -315%) scale(1);
        opacity: 1;
    }
}

@keyframes hrsslogo {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes hrssresloading {
    0% {
        transform: translate(-50%, 110%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, 110%) scale(1);
        opacity: 1;
    }
}