div#contenedor-dicop-notification {
	position: fixed;
	width: 400px;
	top: 0;
	right: 0;
	z-index: 9999;
}

div.dicop-notification {
	position: relative;
	margin: 20px auto;
	width: 90%;
	overflow: hidden;
	box-shadow: 0px 0px 40px 0px rgba(0,0,0, .20);
    opacity: 0;
    cursor: pointer;
    -webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: perspective(500px) rotateX(0deg) rotateY(-60deg) rotateZ(0deg);
	-moz-transform: perspective(500px) rotateX(0deg) rotateY(-60deg) rotateZ(0deg);
	-o-transform: perspective(500px) rotateX(0deg) rotateY(-60deg) rotateZ(0deg);
	-ms-transform: perspective(500px) rotateX(0deg) rotateY(-60deg) rotateZ(0deg);
	transform: perspective(500px) rotateX(0deg) rotateY(-60deg) rotateZ(0deg);
	transition: all 1s;
}

.show-notification {
	opacity: 1 !important;
    -webkit-perspective: 500px !important;
	-moz-perspective: 500px !important;
	-o-perspective: 500px !important;
	-ms-perspective: 500px !important;
	perspective: 500px !important;
	-webkit-transform-origin: 100% 50% !important;
	-moz-transform-origin: 100% 50% !important;
	-o-transform-origin: 100% 50% !important;
	-ms-transform-origin: 100% 50% !important;
	transform-origin: 100% 50% !important;
	-webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
	-moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
	-o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
	-ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
	transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
}

.success-notification {
	background: #66ff38;
background: -moz-linear-gradient(left, #66ff38 1%, #6ce4fc 100%);
background: -webkit-linear-gradient(left, #66ff38 1%,#6ce4fc 100%);
background: linear-gradient(to right, #66ff38 1%,#6ce4fc 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66ff38', endColorstr='#6ce4fc',GradientType=1 );
}

.error-notification {
	background: #ff4f4f;
background: -moz-linear-gradient(left, #ff4f4f 0%, #df6dff 100%);
background: -webkit-linear-gradient(left, #ff4f4f 0%,#df6dff 100%);
background: linear-gradient(to right, #ff4f4f 0%,#df6dff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4f4f', endColorstr='#df6dff',GradientType=1 );
}

.alert-notification {
	background: #f7811b;
background: -moz-linear-gradient(left, #f7811b 1%, #ff5ee6 100%);
background: -webkit-linear-gradient(left, #f7811b 1%,#ff5ee6 100%);
background: linear-gradient(to right, #f7811b 1%,#ff5ee6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7811b', endColorstr='#ff5ee6',GradientType=1 );
}

.info-notification {
	background: #00e3fc;
background: -moz-linear-gradient(left, #00e3fc 0%, #aa6dff 100%);
background: -webkit-linear-gradient(left, #00e3fc 0%,#aa6dff 100%);
background: linear-gradient(to right, #00e3fc 0%,#aa6dff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e3fc', endColorstr='#aa6dff',GradientType=1 );
}

div.dicop-notification div.timer {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: rgba(0,0,0, .10);
}

div.dicop-notification div.info {
	width: 100%;
	height: auto;
	margin-top: 7px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

div.dicop-notification div.info div.icon {
	flex-basis: 30%;
	background-position: center center;
	background-size: 50%;
	background-repeat: no-repeat;
	position: relative;
	z-index: 100;
}

div.dicop-notification div.info div.text {
	flex-basis: 70%;
	height: auto;
	align-self: flex-end;
	background-color: white;
	position: relative;
	box-shadow: 0px 0px 40px 0px rgba(0,0,0, .40);
}

div.dicop-notification div.info div.text:after {
    position: absolute;
    content: '';
    display: block;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 100%;
    background-color: white;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

div.dicop-notification div.info div.text p.title {
	margin: 0;
	padding: 10px;
	font-size: 1.4em;
	color: #555;
}

div.dicop-notification div.info div.text p.description {
	margin: 0;
	padding: 0px 10px 10px 10px;
	font-size: 1em;
	color: #999;
}


