:root {
    --gd-red: #ed1b2e;
    --gd-white: #ffffff;
    --gd-yellow: #feb828;
    --gd-dark:#11101D;
    --gd-dark-blue: #2c3570;
    --gd-default-height: unset;
    --gd-green: #00a651;
    --gd-font-size-base: 15px;
    --gd-com-bg-color: #E4E9F7;
}

/* font-weight */
.f-b-1{font-weight:100;}
.f-b-2{font-weight:200;}
.f-b-3{font-weight:300;}
.f-b-4{font-weight:400;}
.f-b-5{font-weight:500;}
.f-b-6{font-weight:600;}
.f-b-7{font-weight:700;}
.f-b-8{font-weight:800;}
.f-b-9{font-weight:900;}

*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}

/* Common Color */
.g-r{
    color: var(--gd-red);
}
.g-g{
    color: var(--gd-green);
}
.g-y{
    color: var(--gd-yellow);
}
.g-db{
    color: var(--gd-dark-blue);
}

body{
    width: 100vw;
    height: 100vh;
}
.welcome-div{
    width: 100vw;
    height: 100vh;
}
.errMsg{
    color: var(--gd-red);
}
.welcome-logo{
    width:75%;
    display: block;
    margin: auto;
}
.footer-welcome {
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
}
.excel-data{
    width: 100%;
}

.pageLoader {
    background: url(../img/logo.png) no-repeat center center;
    position: fixed;
    background-size: 150px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #ffffffe8;
}

.err-msg{
    color: var(--gd-red);
}