/*
 * jquery-filestyle
 * doc: http://markusslima.github.io/jquery-filestyle/
 * github: https://github.com/markusslima/jquery-filestyle
 *
 * Copyright (c) 2017 Markus Vinicius da Silva Lima
 * Version 2.1.0
 * Licensed under the MIT license.
 */
.jfilestyle {
	margin: 0;
	padding: 0px;
	position: relative;
	border-collapse: separate;
	display: flex;
}

div.jfilestyle input {
    width: 100%!important;
}

.jfilestyle .focus-jfilestyle{
	width: 30%;
	outline: none;
}

div.jfilestyle label {
	background: #edaf1b!important;
	color: #090909;
    height: 66px;
    padding: 3px 5px 0px 5px;
	text-align: center;
	margin: 0px;
	font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}

div.jfilestyle.jfilestyle-corner input:last-child,
div.jfilestyle.jfilestyle-corner label:last-child {
	margin-left: -1px;
}

div.jfilestyle label[disabled] {
	pointer-events: none;
	opacity: 0.6;
	filter: alpha(opacity=65);
	cursor: not-allowed;
}

div.jfilestyle label:hover {
	cursor: pointer;
	filter: brightness(1.1);
}

div.jfilestyle .count-jfilestyle {
	background: #303030;
	color: #fff;
	border-radius: 50%;
	padding: 1px 5px;
	font-size: 12px;
	vertical-align: middle;
}