/* 
Author: Apps Maker BD;
Copyright - Apps Maker BD
*/
.appsmakerbd-md-effect-1.fade .modal-dialog{
	transform:rotate(180deg);
	transition: transform 800ms linear;
}

.appsmakerbd-md-effect-1.show .modal-dialog{
	transform:rotate(0deg) ;
}


.appsmakerbd-md-effect-2.fade .modal-dialog{
	margin-top:-110%;
	transition: margin-top 600ms linear;
}

.appsmakerbd-md-effect-2.show .modal-dialog{
	margin-top:30px;
}



.appsmakerbd-md-effect-3.fade{
	right:-110%;
	top:-110%;
	transform: scale(0.15);
	transition: right 700ms linear,top 700ms linear, transform 300ms ease-out;
}

.appsmakerbd-md-effect-3.show {
	right:0;
	top:0;
	transform: scale(1);
}
.appsmakerbd-md-effect-3.show:after{
	transition:300ms ease-out;
}

