.toastjs-container{position:absolute;position:fixed;bottom:30px;left:30px;width:calc(100% - 60px);max-width:400px;transform:translateX(-150%);transition:transform 1s;z-index:100}.toastjs-container[aria-hidden=false]{transform:translateX(0)}.toastjs{background:#fff;padding:10px 15px 0;border-left-style:solid;border-left-width:5px;border-radius:4px;box-shadow:0 2px 5px 0 rgba(0,0,0,.2)}.toastjs.default{border-left-color:#AAA}.toastjs.success{border-left-color:#2ECC40}.toastjs.warning{border-left-color:#FF851B}.toastjs.danger{border-left-color:#FF4136}.toastjs-btn{background:#f0f0f0;padding:5px 10px;border:0;border-radius:4px;font-family:'Source Sans Pro',sans-serif;font-size:14px;display:inline-block;margin-right:10px;margin-bottom:10px;cursor:pointer}.toastjs-btn--custom{background:#323232;color:#fff}.toastjs-btn:focus,.toastjs-btn:hover{outline:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2)}
/*Custom style*/
		.toastjs.success{
	    	width: 385px !important;
	    	min-height: 175px !important;
	    	font-family: 'Conv_corbel' !important;

	    	background-image: none !important;
    		color: #ffffff !important;
    		background-color: #000000 !important;
    		height: 100% !important;
    		min-height: 175px;
    		border-radius: 10px !important;
    		font-size: 16px !important;
    		line-height: 22px !important;
    		border: 2px solid #ffffffff;
		}
		.toastjs.success{
    		border-left-color: #ffffff !important;
    		padding-top: 30px;
		}
		.toastjs.success p{
			margin-bottom: 20px;
			line-height: 24px;
		}
		.toastjs-btn.toastjs-btn--custom,.toastjs-btn.toastjs-btn--close{
    		border-radius: 0px;
    		padding: 7px 20px;
		}
		.toastjs-btn.toastjs-btn--custom{
			background-color: #00cbfe !important	
		}
		.toastjs-container{
			transition: all 2s ease 0s;
			opacity: 0;
		}
		.toastjs-container[aria-hidden=false] {
    		transform: translateX(0);
    		opacity: 1;
		}