.iinput-container {
	width: 100%;
	border: none;
	position: relative;
	background-color: rgba(255,255,255,1);
	margin-top: 3px;
	height: 46px;
	margin-left: auto;
	margin-right: auto;
}

.iinput-container.file {
	cursor: pointer;
	background-color: #be9f57;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 20px;
	max-width: 620px;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.35);
}

.iinput-error {
	border: 2px solid rgb(230,0,0);
}

.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: 200;
}

.iinput-container input::-ms-clear {
    display: none;
}

.iinput-container.textarea {
	height: auto;
}

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

.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;
	font-weight: 600;
	background-color: rgb(181,157,87);
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
}

.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: 200;
	margin-top: 4px;
}

.iinput-container.file div.placeholder {
	width: 100%;
	text-align: center;
	line-height: 38px;
	color: rgba(255, 255, 255, 1);
	text-transform: uppercase;
	font-weight: 400;
}