/* .nav-tabs .nav-link.active{
	background-color: #845EC2;
	color: #fff;
 }
 .nav-tabs.flex-column{
	 border-bottom: none;
 }*/

   .js-slidein {
	  opacity: 0;
	  transform: translateY(100px);
	  -webkit-transition: all 300ms ease-in-out;
	  transition: all 300ms ease-in-out;
	}

	.js-slidein-visible {
	  opacity: 1 !important;
	  transform: translateY(0) !important;
	}
	.fromLeft { 
		transform: translate(-100%,0);
		transition: all ease 2s; margin: 15px 0; 
	}
	.fromRight { 
		transform: translate(100%,0);
		transition: all ease 2s; 
		margin: 15px 0; 
	}
	.show {
		opacity: 1;
		transform: translate(0,0);
		transition: all ease 2s; 
		margin: 15px 0; 
	}