﻿.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.loadOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 900;
}



/* Popup styling */
.popup {
    background: #fefefe;
    border: #333 solid 1px;
    border-radius: 5px;
    position: fixed;
    left: 5%;
    top: 5%;
    bottom: 5%;
    width: 90%;
    z-index: 998;
}

.loadPopup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.loadPopup img {
    height: 25vh;
    opacity: 0.8;
}

.btn-close:hover {
    color: red;
    cursor: pointer;
}