.eg-auth-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    display: table;
    box-sizing: border-box;
    background-color: #fff9;
    z-index: 9999;
}

.eg-auth-loader.static {
    position: relative;
    /*
    width: auto;
    height: auto;
    left: auto;
    top: auto;
    */
}

.eg-auth-loader-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: top;
}

.eg-auth-loader-content-wrapper {
    display: inline-table;
    margin-top: 20px;
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 20px #0003;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
}

.eg-auth-loader.static .eg-auth-loader-content-wrapper {
    margin-top: 0;
    box-shadow: none;
}

.eg-auth-loader-content {
    padding: 0;
    margin: 0;
    height: inherit;
    overflow-y: auto;
    box-sizing: border-box;
}

.eg-auth-loader-close {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    background-color: #fff;
    color: #000;
    border: 2px solid #0003;
}

.eg-auth-loader.static .eg-auth-loader-close {
    display: none;
}