/* DEMO MODAL STYLE */
.demo-modal-backdrop {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.8);
}
.demo-modal-backdrop-loading {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.8);
}
.demo-modal-backdrop-loading h2 {
    color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.demo-modal-close-btn {
    position: fixed;
    z-index: 1001;
    top: 2.5%;
    left: 95.5%;
    display: none;
}
.demo-modal-close-btn i {
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: .33s linear;
}
.demo-modal-close-btn i:hover {
    color: #adadad;
}
