.loaderDiv {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.loaderDivCenter {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

    .loaderDivCenter img {
        height: 100px;
        width: 100px;
    }


@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.spin::before {
    animation: 1.5s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 5px #cfd0d1;
    border-bottom-color: #1c87c9;
    border-radius: 50%;
    content: "";
    height: 40px;
    width: 40px;
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}

.displaynone
{
    display:none !important;
}
.minHeight150 {
    min-height: 150px !important;
}
.minWidth150 {
    min-width: 150px !important;
}

.marginBottom10 {
    margin-bottom: 10px;
}
.marginBottom20 {
    margin-bottom: 30px;
}
.width300mt5{
    width:300px;  margin-top:5px;
}
.marginLeft5 {
    margin-left: 5px;
}
.minHeight400 {
    min-height: 400px !important;
}
.floatRight
{
    float:right;
}
.marBL5 {
    margin-bottom: 5px;
    margin-left: 5px;
}
.margin0 {
    margin: 10px 0px !important;
}