.iinput-container {
	width: 100%;
	border: none;
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	margin-top: 4px;
	margin-left: -2px;
	height: 44px;
	margin-left: auto;
	margin-right: auto;
	border: none;
	box-shadow: 0 4px 8px 0 rgba(6,41,107,0.05), 0 6px 20px 0 rgba(6,41,107,0.05);
}

.iinput-container.file {
	cursor: pointer;
	background-color: rgb(255,255,0);
	color: rgb(0,135,195);
	height: 46px;
	width: 100%;
	border: none;
	box-shadow: 0 4px 8px 0 rgb(6,41,107,0.2), 0 6px 20px 0 rgba(6,41,107,0.19);
	font-family: 'Oswald';
	font-size: 18px;
	font-weight: 700;
	margin-top: 0px;

}

.iinput-error {
	background-color: rgba(230,0,0,0.8) !important;
}

.iinput-container input {
	font-size: 20px;
	width: 100%;
	height: 100%;
	text-indent: 20px;
	background-color: transparent;
	border: none;
	color: rgba(0,0,0, 1);
	font-weight: 400;
}

.iinput-container textarea {
	font-size: 20px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	width: -webkit-calc(100% - 40px);
	width: -moz-calc(100% - 40px);
	width: -o-calc(100% - 40px);
	width: calc(100% - 40px);
	background-color: transparent;
	border: none;
}

.iinput-container div.button {
	position: absolute;
	right: 0px;
	padding-left: 20px;
	padding-right: 20px;
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	height: -o-calc(100% - 10px);
	height: calc(100% - 10px);
	padding-top: 7px;
	padding-bottom: 3px;
}

.iinput-container div.placeholder {
	pointer-events: none;
	text-indent: 20px;
	line-height: 38px;
	font-size: 20px;
	opacity: 1;
	font-weight: 300;
	-webkit-transition: opacity 200ms ease-in-out, font-size 200ms;
	-moz-transition: opacity 200ms ease-in-out, font-size 200ms;
	-ms-transition: opacity 200ms ease-in-out, font-size 200ms;
	-o-transition: opacity 200ms ease-in-out, font-size 200ms;
	transition: opacity 200ms ease-in-out, font-size 200ms;
	color: rgba(0,0,0,1);
	font-weight: 300;
	margin-top: 4px;
}

.iinput-container.file div.placeholder {
	width: 100%;
	text-align: center;
	line-height: 38px;
}

.iinput-container div.additional-button {
	position: absolute;
	right: 8px;
	width: 26px;
	cursor: pointer;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
    top: 50%; 
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	transition: color 300ms ease;
	transition: border 400ms ease;
}

.iinput-container div.additional-button:hover {
	color: rgba(255, 255, 255, 1);
	border: 2px solid rgba(255, 255, 255, 1);
}