/* CSS Panel */
	.aui .i-panel-footer {
		border-top: 1px solid #efefef;
		background: #f7f7f7;
	    border-bottom-left-radius: 4px;
	    border-bottom-right-radius: 4px;
	}
	
	.aui .i-panel .right {
		float: right;
	}
	
	.aui .i-panel .i-panel-footer:after {
		content: '';
		display: block;
		clear: both;
	}
	
	.aui .i-panel-footer {
	    padding: 10px;
	    min-height: 39px;
	}
	.i-modal.hasScroll .icon-close {
	    display: none;
	}
	
	.i-modal .icon-close {
	    background: #FFF;
	    margin-bottom: 10px;
	    position: absolute;
	    right: -8px;
	    top: -8px;
	    font-size: 14px;
	    font-weight: bold;
	    border-radius: 50%;
	    width: 30px;
	    height: 30px;
	    border: 0;
	    color: #a9a9a9;
	    cursor: pointer;
	    padding: 8px 5px;
	}
	
	.icon-close:before {
		content: '';
		display: inline-block;
		width: 12px;
		height: 12px;
		background: url(../images/close.png) no-repeat;
	}
	
	.i-modal header {
		padding: 0px 15px;
		border-bottom: 1px solid #e9ecef;
	}
	
	.i-modal .i-modal-body {
		padding: 20px 15px;
	}
	
	.i-modal .i-modal-footer {
		display: flex;
		justify-content: flex-end;
		padding: 10px 15px;
		border-top: 1px solid #e9ecef;
	}
	
	.i-modal .i-modal-footer .i-btn {
		margin-left: 10px;
	}
	

/* Start icon loader */
	.lds-ring {
	  display: inline-block;
	  position: relative;
	  width: 34px;
	  height: 23px;
	}
	.lds-ring div {
	  box-sizing: border-box;
	  display: block;
	  position: absolute;
	  width: 20px;
	  height: 20px;
	  margin: 8px;
	  border: 2px solid #fff;
	  border-radius: 50%;
	  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	  border-color: #009ae5 transparent transparent transparent;
	}
	.lds-ring div:nth-child(1) {
	  animation-delay: -0.45s;
	}
	.lds-ring div:nth-child(2) {
	  animation-delay: -0.3s;
	}
	.lds-ring div:nth-child(3) {
	  animation-delay: -0.15s;
	}
	@keyframes lds-ring {
	  0% {
	    transform: rotate(0deg);
	  }
	  100% {
	    transform: rotate(360deg);
	  }
	}


/* End icon loader */


/* start input setup */
	.aui input, .aui select, .aui button {
	    height: 32px !important;
	    margin: 2px 2px;
	    border: 1px solid #ccc;
	}
	.aui input:focus {
	    outline: none;
	    border: 1px solid #1670BE
	}
/* end input setup */