
#loading-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index:999;
    backdrop-filter: blur(2px);
}

    #loading-overlay:before {
        content: " ";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color:grey;
        opacity: 0.6;
    }

    /* .lds-dual-ring from loading.io */
    #loading-indicator {
        display: inline-block;
        width: 80px;
        height: 80px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);        
    }
    
        #loading-indicator:after {
            content: " ";
            display: block;
            width: 64px;
            height: 64px;
            margin: 8px;
            border-radius: 50%;
            border: 6px solid #000;
            border-color: #000 transparent #000 transparent;
            animation: loading-indicator 1.2s linear infinite;
        }
        
        @keyframes loading-indicator {
            0% {
              transform: rotate(0deg);
            }
            100% {
              transform: rotate(360deg);
            }
        }

.message-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index:999;
}

    .message-overlay:before {
        content: " ";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color:grey;
        opacity: 0.4;
    }

    /* https://codepen.io/bootpen/pen/vNKJBb */
    .message-window {
        padding: 32px 32px 16px 32px;
        position: absolute;
        left: 50%;
        top: 50%;
        min-width: 240px;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border-radius: 2px;
        -webkit-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
        box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
    }

        .message-message {
            text-align: center;
            padding: 0 24px;            
        }

        .message-buttons {
            text-align: right;
        }

        .message-window button {
            display: inline-block;
            width: initial;
            margin-top: 24px;
            height: 36px;
            margin-right: 8px;
            padding: 8px 10px;
            border: none;
            border-radius: 0;
            text-transform: uppercase;
            font-weight: bold;
            color: #009688;
            background-color: #fff;
        }

/* https://codepen.io/jakamusic/pen/XXQJOP */
.toast-message {
    position: fixed;
    left: 20px;
    bottom: -50px;
    background-color: #323232;
    padding: 12px 24px 17px 24px;
    vertical-align: middle;
    color: #fff;
    box-shadow: 0 7px 18px rgba(0,0,0,0.2);
    border-radius: 1px;
    z-index: 999;
}

    .toast-message-anim {
        -webkit-animation: toast-message 5s forwards;
        -webkit-animation-delay: 0.5s;
        animation: toast-message 5s forwards;
        animation-delay: 500ms;    
    }

        @-webkit-keyframes toast-message {
            0% { bottom: -50px; }
            10% { bottom: 80px; }
            90% { bottom: 80px; opacity: 1; }
            100% { bottom: -50px; opacity: 0; }
        }

        @keyframes toast-message {
            0% { bottom: -50px; }
            10% { bottom: 80px; } 
            90% { bottom: 80px; opacity: 1; }
            100% { bottom: -50px; opacity: 0; }
        }

.simple-page.home-area {height: 0px; margin-bottom: 0px; padding-top: 0px}
.b-content {color: black}