//
// Atum Export Elements
// --------------------

.atum-export {
	
	a {
		text-decoration: none;
		
		&:focus {
			box-shadow: none;
		}
	}
	
	.btn {
		text-transform: uppercase;
		
		.atum-icon {
			margin-right: 2px;
		}
	}
	
	.btn-xs {
		@include button-size($btn-padding-y-xs, $btn-padding-x-xs, $btn-font-size-xs, $btn-line-height-xs, $btn-border-radius-sm);
	}
	
	.btn-circle {
		border-radius: 100%;
		
		&.btn-xs{
			padding: 4px;
			line-height: 1;
		}
	}
	
	.btn-pill {
		text-transform: uppercase;
		border-radius: 16px;
	}
	
	.btn-sm {
		.atum-icon {
			font-size: 14px;
			top: 1px;
			position: relative;
			display: inline-block;
			
		}
	}
	
	.btn-xs {
		.atum-icon {
			font-size: 12px;
			top: 1px;
			position: relative;
			display: inline-block;
		}
		
		&.btn-circle {
			width: 30px;
			height: 30px;
			
			.text-symbol {
				font-size: 26px;
				line-height: 1em;
				display: block;
				margin-top: -6px;
			}
		}
	}
	
	.aep-search {
		background: $light;
		display: flex;
		height: 30px;
		margin: 0 12px 10px 0;
		padding-left: 5px;
		border-radius: 15px;
		
		input, button {
			color: color('gray');
			font-size: 12px;
			background: transparent;
			border: none;
			box-shadow: none;
			@include placeholder(color('gray'));
		}
		
		input {
			font-style: italic;
		}
		
		button {
			cursor: pointer;
		}
	}
	
	.atum-icon a {
		
		&.select {
			@extend .atmi-cloud-download;
		}
		
		&.edit {
			@extend .atmi-pencil;
		}
		
		&.modify {
			@extend .atmi-highlight;
		}
		
		&.rounded {
			background: $primary;
			color: color-yiq($primary);
			display: inline-block;
			width: 24px;
			height: 24px;
			border-radius: 12px;
			position: relative;
			top: -5px;
			line-height: 24px;
			text-align: center;
			
			&:hover {
				background: darken($primary, 7.5%)
			}
		}
		
		&.show {
			@extend .atmi-database;
		}
	}
	
	.aep-all {
		color: $success;
		fill: $success;
	}
	
	.aep-many {
		color: $warning;
	}
	
	.aep-none {
		color: $danger;
	}
	
	.dropdown-menu{
		border-radius: $border-radius-base;
		border: none;
	}
	
}
