.Polaris-Page-Header__Title{
    width: 100%;
    justify-content: space-between;
}
.Polaris-FormLayout__Item_right{
    text-align: right;
    margin-right: 15px;
    margin-bottom: 10px;
}
.Polaris-Pagination__presea{
    margin: 15px;
}
.Polaris-Card__Login{
    padding: 20px;
}
.Polaris-FormLayout_Presea{
    margin-top: 20px;
}
.Polaris-Button--primary_presea{
    margin-top: 1.6rem;
    margin-left: 2rem;
}

/*Spinner*/

.spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 80px;
    height: 80px;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #E2E2E2;
    border-top: 3px solid #777;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
    z-index: 9999999999;
    display: none;
}

    .spinner.on {
        display: inline-block;
    }


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.loader-container {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999999;
}

    .loader-container .loader {
        background-color: #FFFFFF;
        border: 1px solid #DDD;
        border-radius: 10px;
        box-shadow: 0 1px 10px -5px black;
        left: 50%;
        margin-left: -89px;
        margin-top: -33px;
        padding: 16px 32px;
        position: fixed;
        top: 50%;
        z-index: 9999999999;
    }

        .loader-container .loader span {
            /*background: url(../images/Loading.gif) no-repeat scroll 0 50% white;*/
            display: inline-block;
            padding: 12px 0 11px 48px;
            width: 166px;
            height: 100px;
        }

#divProcessing {
    display: none;
}
    /*this is what we want the div to look like
when it IS showing*/
    #divProcessing.loading-visible {
        position: fixed;
        z-index: 9999999999;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba( 255, 255, 255, .55 )
        /*url('/Content/Image/Loading.gif')*/
        50% 50% no-repeat;
    }