@font-face {
	font-family:'FontAwesome';
	src: url(../fonts/fa-solid-900.ttf);
}

.form-top{
	/* margin-top: 30px; */
}
.panel{
	border-radius: 6px;
	border: 0;
}
@-moz-document url-prefix() {
    .form-control{
      height: auto;
    }
}
.panel-primary{
	background-color: #2c3e50;
	color: #fff;
}
.panel-primary>.panel-heading {
	color: #fff;
	font-size: 20px;
	background-color: #2c3e50;
	border-color: #2c3e50;
}
.btn-warning{
	background-color: transparent;
	border-color: #bdc3c7;
}

.container {
	width: 85%;
	height: auto;
	margin: 0 auto;
}


label {
	display: block;
	max-width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.fa {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-comment {
	height: 3px;
}

.fa-user:before {
    content: "\f007";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-phone:before {
    content: "\f879";
}

.fa-home:before {
    content: "\f015";
}

.fa-shipping:before {
    content: "\f0d1 ";
}

.fa-comment:before {
    content: "\f075";
}

select.form-control {
    width: 103%;
    padding: 6px;
    height: 50px;
}

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	box-shadow: 1px 1px 25px rgba(0,0,0,0.2);
}

.form-group {
	margin-bottom: 30px;
}

#inputZip {width: 4%;display: inline-block;}
#inputCity {width: 30%;display: inline-block;}
#inputStreet {width: 55%;display: inline-block;}

@media screen and (max-width: 600px) {
	#inputZip { width: 100%; display: block; margin-bottom: 10px; }
	#inputCity { width: 100%; display: block; margin-bottom: 10px; }
	#inputStreet { width: 100%; display: block; margin-bottom: 10px; }
}

textarea {
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark-color(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-appearance: textarea;
    background-color: -internal-light-dark-color(white, black);
    -webkit-rtl-ordering: logical;
    flex-direction: column;
    resize: auto;
    cursor: text;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    margin: 0em;
    font: 400 13.3333px Arial;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(169, 169, 169);
    border-image: initial;
    padding: 2px;
    overflow: auto;
}

textarea.form-control {
	min-height: 200px;
}

#success_message h4 {
    padding: 10px;
    background: green;
    text-align: center;
    color: #fff;
}

#error_message h4 {
    padding: 10px;
    background: rgb(255 0 0);
    text-shadow: 1px 1px 1px black;
    text-align: center;
    color: #fff;
}