.styled-file {
	position: relative;
	width: 100%;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	font-family: $font-custom;
	padding: 0 33px 0 20px;
	font-size: 14px;
	&:after{
		position: absolute;
		top: 9px;
		right: 14px;
		font-size: 12px;
	}
	@media (max-width: $screen-xs - 1) {
		border-radius:5px;
	}
	.file-button {
		font-size: 0;
		position: absolute;
		top: 0;
		right: 20px;
		bottom: 0;
		line-height: 40px;
		&:before{
			font-size: 14px;
		}
	}
	.file-name {
		vertical-align: middle;
		line-height:40px;
	}
	input {
		position: absolute;
		margin: 0!important;
		width: 100%;
		height: 100%;
		top: 0;
		opacity: 0;
	}
}