/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30/01/2020, 17:30:08
    Author     : macleody
*/
.modal-delta {
    width: 500px;
    position: fixed;
    top: 5%;
    left: 30%;
    z-index: 99999;
    text-align: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 1px 0px 9px rgba(0, 0, 0, .5);
}

.modal-delta p {
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 20px;
}

.modal-delta button {
    background: none;
    border: none;
    float: right;
    position: relative;
    bottom: 7px;
}

.modal-delta-mask {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
}

.modal-delta-mask:target {
    opacity: 1;
}

.modal-delta .img-responsive {
    width: 100%;
}