/*==================================================
General
==================================================*/

html, body {
	width: 100%;
	min-width: 320px;
	min-height: 100%;
	font-family: Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background-color: #373737;
	box-sizing: border-box;
}
body {
	position: relative;
	overflow-y: scroll;
	width: 100%;
	margin: 0 auto;
}
@media all and (max-width: 1280px) {
	body {width: 100%;}
}
body * {
	position: relative;
	box-sizing: border-box;
	/*outline: none;*/
}
a {
	color: #e72e4a;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
/*
ul, ol {
	list-style: none;
	list-style-type: disc;
	margin: 0;
	padding: 0;
}
*/
p {
	margin: 20px 0 0 0;
}
li {
	margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 20px 0;
}
pre {
	margin: 0;
	white-space: pre-wrap;       /* Since CSS 2.1 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.clear {
	clear: both;
}
.break {
	overflow-wrap: break-word;
    word-break: break-all;
}



#container {
	width: 80%;
	height: 100%;
	min-height: 100%;
	padding: 0 0 50px 0;
	margin: 0 auto;
	background-color: #fff;
}



.main_menu {
	margin: 0;
	padding: 35px 50px;
}
.main_title {
	margin: 0;
	padding: 0 50px;
}
.info_panel {
	margin: 0 0 50px 0;
	padding: 0 50px;
}
.big_button {
	margin: 35px 0;
	padding: 0 50px;
}
.form {
	margin: 35px 0;
	padding: 15px 50px 35px;
	background-color: #eee;
}
.results {
	margin: 35px 0;
	padding: 0 50px;
}
.gallery {
	margin: 35px 0;
	padding: 0 50px 35px;
	background-color: #eee;
}
.gallery p {
	margin: 0;
	text-align: center;
}



.inf, .info {color: #080; text-transform: uppercase;}
.err, .error {color: #f00; text-transform: uppercase;}
.wrn, .warning {color: #f80; text-transform: uppercase;}



.btn {
	width: auto;
	height: 30px;
	font-size: 0.8em;
	line-height: 30px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding: 0 10px;
	background-color: #e72e4a;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.btn:hover {
	text-decoration: none;
	background-color: #ff1639;
}
.btn_big {
	display: inline-block;
	width: 250px;
	height: 50px;
	font-weight: 400;
	font-size: 1em;
	text-transform: uppercase;
	padding: 10px 20px;
}
.btn_big.margin_top {
	margin-top: 25px;
}



label {
	display: block;
	font-size: 0.9em;
	color: #888;
	margin-top: 10px;
}
label:first-child {
	margin-top: 0;
}
.textinput {
    outline: 0;
    width: 100%;
    height: 30px;
    font-family: Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 22px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #b6b6b6;
    padding: 3px 32px 3px 9px;
}
.textinput.small {
	display: block;
    width: 500px;
}
@media all and (max-width: 640px) {
	.textinput.small {
		width: 100%;
	}
}
textarea {
    min-height: 100px;
    height: 150px;
    resize: vertical;
    overflow: auto;
	margin-bottom: 25px;
}



.header {
	width: 100%;
	height: 70px;
	border-bottom: 1px solid #b6b6b6;
	margin-bottom: 35px;
}
.title_h2 {
	width: calc(100% - 100px);
	float: left;
}
.clear_results {
	width: 100px;
	float: left;
	margin: 20px 0;
}
.desc {
	margin-bottom: 35px;
}
