.d-notification-modal-bd{
	position: fixed;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	margin:auto;
	background:rgba(0,0,0,.7);
	z-index:999;
	display:none;
	opacity:0;
}

.d-notification-modal{
	position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    zoom: 0.5;
    opacity:0;
    z-index:1000;
    display:none;
	min-width: 500px;
    min-width: 50vmin;

}
.d-notification-modal > .body{
	position:relative;
	height:100%;
	background:#00bcd4;
	border-radius: 20px;
	border-radius: 2vmin;
    overflow: hidden;
}
.d-notification-modal > .body > .header{
	position:relative;
	padding:20px;
	padding:2vmin;
	height: 100px;
	height: 10vmin;
}
.d-notification-modal i.icon{
    font-size: 200px;
    font-size: 20vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 200px;
    width: 20vmin;
    height: 200px;
    height: 20vmin;
    text-align: center;
    color: white;
}

.d-notification-modal > .body > .content{
	background:white;
	position:relative;
	visibility:hidden;
}

.d-notification-modal > .body > .content > .title{
	position:relative;
	padding:20px 10px;
	padding:2vmin 1vmin;
	text-align:center;
	font-size:30px;
	font-size:3vmin;
	font-weight: 600;
    color: #00bcd4;
}
.d-notification-modal > .body > .content > .message{
	position:relative;
	padding:0px 20px 40px 20px;
	padding:0vmin 2vmin 4vmin 2vmin;
	text-align:center;
	font-size:20px;
	font-size:2vmin;
	color:#00bcd4;
}

.d-notification-modal.success > .body{
	background: #009688;
}
.d-notification-modal.success > .body > .title{
    color: #009688;
}
.d-notification-modal.success > .body > .message{
	color: #009688;
}

.d-notification-modal.warning > .body{
	background: #F44336;
}
.d-notification-modal.warning > .body > .content > .title{
    color: #F44336;
}
.d-notification-modal.warning > .body > .content > .message{
	color: #F44336;
}

.d-notification-modal > .body > .content > .footer {
    padding: 0px 10px 20px 10px;
    padding: 0px 1vmin 2vmin 1vmin;
    text-align: center;
}

.d-notification-modal > .body > .content > .footer > button {
	    padding: 10px;
	    padding: 1vmin;
        background: #F44336;
	    color: #ffffff;
        font-size: 20px;
        font-size: 2vmin;
	    border: 0px;
	    border-radius: 5px;
	    border-radius: .5vmin;
	    border: 5px solid white;
	    border: .5vmin solid white;
	    cursor:pointer;
	    min-width: 150px;
        min-width: 15vmin;
}

