.alertify-show,
.alertify-log {
	
	  
	    
	    
	        transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
}
.alertify-hide {
	-webkit-transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1); /* older webkit */
	-webkit-transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	   -moz-transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	    -ms-transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	     -o-transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	        transition: all 250ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeInBack */
}
.alertify-log-hide {
	
	  
	    
	     
	        transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045); /* easeInBack */
}

.alertify-logs {
	position: absolute;
	z-index: 5000;
	top: 0px;
	right: 0px;
	padding-left: 0px;
	width: 350px; /* La version por defecto trae 450px*/
}
.alertify-logs-hidden {
	display: none;
}
	.alertify-log {
		display: block;
		margin-top: 0px;
		position: relative;
		right: -100px;
	}
	.alertify-log-show {
		right: 0;
	}
	.alertify-log-hide {
		-webkit-transform: translate(300px, 0);
		   -moz-transform: translate(300px, 0);
		    -ms-transform: translate(300px, 0);
		     -o-transform: translate(300px, 0);
		        transform: translate(300px, 0);
		opacity: 0;
	}
	.alertify-dialog {
		padding: 0px;
	}
		.alertify-resetFocus {
			border: 0;
			clip: rect(0 0 0 0);
			height: 1px;
			margin: -1px;
			overflow: hidden;
			padding: 0;
			position: absolute;
			width: 1px;
		}

		.alertify-text {
			margin-bottom: 0px;
			width: 100%;
			-webkit-box-sizing: border-box;
			   -moz-box-sizing: border-box;
			        box-sizing: border-box;
			font-size: 100%;
		}

@media only screen and (max-width: 680px) {
	.alertify,
	.alertify-logs {
		width: 90%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.alertify {
		left: 5%;
		margin: 0;
	}
}