/* overlays.css */

.show {
    display: block;
}

.hide {
    display: none;
}

.page-bg {
    background:
        radial-gradient(circle at top left, #ffffff 0%, #f6fffb 30%, transparent 55%),
        radial-gradient(circle at top right, #eef9ff 0%, #f8fcff 28%, transparent 50%),
        linear-gradient(135deg, #f7fbfb 0%, #eef8f6 52%, #edf7ff 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#loading {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    background: gray;
    opacity: 0.2;
    visibility: hidden;
    z-index: 9998;
}

#img_load {
    visibility: hidden;
    margin-top: 200px;
    text-align: center;
}

#pageIsLoading {
    position: absolute;
    display: block;
    padding-left: 44px;
    padding-right: 12px;
    width: auto;
    height: 46px;
    line-height: 46px;
    border: 1px solid #890000;
    color: #000000;
    font-weight: bold;
    background-color: #e5e5e5;
    background-image: url('/gfx/ajax.gif');
    background-position: 6px center;
    background-repeat: no-repeat;
    z-index: 9999;
}